| 1 | /*
 | 
|---|
| 2 |  * AllLevelSummator.hpp
 | 
|---|
| 3 |  *
 | 
|---|
| 4 |  *  Created on: 29.07.2012
 | 
|---|
| 5 |  *      Author: heber
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | #ifndef ALLLEVELSUMMATOR_HPP_
 | 
|---|
| 9 | #define ALLLEVELSUMMATOR_HPP_
 | 
|---|
| 10 | 
 | 
|---|
| 11 | // include config.h
 | 
|---|
| 12 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 13 | #include <config.h>
 | 
|---|
| 14 | #endif
 | 
|---|
| 15 | 
 | 
|---|
| 16 | #include <vector>
 | 
|---|
| 17 | 
 | 
|---|
| 18 | #include "CodePatterns/Assert.hpp"
 | 
|---|
| 19 | 
 | 
|---|
| 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 | 
 | 
|---|
| 26 | /** Tiny template functor to use Summation, sum up each level, and store the
 | 
|---|
| 27 |  * result in a given vector.
 | 
|---|
| 28 |  *
 | 
|---|
| 29 |  */
 | 
|---|
| 30 | template <typename MapType>
 | 
|---|
| 31 | struct AllLevelSummator {
 | 
|---|
| 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, associated to job id
 | 
|---|
| 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, if
 | 
|---|
| 40 |    *        out of range this value is set to zero, hence ignored.
 | 
|---|
| 41 |    * \param _levelresults vector place levelresults into
 | 
|---|
| 42 |    */
 | 
|---|
| 43 |   AllLevelSummator(
 | 
|---|
| 44 |       SubsetMap::ptr &_subsetmap,
 | 
|---|
| 45 |       const std::map<JobId_t, MapType> &_data,
 | 
|---|
| 46 |       const IndexSetContainer::Container_t &_container,
 | 
|---|
| 47 |       const std::map< JobId_t, size_t > &_MatrixNrLookup,
 | 
|---|
| 48 |       std::vector<MapType> &_levelresults,
 | 
|---|
| 49 |       std::map<IndexSet::ptr, std::pair<MapType, MapType> > &_keysetresults) :
 | 
|---|
| 50 |     subsetmap(_subsetmap),
 | 
|---|
| 51 |     data(_data),
 | 
|---|
| 52 |     container(_container),
 | 
|---|
| 53 |     MatrixNrLookup(_MatrixNrLookup),
 | 
|---|
| 54 |     levelresults(_levelresults),
 | 
|---|
| 55 |     keysetresults(_keysetresults)
 | 
|---|
| 56 |   {
 | 
|---|
| 57 |     ASSERT( levelresults.size() >= subsetmap->getMaximumSetLevel(),
 | 
|---|
| 58 |         "AllLevelSummator() - result vector is not large enough.");
 | 
|---|
| 59 |   }
 | 
|---|
| 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 | 
 | 
|---|
| 71 |     // create Summator instance
 | 
|---|
| 72 |     Summator<MapType, MapKey> sum_value(
 | 
|---|
| 73 |         subsetmap, data, container, MatrixNrLookup
 | 
|---|
| 74 |         );
 | 
|---|
| 75 | 
 | 
|---|
| 76 |     // fill levelresults
 | 
|---|
| 77 |     const size_t MaxLevel = subsetmap->getMaximumSetLevel();
 | 
|---|
| 78 |     for (size_t level=1; level <= MaxLevel; ++level) {
 | 
|---|
| 79 |       MapType &LevelResults = levelresults[level-1];
 | 
|---|
| 80 |       // sum up and store in levelresults
 | 
|---|
| 81 |       const MapValue value = sum_value(level);
 | 
|---|
| 82 |       boost::fusion::at_key<MapKey>(LevelResults) = value;
 | 
|---|
| 83 |       // print value
 | 
|---|
| 84 |       //LOG(0, "STATUS: Level " << level << " resulting " << printKeyNames::printName<MapKey>() << " is " << value << ".");
 | 
|---|
| 85 |     }
 | 
|---|
| 86 | 
 | 
|---|
| 87 |     // fill keysetresults
 | 
|---|
| 88 |     for (IndexSetContainer::Container_t::const_iterator indexsetiter = container.begin();
 | 
|---|
| 89 |         indexsetiter != container.end(); ++indexsetiter) {
 | 
|---|
| 90 |       const IndexSet::ptr &index = *indexsetiter;
 | 
|---|
| 91 |       // this either generates a new entry or updates the present one, as we obtain ref to value
 | 
|---|
| 92 |       boost::fusion::at_key<MapKey>(keysetresults[index].first) =
 | 
|---|
| 93 |           sum_value.getValueForIndexSet(index);
 | 
|---|
| 94 |       boost::fusion::at_key<MapKey>(keysetresults[index].second) =
 | 
|---|
| 95 |           sum_value.getContributionForIndexSet(index);
 | 
|---|
| 96 |     }
 | 
|---|
| 97 |   }
 | 
|---|
| 98 | 
 | 
|---|
| 99 | private:
 | 
|---|
| 100 |   //!> Hierarchy of IndexSet's
 | 
|---|
| 101 |   SubsetMap::ptr &subsetmap;
 | 
|---|
| 102 |   //!> vector of data converted from MPQCData
 | 
|---|
| 103 |   const std::map<JobId_t, MapType> &data;
 | 
|---|
| 104 |   //!> container with all IndexSet's
 | 
|---|
| 105 |   const IndexSetContainer::Container_t &container;
 | 
|---|
| 106 |   //!> lookup map from job ids to ordering in above vectors
 | 
|---|
| 107 |   const std::map< JobId_t, size_t > &MatrixNrLookup;
 | 
|---|
| 108 |   //!> vector of levelresults
 | 
|---|
| 109 |   std::vector<MapType> &levelresults;
 | 
|---|
| 110 |   typedef std::pair< IndexSet::ptr, std::pair<MapType, MapType> > keysetresults_pair_t;
 | 
|---|
| 111 |   //!> typedef for map for keyset and each resulting value
 | 
|---|
| 112 |   typedef std::map<IndexSet::ptr, std::pair<MapType, MapType> > keysetresults_t;
 | 
|---|
| 113 |   //!> map for IndexSet and its associated contribution
 | 
|---|
| 114 |   keysetresults_t &keysetresults;
 | 
|---|
| 115 | };
 | 
|---|
| 116 | 
 | 
|---|
| 117 | #endif /* ALLLEVELSUMMATOR_HPP_ */
 | 
|---|