1 | /*
|
---|
2 | * printOrthogonalSum.hpp
|
---|
3 | *
|
---|
4 | * Created on: 29.07.2012
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef PRINTORTHOGONALSUM_HPP_
|
---|
9 | #define PRINTORTHOGONALSUM_HPP_
|
---|
10 |
|
---|
11 | // include config.h
|
---|
12 | #ifdef HAVE_CONFIG_H
|
---|
13 | #include <config.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | #include <vector>
|
---|
17 |
|
---|
18 | #include "Fragmentation/Summation/IndexSetContainer.hpp"
|
---|
19 | #include "Fragmentation/Summation/SubsetMap.hpp"
|
---|
20 | #include "Fragmentation/Summation/OrthogonalSummator.hpp"
|
---|
21 |
|
---|
22 | #include "Fragmentation/Summation/printKeyNames.hpp"
|
---|
23 |
|
---|
24 | /** Tiny template functor to use OrthogonalSummation, sum up and print the result.
|
---|
25 | *
|
---|
26 | */
|
---|
27 | template <typename MapType>
|
---|
28 | struct printOrthogonalSum {
|
---|
29 | /** Constructor takes the arguments that \a OrthogonalSummator also needs and stores
|
---|
30 | * them internally.
|
---|
31 | *
|
---|
32 | * \param _subsetmap map with hierarchy of IndexSet's
|
---|
33 | * \param _data MPQCData converted to MPQCDataMap_t type
|
---|
34 | * \param _jobids job ids to sum data in correct order
|
---|
35 | * \param _container container of IndexSet's such that each set has correct order
|
---|
36 | * to job id and hence to _data.
|
---|
37 | * \param _MatrixNrLookup lookup from job id to ordering in above vectors
|
---|
38 | */
|
---|
39 | printOrthogonalSum(
|
---|
40 | SubsetMap::ptr &_subsetmap,
|
---|
41 | const std::vector<MapType> &_data,
|
---|
42 | const std::vector<JobId_t> &_jobids,
|
---|
43 | const IndexSetContainer::Container_t &_container,
|
---|
44 | std::map< JobId_t, size_t > &_MatrixNrLookup) : /* cannot make this const due to operator[] */
|
---|
45 | subsetmap(_subsetmap),
|
---|
46 | data(_data),
|
---|
47 | jobids(_jobids),
|
---|
48 | container(_container),
|
---|
49 | MatrixNrLookup(_MatrixNrLookup)
|
---|
50 | {}
|
---|
51 |
|
---|
52 | /** Operator that calls on OrthogonalSummator and prints the value.
|
---|
53 | *
|
---|
54 | * \note the parameter is needed for boost::mpl::for_each but is not
|
---|
55 | * used here.
|
---|
56 | */
|
---|
57 | template <typename MapKey>
|
---|
58 | void operator()(MapKey &) {
|
---|
59 | // We retrieve the type of the MPQCData member variable from the boost::fusion::map.
|
---|
60 | typedef typename boost::fusion::result_of::value_at_key<MapType, MapKey>::type MapValue;
|
---|
61 | // create OrthogonalSummator instance
|
---|
62 | OrthogonalSummator<MapType, MapKey> sum_value(
|
---|
63 | subsetmap, data, jobids, container, MatrixNrLookup
|
---|
64 | );
|
---|
65 | // sum up
|
---|
66 | MapValue value = sum_value();
|
---|
67 | // print value
|
---|
68 | LOG(0, "STATUS: Resulting " << printKeyNames::printName<MapKey>() << " is " << value << ".");
|
---|
69 | }
|
---|
70 |
|
---|
71 | private:
|
---|
72 | //!> Hierarchy of IndexSet's
|
---|
73 | SubsetMap::ptr &subsetmap;
|
---|
74 | //!> vector of data converted from MPQCData
|
---|
75 | const std::vector<MapType> &data;
|
---|
76 | //!> vector of jobids
|
---|
77 | const std::vector<JobId_t> &jobids;
|
---|
78 | //!> container with all IndexSet's
|
---|
79 | const IndexSetContainer::Container_t &container;
|
---|
80 | //!> lookup map from job ids to ordering in above vectors
|
---|
81 | std::map< JobId_t, size_t > MatrixNrLookup;
|
---|
82 | };
|
---|
83 |
|
---|
84 | #endif /* PRINTORTHOGONALSUM_HPP_ */
|
---|