source: src/Fragmentation/Summation/Containers/FragmentationLongRangeResults.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 * FragmentationLongRangeResults.hpp
3 *
4 * Created on: Aug 31, 2012
5 * Author: heber
6 */
7
8#ifndef FRAGMENTATIONLONGRANGERESULTS_HPP_
9#define FRAGMENTATIONLONGRANGERESULTS_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#include "Fragmentation/Summation/Containers/VMGData.hpp"
34#include "Fragmentation/Summation/Containers/VMGDataMap.hpp"
35#include "Fragmentation/Summation/SetValues/SamplingGrid.hpp"
36
37/** FragmentationLongRangeResults contains the summed up results per level resulting
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 */
45struct FragmentationLongRangeResults
46{
47 /** Constructor for class FragmentationLongRangeResults, based on KeySets.
48 *
49 * @param fragmentData results from short-range fragment calculations
50 * @param longrangeData results from long-range fragment calculations
51 * @param _KeySet KeySets of all (non-hydrogen) atoms
52 * @param _ForceKeySet KeySets of all atoms except those added by saturation
53 */
54 FragmentationLongRangeResults(
55 const std::map<JobId_t,MPQCData> &fragmentData,
56 std::map<JobId_t,VMGData> &longrangeData,
57 const KeySetsContainer& _KeySet,
58 const KeySetsContainer& _ForceKeySet);
59
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 */
67 void operator()(
68 const std::map<JobId_t,MPQCData> &fragmentData,
69 std::map<JobId_t,VMGData> &longrangeData,
70 const std::vector<VMGData> &fullsolutionData,
71 const std::vector<SamplingGrid> &full_sample);
72
73 size_t getMaxLevel() const {
74 return MaxLevel;
75 }
76
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
89private:
90 void initLookups(
91 const std::map<JobId_t,MPQCData> &fragmentData,
92 std::map<JobId_t,VMGData> &longrangeData
93 );
94
95private:
96 std::map< JobId_t, size_t > MPQCMatrixNrLookup;
97 std::map< JobId_t, size_t > VMGMatrixNrLookup;
98 KeySetsContainer KeySet;
99 KeySetsContainer ForceKeySet;
100 IndexSetContainer::ptr container;
101 SubsetMap::ptr subsetmap;
102
103public:
104 //!> results per level of summed up sampled grid charge
105 std::vector<MPQCDataGridMap_t> Result_Grid_fused;
106 //!> results per level of summed up long range potential grids and energy
107 std::vector<VMGDataMap_t> Result_LongRange_fused;
108 //!> results per level of summed up long range true energy
109 std::vector<VMGDataLongRangeMap_t> Result_LongRangeIntegrated_fused;
110
111 //!> results per IndexSet of summed up sampled grid charge
112 std::map<IndexSet::ptr, std::pair<MPQCDataGridMap_t,MPQCDataGridMap_t> > Result_perIndexSet_Grid;
113 //!> results per IndexSet of summed up long range potential grids and energy
114 std::map<IndexSet::ptr, std::pair<VMGDataMap_t, VMGDataMap_t> > Result_perIndexSet_LongRange;
115 // we don't need the map pendant for Result_LongRangeIntegrated_fused, as this
116 // quantity makes sense only level-wise
117
118private:
119 //!> maximum level of summation
120 size_t MaxLevel;
121};
122
123
124#endif /* FRAGMENTATIONLONGRANGERESULTS_HPP_ */
Note: See TracBrowser for help on using the repository browser.