[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
|
---|
[c9f9bb] | 36 | * \param _data MPQCData converted to MPQCDataMap_t type, associated to job id
|
---|
[c40e15d] | 37 | * \param _container container of IndexSet's such that each set has correct order
|
---|
| 38 | * to job id and hence to _data.
|
---|
| 39 | * \param _MatrixNrLookup lookup from job id to ordering in above vectors
|
---|
[ff9963] | 40 | * \param _results vector place results into
|
---|
[c40e15d] | 41 | */
|
---|
[ff9963] | 42 | AllLevelSummator(
|
---|
[c40e15d] | 43 | SubsetMap::ptr &_subsetmap,
|
---|
[c9f9bb] | 44 | const std::map<JobId_t, MapType> &_data,
|
---|
[c40e15d] | 45 | const IndexSetContainer::Container_t &_container,
|
---|
[3dd32f] | 46 | const std::map< JobId_t, size_t > &_MatrixNrLookup,
|
---|
[ff9963] | 47 | std::vector<MapType> &_results) :
|
---|
[c40e15d] | 48 | subsetmap(_subsetmap),
|
---|
| 49 | data(_data),
|
---|
| 50 | container(_container),
|
---|
[ff9963] | 51 | MatrixNrLookup(_MatrixNrLookup),
|
---|
| 52 | results(_results)
|
---|
| 53 | {
|
---|
[19c50e] | 54 | ASSERT( results.size() >= subsetmap->getMaximumSetLevel(),
|
---|
[ff9963] | 55 | "AllLevelSummator() - result vector is not large enough.");
|
---|
| 56 | }
|
---|
[c40e15d] | 57 |
|
---|
| 58 | /** Operator that calls on Summator and prints the value.
|
---|
| 59 | *
|
---|
| 60 | * \note the parameter is needed for boost::mpl::for_each but is not
|
---|
| 61 | * used here.
|
---|
| 62 | */
|
---|
| 63 | template <typename MapKey>
|
---|
| 64 | void operator()(MapKey &) {
|
---|
| 65 | // We retrieve the type of the MPQCData member variable from the boost::fusion::map.
|
---|
| 66 | typedef typename boost::fusion::result_of::value_at_key<MapType, MapKey>::type MapValue;
|
---|
| 67 | // create Summator instance
|
---|
| 68 | Summator<MapType, MapKey> sum_value(
|
---|
[c9f9bb] | 69 | subsetmap, data, container, MatrixNrLookup
|
---|
[c40e15d] | 70 | );
|
---|
[19c50e] | 71 | const size_t MaxLevel = subsetmap->getMaximumSetLevel();
|
---|
[ff9963] | 72 | for (size_t level=1; level <= MaxLevel; ++level) {
|
---|
| 73 | MapType &LevelResults = results[level-1];
|
---|
| 74 | // sum up and store in results
|
---|
| 75 | const MapValue value = sum_value(level);
|
---|
| 76 | boost::fusion::at_key<MapKey>(LevelResults) = value;
|
---|
| 77 | // print value
|
---|
| 78 | //LOG(0, "STATUS: Level " << level << " resulting " << printKeyNames::printName<MapKey>() << " is " << value << ".");
|
---|
| 79 | }
|
---|
[c40e15d] | 80 | }
|
---|
| 81 |
|
---|
| 82 | private:
|
---|
| 83 | //!> Hierarchy of IndexSet's
|
---|
| 84 | SubsetMap::ptr &subsetmap;
|
---|
| 85 | //!> vector of data converted from MPQCData
|
---|
[c9f9bb] | 86 | const std::map<JobId_t, MapType> &data;
|
---|
[c40e15d] | 87 | //!> container with all IndexSet's
|
---|
| 88 | const IndexSetContainer::Container_t &container;
|
---|
| 89 | //!> lookup map from job ids to ordering in above vectors
|
---|
[3dd32f] | 90 | const std::map< JobId_t, size_t > &MatrixNrLookup;
|
---|
[ff9963] | 91 | //!> vector of results
|
---|
| 92 | std::vector<MapType> &results;
|
---|
[c40e15d] | 93 | };
|
---|
| 94 |
|
---|
[ff9963] | 95 | #endif /* ALLLEVELSUMMATOR_HPP_ */
|
---|