source: src/Fragmentation/Homology/HomologyContainer.hpp@ 77b350

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 Candidate_v1.7.0 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 77b350 was 77b350, checked in by Frederik Heber <heber@…>, 13 years ago

HomologyGraph may now be created from a given KeySet referring to World's atoms.

  • Property mode set to 100644
File size: 2.4 KB
Line 
1/*
2 * HomologyContainer.hpp
3 *
4 * Created on: Sep 22, 2012
5 * Author: heber
6 */
7
8#ifndef HOMOLOGYCONTAINER_HPP_
9#define HOMOLOGYCONTAINER_HPP_
10
11
12// include config.h
13#ifdef HAVE_CONFIG_H
14#include <config.h>
15#endif
16
17#include <map>
18#include <vector>
19
20#include "Fragmentation/Homology/HomologyGraph.hpp"
21
22class Fragment
23{
24public:
25 typedef std::vector<double> position_t;
26 typedef std::vector< position_t > positions_t;
27 typedef std::vector< double > charges_t;
28 typedef std::pair< position_t, double> nucleus_t;
29 typedef std::vector< nucleus_t > nuclei_t;
30 Fragment() {}
31 Fragment(const positions_t &_positions, const charges_t &_charges) {}
32};
33
34
35/** This class takes all KeySets in a Graph, checks for those that homologues
36 * of one another and places them together.
37 *
38 * This is meant as a storage for key, value pairs, where the key is the KeySet
39 * and the value is the energy associated to the fragment this keyset
40 * represents.
41 * Afterwards this can then be used as training data for a high-dimensional
42 * approximation to the Born-Oppenheimer-surface decomposed into lower-
43 * dimensional terms in an ANOVA-like fashion.
44 *
45 */
46class HomologyContainer
47{
48public:
49 typedef double energy_t;
50 typedef std::pair<Fragment, energy_t> value_t;
51 typedef std::multimap< HomologyGraph, value_t> container_t;
52 typedef std::pair< container_t::const_iterator, container_t::const_iterator> range_t;
53public:
54 /** Default Constructor of class HomologyContainer.
55 *
56 */
57 HomologyContainer() {}
58
59 /** Constructor of class HomologyContainer.
60 *
61 * @param values values with with to initially fill the container
62 */
63 HomologyContainer(const container_t &values) :
64 container(values)
65 {}
66 /** Destructor of class HomologyContainer.
67 *
68 */
69 ~HomologyContainer() {}
70
71 /** Inserter for more graphs along with values.
72 *
73 * @param values graph and values to insert
74 */
75 void insert(const container_t &values) {
76 container.insert(values.begin(), values.end());
77 }
78
79 /** Returns iterator range with all contained graphs homologous to the given \a graph.
80 *
81 * @param graph graph to match
82 * @return iterator range with all matches
83 */
84 range_t getHomologousGraphs(const HomologyGraph &graph) {
85 return container.equal_range(graph);
86 }
87
88private:
89 //!> multimap containing all homologous graph under same key but each with its value
90 container_t container;
91};
92
93
94#endif /* HOMOLOGYCONTAINER_HPP_ */
Note: See TracBrowser for help on using the repository browser.