source: src/Fragmentation/Summation/Containers/FragmentationShortRangeResults.hpp@ 11cc05

Last change on this file since 11cc05 was d76d65, checked in by Frederik Heber <heber@…>, 11 years ago

FIX: MPQCDataFragmentMap_t can be summed up in FragmentationShortRangeResults already.

  • Property mode set to 100644
File size: 3.9 KB
Line 
1/*
2 * FragmentationShortRangeResults.hpp
3 *
4 * Created on: Mar 7, 2013
5 * Author: heber
6 */
7
8#ifndef FRAGMENTATIONSHORTRANGERESULTS_HPP_
9#define FRAGMENTATIONSHORTRANGERESULTS_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#ifdef HAVE_JOBMARKET
21#include "JobMarket/types.hpp"
22#else
23typedef size_t JobId_t;
24#endif
25
26#include "Fragmentation/KeySetsContainer.hpp"
27#include "Fragmentation/Summation/IndexSet.hpp"
28#include "Fragmentation/Summation/IndexSetContainer.hpp"
29#include "Fragmentation/Summation/SubsetMap.hpp"
30
31#include "Fragmentation/Summation/Containers/MPQCData.hpp"
32#include "Fragmentation/Summation/Containers/MPQCDataMap.hpp"
33
34/** FragmentationShortRangeResults 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 */
42struct FragmentationShortRangeResults
43{
44 /** Constructor for class FragmentationShortRangeResults, based on KeySets.
45 *
46 * @param fragmentData results from short-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 * @param _ValueMask masks whether to use a value (true) or not (false),
50 * default is true for all values
51 */
52 FragmentationShortRangeResults(
53 const std::map<JobId_t,MPQCData> &fragmentData,
54 const KeySetsContainer& _KeySet,
55 const KeySetsContainer& _ForceKeySet,
56 std::vector<bool> &_ValueMask);
57
58 /** Performs the summation and fills all result vectors.
59 *
60 * @param fragmentData results from short-range fragment calculations
61 */
62 void operator()(
63 const std::map<JobId_t,MPQCData> &fragmentData);
64
65 size_t getMaxLevel() const {
66 return MaxLevel;
67 }
68
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
81 typedef std::map<IndexSet::ptr, std::pair<MPQCData,MPQCData> > summedshortrange_t;
82 const summedshortrange_t getSummedShortRangeResults() const;
83
84private:
85 void initLookups(
86 const std::map<JobId_t,MPQCData> &fragmentData,
87 std::vector<bool> &_ValueMask);
88
89private:
90 std::map< JobId_t, size_t > MPQCMatrixNrLookup;
91 KeySetsContainer KeySet;
92 KeySetsContainer ForceKeySet;
93 IndexSetContainer::ptr container;
94 SubsetMap::ptr subsetmap;
95
96public:
97 //!> results per level of summed up energy
98 std::vector<MPQCDataEnergyMap_t> Result_Energy_fused;
99 //!> results per level of summed up fragment positions and charges
100 std::vector<MPQCDataFragmentMap_t> Result_Fragment_fused;
101 //!> results per level of summed up times
102 std::vector<MPQCDataTimeMap_t> Result_Time_fused;
103 //!> results per level of summed up forces
104 std::vector<MPQCDataForceMap_t> Result_Force_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 fragment positions and charges
109 std::map<IndexSet::ptr, std::pair<MPQCDataFragmentMap_t,MPQCDataFragmentMap_t> > Result_perIndexSet_Fragment;
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 forces
113 std::map<IndexSet::ptr, std::pair<MPQCDataForceMap_t, MPQCDataForceMap_t> > Result_perIndexSet_Force;
114 // we don't need the map pendant for Result_LongRangeIntegrated_fused, as this
115 // quantity makes sense only level-wise
116
117private:
118 //!> maximum level of summation
119 size_t MaxLevel;
120};
121
122
123#endif /* FRAGMENTATIONSHORTRANGERESULTS_HPP_ */
Note: See TracBrowser for help on using the repository browser.