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