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