source: src/Fragmentation/Homology/HomologyContainer.hpp@ e15ffe

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 e15ffe was e15ffe, checked in by Frederik Heber <heber@…>, 13 years ago

Added HomologyContainer::operator<<().

  • Property mode set to 100644
File size: 3.0 KB
RevLine 
[4694df]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
[e15ffe]17#include <iosfwd>
[4694df]18#include <map>
[77b350]19#include <vector>
[4694df]20
[77b350]21#include "Fragmentation/Homology/HomologyGraph.hpp"
22
23class Fragment
24{
[e15ffe]25 //!> grant access to output operator
26 friend std::ostream& operator<<(std::ostream &out, const Fragment &container);
[77b350]27public:
28 typedef std::vector<double> position_t;
29 typedef std::vector< position_t > positions_t;
30 typedef std::vector< double > charges_t;
31 typedef std::pair< position_t, double> nucleus_t;
32 typedef std::vector< nucleus_t > nuclei_t;
33 Fragment() {}
34 Fragment(const positions_t &_positions, const charges_t &_charges) {}
35};
[4694df]36
[e15ffe]37std::ostream& operator<<(std::ostream &out, const Fragment &container);
[4694df]38
39/** This class takes all KeySets in a Graph, checks for those that homologues
40 * of one another and places them together.
41 *
42 * This is meant as a storage for key, value pairs, where the key is the KeySet
43 * and the value is the energy associated to the fragment this keyset
44 * represents.
45 * Afterwards this can then be used as training data for a high-dimensional
46 * approximation to the Born-Oppenheimer-surface decomposed into lower-
47 * dimensional terms in an ANOVA-like fashion.
48 *
49 */
50class HomologyContainer
51{
[e15ffe]52 //!> grant access to output operator
53 friend std::ostream& operator<<(std::ostream &out, const HomologyContainer &container);
[4694df]54public:
[77b350]55 typedef double energy_t;
56 typedef std::pair<Fragment, energy_t> value_t;
57 typedef std::multimap< HomologyGraph, value_t> container_t;
58 typedef std::pair< container_t::const_iterator, container_t::const_iterator> range_t;
59public:
60 /** Default Constructor of class HomologyContainer.
61 *
62 */
63 HomologyContainer() {}
64
65 /** Constructor of class HomologyContainer.
66 *
67 * @param values values with with to initially fill the container
68 */
69 HomologyContainer(const container_t &values) :
70 container(values)
71 {}
72 /** Destructor of class HomologyContainer.
73 *
74 */
[4694df]75 ~HomologyContainer() {}
76
[77b350]77 /** Inserter for more graphs along with values.
78 *
79 * @param values graph and values to insert
80 */
81 void insert(const container_t &values) {
82 container.insert(values.begin(), values.end());
83 }
84
85 /** Returns iterator range with all contained graphs homologous to the given \a graph.
86 *
87 * @param graph graph to match
88 * @return iterator range with all matches
89 */
90 range_t getHomologousGraphs(const HomologyGraph &graph) {
91 return container.equal_range(graph);
92 }
93
[4694df]94private:
[77b350]95 //!> multimap containing all homologous graph under same key but each with its value
96 container_t container;
[4694df]97};
98
[e15ffe]99/** Output operator for HomologyContainer.
100 *
101 * \param out output stream
102 * \param container container to print
103 * \return output stream for concatenation
104 */
105std::ostream& operator<<(std::ostream &out, const HomologyContainer &container);
[4694df]106
107#endif /* HOMOLOGYCONTAINER_HPP_ */
Note: See TracBrowser for help on using the repository browser.