source: src/Fragmentation/Summation/Containers/FragmentationShortRangeResults.hpp@ d20ded

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 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 d20ded was 5281ff, checked in by Frederik Heber <heber@…>, 12 years ago

REFACTOR: extracted initLookups() in FragmentationLongRangeResults and ..ShortRange...

  • Property mode set to 100644
File size: 3.3 KB
Line 
1/*
2 * FragmentationShortRangeResults.hpp
3 *
4 * Created on: Mar 7, 2013
5 * Author: heber
6 */
7
8#ifndef FRAGMENTATIONSHORTRANGERESULTS_HPP_
9#define FRAGMENTATIONSHORTRANGERESULTS_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#ifdef HAVE_JOBMARKET
21#include "JobMarket/types.hpp"
22#else
23typedef size_t JobId_t;
24#endif
25
26#include "Fragmentation/KeySetsContainer.hpp"
27#include "Fragmentation/Summation/IndexSet.hpp"
28#include "Fragmentation/Summation/IndexSetContainer.hpp"
29#include "Fragmentation/Summation/SubsetMap.hpp"
30
31#include "Fragmentation/Summation/Containers/MPQCData.hpp"
32#include "Fragmentation/Summation/Containers/MPQCDataMap.hpp"
33
34/** FragmentationShortRangeResults contains the summed up results per level resulting
35 * from the fragmentation of the molecular system and clever combination of
36 * fragmentary energies, forces, timings, and so on.
37 *
38 * This structure is mostly a storage wherein the summed up results are
39 * contained for subsequent pretty printing and so on.
40 *
41 */
42struct FragmentationShortRangeResults
43{
44 /** Constructor for class FragmentationShortRangeResults, based on KeySets.
45 *
46 * @param fragmentData results from short-range fragment calculations
47 * @param _KeySet KeySets of all (non-hydrogen) atoms
48 * @param _ForceKeySet KeySets of all atoms except those added by saturation
49 */
50 FragmentationShortRangeResults(
51 const std::map<JobId_t,MPQCData> &fragmentData,
52 const KeySetsContainer& _KeySet,
53 const KeySetsContainer& _ForceKeySet);
54
55 /** Performs the summation and fills all result vectors.
56 *
57 * @param fragmentData results from short-range fragment calculations
58 */
59 void operator()(
60 const std::map<JobId_t,MPQCData> &fragmentData);
61
62 size_t getMaxLevel() const {
63 return MaxLevel;
64 }
65
66 IndexSetContainer::Container_t getContainer() const {
67 return container->getContainer();
68 }
69
70 const KeySetsContainer& getKeySet() const {
71 return KeySet;
72 }
73
74 const KeySetsContainer& getForceKeySet() const {
75 return ForceKeySet;
76 }
77
78private:
79 void initLookups(
80 const std::map<JobId_t,MPQCData> &fragmentData);
81
82private:
83 std::map< JobId_t, size_t > MPQCMatrixNrLookup;
84 KeySetsContainer KeySet;
85 KeySetsContainer ForceKeySet;
86 IndexSetContainer::ptr container;
87 SubsetMap::ptr subsetmap;
88
89public:
90 //!> results per level of summed up energy
91 std::vector<MPQCDataEnergyMap_t> Result_Energy_fused;
92 //!> results per level of summed up times
93 std::vector<MPQCDataTimeMap_t> Result_Time_fused;
94 //!> results per level of summed up forces
95 std::vector<MPQCDataForceMap_t> Result_Force_fused;
96
97 //!> results per IndexSet of summed up energy
98 std::map<IndexSet::ptr, std::pair<MPQCDataEnergyMap_t,MPQCDataEnergyMap_t> > Result_perIndexSet_Energy;
99 //!> results per IndexSet of summed up times
100 std::map<IndexSet::ptr, std::pair<MPQCDataTimeMap_t,MPQCDataTimeMap_t> > Result_perIndexSet_Time;
101 //!> results per IndexSet of summed up forces
102 std::map<IndexSet::ptr, std::pair<MPQCDataForceMap_t, MPQCDataForceMap_t> > Result_perIndexSet_Force;
103 // we don't need the map pendant for Result_LongRangeIntegrated_fused, as this
104 // quantity makes sense only level-wise
105
106private:
107 //!> maximum level of summation
108 size_t MaxLevel;
109};
110
111
112#endif /* FRAGMENTATIONSHORTRANGERESULTS_HPP_ */
Note: See TracBrowser for help on using the repository browser.