1 | /*
|
---|
2 | * FragmentationResults.hpp
|
---|
3 | *
|
---|
4 | * Created on: Aug 31, 2012
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef FRAGMENTATIONRESULTS_HPP_
|
---|
9 | #define FRAGMENTATIONRESULTS_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 "JobMarket/types.hpp"
|
---|
21 |
|
---|
22 | #include "Fragmentation/KeySetsContainer.hpp"
|
---|
23 | #include "Fragmentation/Summation/IndexSet.hpp"
|
---|
24 | #include "Fragmentation/Summation/IndexSetContainer.hpp"
|
---|
25 | #include "Fragmentation/Summation/SubsetMap.hpp"
|
---|
26 |
|
---|
27 | #include "Jobs/MPQCData.hpp"
|
---|
28 | #include "Jobs/MPQCDataMap.hpp"
|
---|
29 | #include "Jobs/VMGData.hpp"
|
---|
30 | #include "Jobs/VMGDataMap.hpp"
|
---|
31 | #include "Jobs/Grid/SamplingGrid.hpp"
|
---|
32 |
|
---|
33 | /** FragmentationResults contains the summed up results per level resulting
|
---|
34 | * from the fragmentation of the molecular system and clever combination of
|
---|
35 | * fragmentary energies, forces, timings, and so on.
|
---|
36 | *
|
---|
37 | * This structure is mostly a storage wherein the summed up results are
|
---|
38 | * contained for subsequent pretty printing and so on.
|
---|
39 | *
|
---|
40 | */
|
---|
41 | struct FragmentationResults
|
---|
42 | {
|
---|
43 | /** Constructor for class FragmentationResults, based on KeySets.
|
---|
44 | *
|
---|
45 | * @param fragmentData results from short-range fragment calculations
|
---|
46 | * @param longrangeData results from long-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 | FragmentationResults(
|
---|
51 | const std::map<JobId_t,MPQCData> &fragmentData,
|
---|
52 | std::map<JobId_t,VMGData> &longrangeData,
|
---|
53 | const KeySetsContainer& _KeySet,
|
---|
54 | const KeySetsContainer& _ForceKeySet);
|
---|
55 |
|
---|
56 | /** Performs the summation and fills all result vectors.
|
---|
57 | *
|
---|
58 | * @param fragmentData results from short-range fragment calculations
|
---|
59 | * @param longrangeData results from long-range fragment calculations
|
---|
60 | * @param fullsolutionData long-range solution
|
---|
61 | * @param full_sample sampled density
|
---|
62 | */
|
---|
63 | void operator()(
|
---|
64 | const std::map<JobId_t,MPQCData> &fragmentData,
|
---|
65 | std::map<JobId_t,VMGData> &longrangeData,
|
---|
66 | const std::vector<VMGData> &fullsolutionData,
|
---|
67 | const std::vector<SamplingGrid> &full_sample);
|
---|
68 |
|
---|
69 | size_t getMaxLevel() const {
|
---|
70 | return MaxLevel;
|
---|
71 | }
|
---|
72 |
|
---|
73 | IndexSetContainer::Container_t getContainer() const {
|
---|
74 | return container->getContainer();
|
---|
75 | }
|
---|
76 |
|
---|
77 | const KeySetsContainer& getKeySet() const {
|
---|
78 | return KeySet;
|
---|
79 | }
|
---|
80 |
|
---|
81 | const KeySetsContainer& getForceKeySet() const {
|
---|
82 | return ForceKeySet;
|
---|
83 | }
|
---|
84 |
|
---|
85 | private:
|
---|
86 | std::map< JobId_t, size_t > MPQCMatrixNrLookup;
|
---|
87 | std::map< JobId_t, size_t > VMGMatrixNrLookup;
|
---|
88 | KeySetsContainer KeySet;
|
---|
89 | KeySetsContainer ForceKeySet;
|
---|
90 | IndexSetContainer::ptr container;
|
---|
91 | SubsetMap::ptr subsetmap;
|
---|
92 |
|
---|
93 | public:
|
---|
94 | //!> results per level of summed up energy
|
---|
95 | std::vector<MPQCDataEnergyMap_t> Result_Energy_fused;
|
---|
96 | //!> results per level of summed up sampled grid charge
|
---|
97 | std::vector<MPQCDataGridMap_t> Result_Grid_fused;
|
---|
98 | //!> results per level of summed up times
|
---|
99 | std::vector<MPQCDataTimeMap_t> Result_Time_fused;
|
---|
100 | //!> results per level of summed up fragment positions and charges
|
---|
101 | std::vector<MPQCDataFragmentMap_t> Result_Fragment_fused;
|
---|
102 | //!> results per level of summed up forces
|
---|
103 | std::vector<MPQCDataForceMap_t> Result_Force_fused;
|
---|
104 | //!> results per level of summed up long range potential grids and energy
|
---|
105 | std::vector<VMGDataMap_t> Result_LongRange_fused;
|
---|
106 | //!> results per level of summed up long range true energy
|
---|
107 | std::vector<VMGDataLongRangeMap_t> Result_LongRangeIntegrated_fused;
|
---|
108 |
|
---|
109 | //!> results per IndexSet of summed up energy
|
---|
110 | std::map<IndexSet::ptr, std::pair<MPQCDataEnergyMap_t,MPQCDataEnergyMap_t> > Result_perIndexSet_Energy;
|
---|
111 | //!> results per IndexSet of summed up sampled grid charge
|
---|
112 | std::map<IndexSet::ptr, std::pair<MPQCDataGridMap_t,MPQCDataGridMap_t> > Result_perIndexSet_Grid;
|
---|
113 | //!> results per IndexSet of summed up times
|
---|
114 | std::map<IndexSet::ptr, std::pair<MPQCDataTimeMap_t,MPQCDataTimeMap_t> > Result_perIndexSet_Time;
|
---|
115 | //!> results per IndexSet of summed up fragment positions and charges
|
---|
116 | std::map<IndexSet::ptr, std::pair<MPQCDataFragmentMap_t,MPQCDataFragmentMap_t> > Result_perIndexSet_Fragment;
|
---|
117 | //!> results per IndexSet of summed up forces
|
---|
118 | std::map<IndexSet::ptr, std::pair<MPQCDataForceMap_t, MPQCDataForceMap_t> > Result_perIndexSet_Force;
|
---|
119 | //!> results per IndexSet of summed up long range potential grids and energy
|
---|
120 | std::map<IndexSet::ptr, std::pair<VMGDataMap_t, VMGDataMap_t> > Result_perIndexSet_LongRange;
|
---|
121 | // we don't need the map pendant for Result_LongRangeIntegrated_fused, as this
|
---|
122 | // quantity makes sense only level-wise
|
---|
123 |
|
---|
124 | private:
|
---|
125 | //!> maximum level of summation
|
---|
126 | size_t MaxLevel;
|
---|
127 | };
|
---|
128 |
|
---|
129 |
|
---|
130 | #endif /* FRAGMENTATIONRESULTS_HPP_ */
|
---|