| [376a3b] | 1 | /* | 
|---|
| [0cd8cf] | 2 | * FragmentationLongRangeResults.hpp | 
|---|
| [376a3b] | 3 | * | 
|---|
|  | 4 | *  Created on: Aug 31, 2012 | 
|---|
|  | 5 | *      Author: heber | 
|---|
|  | 6 | */ | 
|---|
|  | 7 |  | 
|---|
| [0cd8cf] | 8 | #ifndef FRAGMENTATIONLONGRANGERESULTS_HPP_ | 
|---|
|  | 9 | #define FRAGMENTATIONLONGRANGERESULTS_HPP_ | 
|---|
| [376a3b] | 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 |  | 
|---|
| [8e84fe] | 20 | #ifdef HAVE_JOBMARKET | 
|---|
| [376a3b] | 21 | #include "JobMarket/types.hpp" | 
|---|
| [8e84fe] | 22 | #else | 
|---|
|  | 23 | typedef size_t JobId_t; | 
|---|
|  | 24 | #endif | 
|---|
| [376a3b] | 25 |  | 
|---|
| [2dd305] | 26 | #include "Fragmentation/KeySetsContainer.hpp" | 
|---|
| [b8f0b25] | 27 | #include "Fragmentation/Summation/IndexSet.hpp" | 
|---|
| [2dd305] | 28 | #include "Fragmentation/Summation/IndexSetContainer.hpp" | 
|---|
|  | 29 | #include "Fragmentation/Summation/SubsetMap.hpp" | 
|---|
| [b8f0b25] | 30 |  | 
|---|
| [fbf143] | 31 | #include "Fragmentation/Summation/Containers/MPQCData.hpp" | 
|---|
|  | 32 | #include "Fragmentation/Summation/Containers/MPQCDataMap.hpp" | 
|---|
|  | 33 | #include "Fragmentation/Summation/Containers/VMGData.hpp" | 
|---|
|  | 34 | #include "Fragmentation/Summation/Containers/VMGDataMap.hpp" | 
|---|
|  | 35 | #include "Fragmentation/Summation/SetValues/SamplingGrid.hpp" | 
|---|
| [376a3b] | 36 |  | 
|---|
| [0cd8cf] | 37 | /** FragmentationLongRangeResults contains the summed up results per level resulting | 
|---|
| [376a3b] | 38 | * from the fragmentation of the molecular system and clever combination of | 
|---|
|  | 39 | * fragmentary energies, forces, timings, and so on. | 
|---|
|  | 40 | * | 
|---|
|  | 41 | * This structure is mostly a storage wherein the summed up results are | 
|---|
|  | 42 | * contained for subsequent pretty printing and so on. | 
|---|
|  | 43 | * | 
|---|
|  | 44 | */ | 
|---|
| [0cd8cf] | 45 | struct FragmentationLongRangeResults | 
|---|
| [376a3b] | 46 | { | 
|---|
| [0cd8cf] | 47 | /** Constructor for class FragmentationLongRangeResults, based on KeySets. | 
|---|
| [376a3b] | 48 | * | 
|---|
|  | 49 | * @param fragmentData results from short-range fragment calculations | 
|---|
|  | 50 | * @param longrangeData results from long-range fragment calculations | 
|---|
| [bae7bc] | 51 | * @param _KeySet KeySets of all (non-hydrogen) atoms | 
|---|
|  | 52 | * @param _ForceKeySet KeySets of all atoms except those added by saturation | 
|---|
| [376a3b] | 53 | */ | 
|---|
| [0cd8cf] | 54 | FragmentationLongRangeResults( | 
|---|
| [2dd305] | 55 | const std::map<JobId_t,MPQCData> &fragmentData, | 
|---|
|  | 56 | std::map<JobId_t,VMGData> &longrangeData, | 
|---|
| [bae7bc] | 57 | const KeySetsContainer& _KeySet, | 
|---|
|  | 58 | const KeySetsContainer& _ForceKeySet); | 
|---|
| [2dd305] | 59 |  | 
|---|
| [bae7bc] | 60 | /** Performs the summation and fills all result vectors. | 
|---|
|  | 61 | * | 
|---|
|  | 62 | * @param fragmentData results from short-range fragment calculations | 
|---|
|  | 63 | * @param longrangeData results from long-range fragment calculations | 
|---|
|  | 64 | * @param fullsolutionData long-range solution | 
|---|
|  | 65 | * @param full_sample sampled density | 
|---|
|  | 66 | */ | 
|---|
| [2dd305] | 67 | void operator()( | 
|---|
| [376a3b] | 68 | const std::map<JobId_t,MPQCData> &fragmentData, | 
|---|
| [5a5196] | 69 | std::map<JobId_t,VMGData> &longrangeData, | 
|---|
| [376a3b] | 70 | const std::vector<VMGData> &fullsolutionData, | 
|---|
|  | 71 | const std::vector<SamplingGrid> &full_sample); | 
|---|
|  | 72 |  | 
|---|
|  | 73 | size_t getMaxLevel() const { | 
|---|
|  | 74 | return MaxLevel; | 
|---|
|  | 75 | } | 
|---|
|  | 76 |  | 
|---|
| [2dd305] | 77 | IndexSetContainer::Container_t getContainer() const { | 
|---|
|  | 78 | return container->getContainer(); | 
|---|
|  | 79 | } | 
|---|
|  | 80 |  | 
|---|
|  | 81 | const KeySetsContainer& getKeySet() const { | 
|---|
|  | 82 | return KeySet; | 
|---|
|  | 83 | } | 
|---|
|  | 84 |  | 
|---|
|  | 85 | const KeySetsContainer& getForceKeySet() const { | 
|---|
|  | 86 | return ForceKeySet; | 
|---|
|  | 87 | } | 
|---|
|  | 88 |  | 
|---|
| [94db13] | 89 | const bool hasLongRangeForces() const | 
|---|
|  | 90 | { return hasForces; } | 
|---|
|  | 91 |  | 
|---|
| [5281ff] | 92 | private: | 
|---|
|  | 93 | void initLookups( | 
|---|
|  | 94 | const std::map<JobId_t,MPQCData> &fragmentData, | 
|---|
|  | 95 | std::map<JobId_t,VMGData> &longrangeData | 
|---|
|  | 96 | ); | 
|---|
|  | 97 |  | 
|---|
| [2dd305] | 98 | private: | 
|---|
|  | 99 | std::map< JobId_t, size_t > MPQCMatrixNrLookup; | 
|---|
|  | 100 | std::map< JobId_t, size_t > VMGMatrixNrLookup; | 
|---|
|  | 101 | KeySetsContainer KeySet; | 
|---|
|  | 102 | KeySetsContainer ForceKeySet; | 
|---|
|  | 103 | IndexSetContainer::ptr container; | 
|---|
|  | 104 | SubsetMap::ptr subsetmap; | 
|---|
| [94db13] | 105 | //!> indicates whether the longrange results contain VMG forces data or not | 
|---|
|  | 106 | bool hasForces; | 
|---|
| [2dd305] | 107 |  | 
|---|
|  | 108 | public: | 
|---|
| [376a3b] | 109 | //!> results per level of summed up sampled grid charge | 
|---|
|  | 110 | std::vector<MPQCDataGridMap_t> Result_Grid_fused; | 
|---|
| [94db13] | 111 | //!> results per level of summed up long range energies | 
|---|
| [376a3b] | 112 | std::vector<VMGDataMap_t> Result_LongRange_fused; | 
|---|
| [94db13] | 113 | //!> results per level of summed up long range forces | 
|---|
|  | 114 | std::vector<VMGDataForceMap_t> Result_ForceLongRange_fused; | 
|---|
| [83a425] | 115 | //!> results per level of summed up long range potential grids | 
|---|
|  | 116 | std::vector<VMGDataGridMap_t> Result_GridLongRange_fused; | 
|---|
| [376a3b] | 117 | //!> results per level of summed up long range true energy | 
|---|
|  | 118 | std::vector<VMGDataLongRangeMap_t> Result_LongRangeIntegrated_fused; | 
|---|
| [ff347f] | 119 | //!> results per level of summed up long range true forces | 
|---|
|  | 120 | std::vector<VMGDataLongRangeForceMap_t> Result_ForcesLongRangeIntegrated_fused; | 
|---|
| [376a3b] | 121 |  | 
|---|
| [b8f0b25] | 122 | //!> results per IndexSet of summed up sampled grid charge | 
|---|
| [79398d] | 123 | std::map<IndexSet::ptr, std::pair<MPQCDataGridMap_t,MPQCDataGridMap_t> > Result_perIndexSet_Grid; | 
|---|
| [94db13] | 124 | //!> results per IndexSet of summed up long range energies | 
|---|
| [79398d] | 125 | std::map<IndexSet::ptr, std::pair<VMGDataMap_t, VMGDataMap_t> > Result_perIndexSet_LongRange; | 
|---|
| [94db13] | 126 | //!> results per IndexSet of summed up long range forces | 
|---|
|  | 127 | std::map<IndexSet::ptr, std::pair<VMGDataForceMap_t, VMGDataForceMap_t> > Result_perIndexSet_LongRange_Force; | 
|---|
| [83a425] | 128 | //!> results per IndexSet of summed up long range potential grids | 
|---|
|  | 129 | std::map<IndexSet::ptr, std::pair<VMGDataGridMap_t, VMGDataGridMap_t> > Result_perIndexSet_LongRange_Grid; | 
|---|
| [b8f0b25] | 130 | // we don't need the map pendant for Result_LongRangeIntegrated_fused, as this | 
|---|
|  | 131 | // quantity makes sense only level-wise | 
|---|
|  | 132 |  | 
|---|
| [376a3b] | 133 | private: | 
|---|
|  | 134 | //!> maximum level of summation | 
|---|
|  | 135 | size_t MaxLevel; | 
|---|
|  | 136 | }; | 
|---|
|  | 137 |  | 
|---|
|  | 138 |  | 
|---|
| [0cd8cf] | 139 | #endif /* FRAGMENTATIONLONGRANGERESULTS_HPP_ */ | 
|---|