Changeset d4eaf1


Ignore:
Timestamp:
Jun 27, 2014, 9:32:55 PM (11 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:
a498c1
Parents:
a42fee
git-author:
Frederik Heber <heber@…> (04/22/14 15:59:51)
git-committer:
Frederik Heber <heber@…> (06/27/14 21:32:55)
Message:

Renamed ResultContainer -> ReceivedResultContainer.

  • this belongs to SpecificFragmentController.
  • renamed _ResultContainer_impl -> _ReceiveResultContainer_impl.
  • FIX: also renamed inclusion guard.
Location:
src/Fragmentation/Automation
Files:
5 edited
1 moved

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Automation/MPQCFragmentController.hpp

    ra42fee rd4eaf1  
    7070private:
    7171  //!> type-specific result container
    72   SpecificFragmentController::ResultContainer<MPQCData> results;
     72  SpecificFragmentController::ReceiveResultContainer<MPQCData> results;
    7373};
    7474
  • src/Fragmentation/Automation/Makefile.am

    ra42fee rd4eaf1  
    1717        Fragmentation/Automation/MPQCFragmentController.hpp \
    1818        Fragmentation/Automation/SpecificFragmentController.hpp \
    19         Fragmentation/Automation/SpecificFragmentController_ResultContainer_impl.hpp
     19        Fragmentation/Automation/SpecificFragmentController_ReceiveResultContainer_impl.hpp
    2020       
    2121if CONDVMG
  • src/Fragmentation/Automation/SpecificFragmentController.hpp

    ra42fee rd4eaf1  
    6060   */
    6161  template <typename T>
    62   struct ResultContainer {
     62  struct ReceiveResultContainer {
    6363    /** cycle to wait for results
    6464     *
     
    7979    size_t receiveResults(SpecificFragmentController &callback);
    8080
     81    /** Inserts FragmentResult's into IdData.
     82     *
     83     * \param results raw results to insert, containing ids
     84     * \param fragmentData converted results to insert, containing data
     85     */
     86    void insertResults(
     87        const std::vector<FragmentResult::ptr> &results,
     88        std::vector<T> &fragmentData);
     89
    8190    /** Extracts specific Data type from received vector of FragmentResults.
    8291     *
     
    8695    void ConvertFragmentResultTo(
    8796        const std::vector<FragmentResult::ptr> &results,
    88         std::vector<T> &fragmentData);
     97        std::vector<T> &fragmentData) const;
    8998
    9099    /** Clears all internally stored results.
     
    109118};
    110119
    111 #include "SpecificFragmentController_ResultContainer_impl.hpp"
     120#include "SpecificFragmentController_ReceiveResultContainer_impl.hpp"
    112121
    113122#endif /* SPECIFICFRAGMENTCONTROLLER_HPP_ */
  • src/Fragmentation/Automation/SpecificFragmentController_ReceiveResultContainer_impl.hpp

    ra42fee rd4eaf1  
    11/*
    2  * SpecificFragmentController_impl.hpp
     2 * SpecificFragmentController_ReceiveResultContainer_impl.hpp
    33 *
    44 *  Created on: Aug 27, 2012
     
    66 */
    77
    8 #ifndef SPECIFICFRAGMENTCONTROLLER_IMPL_HPP_
    9 #define SPECIFICFRAGMENTCONTROLLER_IMPL_HPP_
     8#ifndef SPECIFICFRAGMENTCONTROLLER_RECEIVERESULTCONTAINER_IMPL_HPP_
     9#define SPECIFICFRAGMENTCONTROLLER_RECEIVERESULTCONTAINER_IMPL_HPP_
    1010
    1111
     
    2222
    2323template <typename T>
    24 size_t SpecificFragmentController::ResultContainer<T>::receiveResults(
     24size_t SpecificFragmentController::ReceiveResultContainer<T>::receiveResults(
    2525    SpecificFragmentController &callback)
    2626{
     
    3535
    3636  // insert into map
    37   std::vector<FragmentResult::ptr>::const_iterator resultiter = fragmentresults.begin();
    38   typename std::vector<T>::const_iterator dataiter = fragmentData.begin();
    39   for(;resultiter != fragmentresults.end(); ++resultiter, ++dataiter) {
    40     const JobId_t _id = (*resultiter)->getId();
    41 #ifndef NDEBUG
    42     std::pair<typename std::map<JobId_t, T>::iterator, bool> inserter =
    43 #endif
    44     IdData.insert( std::make_pair( _id, *dataiter) );
    45     ASSERT( inserter.second,
    46         "SpecificFragmentController::ResultContainer::receiveResults() - result id "
    47         +toString(inserter.first->first)+" already present.");
    48   }
    49   ASSERT( dataiter == fragmentData.end(),
    50       "SpecificFragmentController::ResultContainer::receiveResults() - fragmentresults and fragmentdata differ in size.");
     37  insertResults(fragmentresults, fragmentData);
     38
    5139  return fragmentData.size();
    5240}
    5341
    5442template <typename T>
    55 void SpecificFragmentController::ResultContainer<T>::waitforResults(
     43void SpecificFragmentController::ReceiveResultContainer<T>::waitforResults(
    5644    const size_t NoExpectedResults,
    5745    boost::asio::io_service &io_service,
     
    8169
    8270template <typename T>
    83 void SpecificFragmentController::ResultContainer<T>::ConvertFragmentResultTo(
     71void SpecificFragmentController::ReceiveResultContainer<T>::ConvertFragmentResultTo(
    8472    const std::vector<FragmentResult::ptr> &results,
    85     std::vector<T> &fragmentData)
     73    std::vector<T> &fragmentData) const
    8674{
    8775  // extract results
     
    9078
    9179  LOG(2, "DEBUG: Parsing now through " << results.size() << " results.");
    92   for (std::vector<FragmentResult::ptr>::const_iterator iter = results.begin();
     80 for (std::vector<FragmentResult::ptr>::const_iterator iter = results.begin();
    9381      iter != results.end(); ++iter) {
    9482    //LOG(1, "RESULT: job #"+toString((*iter)->getId())+": "+toString((*iter)->result));
     
    9886    boost::archive::text_iarchive ia(inputstream);
    9987    ia >> extractedData;
    100     LOG(1, "INFO: extracted data is " << extractedData << ".");
     88   LOG(1, "INFO: extracted data is " << extractedData << ".");
    10189    fragmentData.push_back(extractedData);
    10290  }
     
    10694}
    10795
    108 #endif /* SPECIFICFRAGMENTCONTROLLER_IMPL_HPP_ */
     96template <typename T>
     97void SpecificFragmentController::ReceiveResultContainer<T>::insertResults(
     98    const std::vector<FragmentResult::ptr> &fragmentresults,
     99    std::vector<T> &fragmentData)
     100{
     101  std::vector<FragmentResult::ptr>::const_iterator resultiter = fragmentresults.begin();
     102  typename std::vector<T>::const_iterator dataiter = fragmentData.begin();
     103  for(;resultiter != fragmentresults.end(); ++resultiter, ++dataiter) {
     104    const JobId_t _id = (*resultiter)->getId();
     105#ifndef NDEBUG
     106    std::pair<typename std::map<JobId_t, T>::iterator, bool> inserter =
     107#endif
     108    IdData.insert( std::make_pair( _id, *dataiter) );
     109    ASSERT( inserter.second,
     110        "ReceiveResultContainer::insertResults() - result id "
     111        +toString(inserter.first->first)+" already present.");
     112  }
     113  ASSERT( dataiter == fragmentData.end(),
     114      "ReceiveResultContainer::insertResults() - fragmentresults and fragmentdata differ in size.");
     115}
     116
     117
     118#endif /* SPECIFICFRAGMENTCONTROLLER_RECEIVERESULTCONTAINER_IMPL_HPP_ */
  • src/Fragmentation/Automation/VMGDebugGridFragmentController.hpp

    ra42fee rd4eaf1  
    5555private:
    5656  //!> type-specific result container
    57   SpecificFragmentController::ResultContainer<std::string> results;
     57  SpecificFragmentController::ReceiveResultContainer<std::string> results;
    5858};
    5959
  • src/Fragmentation/Automation/VMGFragmentController.hpp

    ra42fee rd4eaf1  
    8989private:
    9090  //!> type-specific result container
    91   SpecificFragmentController::ResultContainer<VMGData> results;
     91  SpecificFragmentController::ReceiveResultContainer<VMGData> results;
    9292};
    9393
Note: See TracChangeset for help on using the changeset viewer.