Ignore:
Timestamp:
Dec 14, 2012, 5:39:41 PM (12 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
372c912
Parents:
69e065
git-author:
Frederik Heber <heber@…> (09/27/12 15:53:20)
git-committer:
Frederik Heber <heber@…> (12/14/12 17:39:41)
Message:

Extended FragmentResults and FragmentationChargeDensity to contain map of (IndexSet, contributions) pairs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Summation/AllLevelOrthogonalSummator.hpp

    r69e065 rb8f0b25  
    4545      const IndexSetContainer::Container_t &_container,
    4646      const std::map< JobId_t, size_t > &_MatrixNrLookup,
    47       std::vector<MapType> &_results) :
     47      std::vector<MapType> &_levelresults,
     48      std::map<IndexSet::ptr, MapType> &_keysetresults) :
    4849    subsetmap(_subsetmap),
    4950    data(_data),
    5051    container(_container),
    5152    MatrixNrLookup(_MatrixNrLookup),
    52     results(_results)
     53    levelresults(_levelresults),
     54    keysetresults(_keysetresults)
    5355  {
    54     ASSERT( results.size() >= subsetmap->getMaximumSetLevel(),
     56    ASSERT( levelresults.size() >= subsetmap->getMaximumSetLevel(),
    5557        "AllLevelOrthogonalSummator() - result vector is not large enough.");
    5658  }
     
    6567    // We retrieve the type of the MPQCData member variable from the boost::fusion::map.
    6668    typedef typename boost::fusion::result_of::value_at_key<MapType, MapKey>::type MapValue;
     69
    6770    // create OrthogonalSummator instance
    6871    OrthogonalSummator<MapType, MapKey> sum_value(
    6972        subsetmap, data, container, MatrixNrLookup
    7073        );
     74
     75    // fill levelresults
    7176    const size_t MaxLevel = subsetmap->getMaximumSetLevel();
    7277    for (size_t level=1; level <= MaxLevel; ++level) {
    73       MapType &LevelResults = results[level-1];
    74       // sum up and store in results
     78      MapType &LevelResults = levelresults[level-1];
     79      // sum up and store in levelresults
    7580      const MapValue value = sum_value(level);
    7681      boost::fusion::at_key<MapKey>(LevelResults) = value;
    7782      // print value
    7883      //LOG(0, "STATUS: Level " << level << " resulting " << printKeyNames::printName<MapKey>() << " is " << value << ".");
     84    }
     85
     86    // fill keysetresults
     87    for (IndexSetContainer::Container_t::const_iterator indexsetiter = container.begin();
     88        indexsetiter != container.end(); ++indexsetiter) {
     89      const IndexSet::ptr &index = *indexsetiter;
     90      // this either generates a new entry or updates the present one, as we obtain ref to value
     91      boost::fusion::at_key<MapKey>(keysetresults[index]) =
     92          sum_value.getContributionForIndexSet(index);
    7993    }
    8094  }
     
    89103  //!> lookup map from job ids to ordering in above vectors
    90104  const std::map< JobId_t, size_t > &MatrixNrLookup;
    91   //!> vector of results
    92   std::vector<MapType> &results;
     105  //!> vector of levelresults
     106  std::vector<MapType> &levelresults;
     107  typedef std::pair< IndexSet::ptr, MapType > keysetresults_pair_t;
     108  //!> typedef for map for keyset and each resulting value
     109  typedef std::map<IndexSet::ptr, MapType> keysetresults_t;
     110  //!> map for IndexSet and its associated contribution
     111  keysetresults_t &keysetresults;
    93112};
    94113
Note: See TracChangeset for help on using the changeset viewer.