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 <string>
|
---|
19 | #include <vector>
|
---|
20 |
|
---|
21 | #include "JobMarket/types.hpp"
|
---|
22 |
|
---|
23 | #include "Fragmentation/KeySetsContainer.hpp"
|
---|
24 | #include "Fragmentation/Summation/IndexSet.hpp"
|
---|
25 | #include "Fragmentation/Summation/IndexSetContainer.hpp"
|
---|
26 | #include "Fragmentation/Summation/SubsetMap.hpp"
|
---|
27 |
|
---|
28 | #include "Jobs/MPQCData.hpp"
|
---|
29 | #include "Jobs/MPQCDataMap.hpp"
|
---|
30 | #include "Jobs/VMGData.hpp"
|
---|
31 | #include "Jobs/VMGDataMap.hpp"
|
---|
32 | #include "Jobs/Grid/SamplingGrid.hpp"
|
---|
33 |
|
---|
34 | /** FragmentationResults 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 | */
|
---|
42 | struct FragmentationResults
|
---|
43 | {
|
---|
44 | /** Constructor for class FragmentationResults.
|
---|
45 | *
|
---|
46 | * Performs the summation and fills all result vectors.
|
---|
47 | *
|
---|
48 | * @param fragmentData results from short-range fragment calculations
|
---|
49 | * @param longrangeData results from long-range fragment calculations
|
---|
50 | * @param fullsolutionData results from long-range full calculations
|
---|
51 | * @param KeySetFilename path to fragment files
|
---|
52 | * @param NoAtoms number of atoms of full system
|
---|
53 | * @param full_sample summed up grid charge
|
---|
54 | */
|
---|
55 | FragmentationResults(
|
---|
56 | const std::map<JobId_t,MPQCData> &fragmentData,
|
---|
57 | std::map<JobId_t,VMGData> &longrangeData,
|
---|
58 | const std::string &KeySetFilename);
|
---|
59 |
|
---|
60 | void operator()(
|
---|
61 | const std::map<JobId_t,MPQCData> &fragmentData,
|
---|
62 | std::map<JobId_t,VMGData> &longrangeData,
|
---|
63 | const std::vector<VMGData> &fullsolutionData,
|
---|
64 | const std::vector<SamplingGrid> &full_sample);
|
---|
65 |
|
---|
66 | size_t getMaxLevel() const {
|
---|
67 | return MaxLevel;
|
---|
68 | }
|
---|
69 |
|
---|
70 | IndexSetContainer::Container_t getContainer() const {
|
---|
71 | return container->getContainer();
|
---|
72 | }
|
---|
73 |
|
---|
74 | const KeySetsContainer& getKeySet() const {
|
---|
75 | return KeySet;
|
---|
76 | }
|
---|
77 |
|
---|
78 | const KeySetsContainer& getForceKeySet() const {
|
---|
79 | return ForceKeySet;
|
---|
80 | }
|
---|
81 |
|
---|
82 | private:
|
---|
83 | std::map< JobId_t, size_t > MPQCMatrixNrLookup;
|
---|
84 | std::map< JobId_t, size_t > VMGMatrixNrLookup;
|
---|
85 | KeySetsContainer KeySet;
|
---|
86 | KeySetsContainer ForceKeySet;
|
---|
87 | IndexSetContainer::ptr container;
|
---|
88 | SubsetMap::ptr subsetmap;
|
---|
89 |
|
---|
90 | public:
|
---|
91 | //!> results per level of summed up energy
|
---|
92 | std::vector<MPQCDataEnergyMap_t> Result_Energy_fused;
|
---|
93 | //!> results per level of summed up sampled grid charge
|
---|
94 | std::vector<MPQCDataGridMap_t> Result_Grid_fused;
|
---|
95 | //!> results per level of summed up times
|
---|
96 | std::vector<MPQCDataTimeMap_t> Result_Time_fused;
|
---|
97 | //!> results per level of summed up fragment positions and charges
|
---|
98 | std::vector<MPQCDataFragmentMap_t> Result_Fragment_fused;
|
---|
99 | //!> results per level of summed up forces
|
---|
100 | std::vector<MPQCDataForceMap_t> Result_Force_fused;
|
---|
101 | //!> results per level of summed up long range potential grids and energy
|
---|
102 | std::vector<VMGDataMap_t> Result_LongRange_fused;
|
---|
103 | //!> results per level of summed up long range true energy
|
---|
104 | std::vector<VMGDataLongRangeMap_t> Result_LongRangeIntegrated_fused;
|
---|
105 |
|
---|
106 | //!> results per IndexSet of summed up energy
|
---|
107 | std::map<IndexSet::ptr, std::pair<MPQCDataEnergyMap_t,MPQCDataEnergyMap_t> > Result_perIndexSet_Energy;
|
---|
108 | //!> results per IndexSet of summed up sampled grid charge
|
---|
109 | std::map<IndexSet::ptr, std::pair<MPQCDataGridMap_t,MPQCDataGridMap_t> > Result_perIndexSet_Grid;
|
---|
110 | //!> results per IndexSet of summed up times
|
---|
111 | std::map<IndexSet::ptr, std::pair<MPQCDataTimeMap_t,MPQCDataTimeMap_t> > Result_perIndexSet_Time;
|
---|
112 | //!> results per IndexSet of summed up fragment positions and charges
|
---|
113 | std::map<IndexSet::ptr, std::pair<MPQCDataFragmentMap_t,MPQCDataFragmentMap_t> > Result_perIndexSet_Fragment;
|
---|
114 | //!> results per IndexSet of summed up forces
|
---|
115 | std::map<IndexSet::ptr, std::pair<MPQCDataForceMap_t, MPQCDataForceMap_t> > Result_perIndexSet_Force;
|
---|
116 | //!> results per IndexSet of summed up long range potential grids and energy
|
---|
117 | std::map<IndexSet::ptr, std::pair<VMGDataMap_t, VMGDataMap_t> > Result_perIndexSet_LongRange;
|
---|
118 | // we don't need the map pendant for Result_LongRangeIntegrated_fused, as this
|
---|
119 | // quantity makes sense only level-wise
|
---|
120 |
|
---|
121 | private:
|
---|
122 | //!> maximum level of summation
|
---|
123 | size_t MaxLevel;
|
---|
124 | };
|
---|
125 |
|
---|
126 |
|
---|
127 | #endif /* FRAGMENTATIONRESULTS_HPP_ */
|
---|