| [376a3b] | 1 | /* | 
|---|
| [0cd8cf] | 2 | * FragmentationShortRangeResults.hpp | 
|---|
| [376a3b] | 3 | * | 
|---|
| [0cd8cf] | 4 | *  Created on: Mar 7, 2013 | 
|---|
| [376a3b] | 5 | *      Author: heber | 
|---|
|  | 6 | */ | 
|---|
|  | 7 |  | 
|---|
| [0cd8cf] | 8 | #ifndef FRAGMENTATIONSHORTRANGERESULTS_HPP_ | 
|---|
|  | 9 | #define FRAGMENTATIONSHORTRANGERESULTS_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" | 
|---|
| [376a3b] | 33 |  | 
|---|
| [0cd8cf] | 34 | /** FragmentationShortRangeResults contains the summed up results per level resulting | 
|---|
| [376a3b] | 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 | */ | 
|---|
| [0cd8cf] | 42 | struct FragmentationShortRangeResults | 
|---|
| [376a3b] | 43 | { | 
|---|
| [0cd8cf] | 44 | /** Constructor for class FragmentationShortRangeResults, based on KeySets. | 
|---|
| [376a3b] | 45 | * | 
|---|
|  | 46 | * @param fragmentData results from short-range fragment calculations | 
|---|
| [bae7bc] | 47 | * @param _KeySet KeySets of all (non-hydrogen) atoms | 
|---|
|  | 48 | * @param _ForceKeySet KeySets of all atoms except those added by saturation | 
|---|
| [e0ae58d] | 49 | * @param _ValueMask masks whether to use a value (true) or not (false), | 
|---|
|  | 50 | *        default is true for all values | 
|---|
| [376a3b] | 51 | */ | 
|---|
| [0cd8cf] | 52 | FragmentationShortRangeResults( | 
|---|
| [2dd305] | 53 | const std::map<JobId_t,MPQCData> &fragmentData, | 
|---|
| [bae7bc] | 54 | const KeySetsContainer& _KeySet, | 
|---|
| [e0ae58d] | 55 | const KeySetsContainer& _ForceKeySet, | 
|---|
|  | 56 | std::vector<bool> &_ValueMask); | 
|---|
| [2dd305] | 57 |  | 
|---|
| [bae7bc] | 58 | /** Performs the summation and fills all result vectors. | 
|---|
|  | 59 | * | 
|---|
|  | 60 | * @param fragmentData results from short-range fragment calculations | 
|---|
|  | 61 | */ | 
|---|
| [2dd305] | 62 | void operator()( | 
|---|
| [0cd8cf] | 63 | const std::map<JobId_t,MPQCData> &fragmentData); | 
|---|
| [376a3b] | 64 |  | 
|---|
|  | 65 | size_t getMaxLevel() const { | 
|---|
|  | 66 | return MaxLevel; | 
|---|
|  | 67 | } | 
|---|
|  | 68 |  | 
|---|
| [2dd305] | 69 | IndexSetContainer::Container_t getContainer() const { | 
|---|
|  | 70 | return container->getContainer(); | 
|---|
|  | 71 | } | 
|---|
|  | 72 |  | 
|---|
|  | 73 | const KeySetsContainer& getKeySet() const { | 
|---|
|  | 74 | return KeySet; | 
|---|
|  | 75 | } | 
|---|
|  | 76 |  | 
|---|
|  | 77 | const KeySetsContainer& getForceKeySet() const { | 
|---|
|  | 78 | return ForceKeySet; | 
|---|
|  | 79 | } | 
|---|
|  | 80 |  | 
|---|
| [c8d13f5] | 81 | typedef std::map<IndexSet::ptr, std::pair<MPQCData,MPQCData> > summedshortrange_t; | 
|---|
|  | 82 | const summedshortrange_t getSummedShortRangeResults() const; | 
|---|
|  | 83 |  | 
|---|
| [5281ff] | 84 | private: | 
|---|
|  | 85 | void initLookups( | 
|---|
| [e0ae58d] | 86 | const std::map<JobId_t,MPQCData> &fragmentData, | 
|---|
|  | 87 | std::vector<bool> &_ValueMask); | 
|---|
| [5281ff] | 88 |  | 
|---|
| [2dd305] | 89 | private: | 
|---|
|  | 90 | std::map< JobId_t, size_t > MPQCMatrixNrLookup; | 
|---|
|  | 91 | KeySetsContainer KeySet; | 
|---|
|  | 92 | KeySetsContainer ForceKeySet; | 
|---|
|  | 93 | IndexSetContainer::ptr container; | 
|---|
|  | 94 | SubsetMap::ptr subsetmap; | 
|---|
|  | 95 |  | 
|---|
|  | 96 | public: | 
|---|
| [376a3b] | 97 | //!> results per level of summed up energy | 
|---|
|  | 98 | std::vector<MPQCDataEnergyMap_t> Result_Energy_fused; | 
|---|
|  | 99 | //!> results per level of summed up times | 
|---|
|  | 100 | std::vector<MPQCDataTimeMap_t> Result_Time_fused; | 
|---|
|  | 101 | //!> results per level of summed up forces | 
|---|
|  | 102 | std::vector<MPQCDataForceMap_t> Result_Force_fused; | 
|---|
|  | 103 |  | 
|---|
| [b8f0b25] | 104 | //!> results per IndexSet of summed up energy | 
|---|
| [79398d] | 105 | std::map<IndexSet::ptr, std::pair<MPQCDataEnergyMap_t,MPQCDataEnergyMap_t> > Result_perIndexSet_Energy; | 
|---|
| [b8f0b25] | 106 | //!> results per IndexSet of summed up times | 
|---|
| [79398d] | 107 | std::map<IndexSet::ptr, std::pair<MPQCDataTimeMap_t,MPQCDataTimeMap_t> > Result_perIndexSet_Time; | 
|---|
| [b8f0b25] | 108 | //!> results per IndexSet of summed up forces | 
|---|
| [79398d] | 109 | std::map<IndexSet::ptr, std::pair<MPQCDataForceMap_t, MPQCDataForceMap_t> > Result_perIndexSet_Force; | 
|---|
| [b8f0b25] | 110 | // we don't need the map pendant for Result_LongRangeIntegrated_fused, as this | 
|---|
|  | 111 | // quantity makes sense only level-wise | 
|---|
|  | 112 |  | 
|---|
| [376a3b] | 113 | private: | 
|---|
|  | 114 | //!> maximum level of summation | 
|---|
|  | 115 | size_t MaxLevel; | 
|---|
|  | 116 | }; | 
|---|
|  | 117 |  | 
|---|
|  | 118 |  | 
|---|
| [0cd8cf] | 119 | #endif /* FRAGMENTATIONSHORTRANGERESULTS_HPP_ */ | 
|---|