Changeset 98dbee


Ignore:
Timestamp:
Aug 9, 2013, 2:20:35 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:
1e1098
Parents:
bcc24f
git-author:
Frederik Heber <heber@…> (06/24/13 08:51:05)
git-committer:
Frederik Heber <heber@…> (08/09/13 14:20:35)
Message:

World now maintains HomologyContainer instance.

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/FragmentationAction/AnalyseFragmentationResultsAction.cpp

    rbcc24f r98dbee  
    220220}
    221221
    222 bool appendToHomologyFile(
    223     const boost::filesystem::path &homology_file,
    224     const FragmentationShortRangeResults &shortrangeresults,
    225     const FragmentationLongRangeResults &longrangeresults
     222void parseHomologiesFromFile(
     223    const boost::filesystem::path &homology_file
    226224    )
    227225{
    228   /// read homology container (if present)
    229   HomologyContainer homology_container;
     226  HomologyContainer &homology_container = World::getInstance().getHomologies();
    230227  if (boost::filesystem::exists(homology_file)) {
    231228    std::ifstream returnstream(homology_file.string().c_str());
     
    241238        << ", creating empty container.");
    242239  }
     240}
     241
     242void appendToHomologies(
     243    const FragmentationShortRangeResults &shortrangeresults,
     244    const FragmentationLongRangeResults &longrangeresults
     245    )
     246{
     247  /// read homology container (if present)
     248  HomologyContainer &homology_container = World::getInstance().getHomologies();
    243249
    244250  /// append all fragments to a HomologyContainer
     
    300306    }
    301307  }
    302 
     308}
     309
     310bool writeHomologiesToFile(
     311    const boost::filesystem::path &homology_file
     312    )
     313{
    303314  /// store homology container again
     315  HomologyContainer &homology_container = World::getInstance().getHomologies();
    304316  std::ofstream outputstream(homology_file.string().c_str());
    305317  if (outputstream.good()) { // check if opened
     
    414426
    415427    // append all keysets to homology file
     428    appendToHomologies(shortrangeresults, longrangeresults);
    416429    if (!params.homology_file.get().empty()) {
    417430      const boost::filesystem::path &homology_file = params.homology_file.get();
    418431      if (homology_file.string() != "") {
     432        LOG(1, "INFO: Parsing HomologyGraphs from file " << homology_file.string() << ".");
     433        parseHomologiesFromFile(homology_file);
    419434        LOG(1, "INFO: Appending HomologyGraphs to file " << homology_file.string() << ".");
    420         if (!appendToHomologyFile(homology_file, shortrangeresults, longrangeresults))
     435        if (!writeHomologiesToFile(homology_file))
    421436          return Action::failure;
    422437      }
  • src/World.cpp

    rbcc24f r98dbee  
    5555#include "Descriptors/SelectiveIterator_impl.hpp"
    5656#include "Element/periodentafel.hpp"
     57#include "Fragmentation/Homology/HomologyContainer.hpp"
    5758#include "Graph/BondGraph.hpp"
    5859#include "Graph/DepthFirstSearchAnalysis.hpp"
     
    9091{
    9192  return BG;
     93}
     94
     95HomologyContainer &World::getHomologies()
     96{
     97  return *homologies;
     98}
     99
     100void World::resetHomologies(HomologyContainer *&_homologies)
     101{
     102  HomologyContainer *oldhomologies = homologies;
     103
     104  // install new instance, resetting given pointer
     105  homologies = _homologies;
     106  _homologies = NULL;
     107
     108  // delete old instance which also informs all observers
     109  delete oldhomologies;
    92110}
    93111
     
    769787    periode(new periodentafel(true)),
    770788    configuration(new config),
     789    homologies(new HomologyContainer()),
    771790    Thermostats(new ThermoStatContainer),
    772791    ExitFlag(0),
  • src/World.hpp

    rbcc24f r98dbee  
    4646class Box;
    4747class config;
     48class HomologyContainer;
    4849class RealSpaceMatrix;
    4950class molecule;
     
    142143   */
    143144  void setBondGraph(BondGraph *_BG);
     145
     146  /** Getter for homology container.
     147   *
     148   * \return const reference to homology container.
     149   */
     150  HomologyContainer &getHomologies();
     151
     152  /** Setter for homology container.
     153   *
     154   * \param homologies reference to homologies, set to NULL
     155   */
     156  void resetHomologies(HomologyContainer *&homologies);
     157
    144158  /**
    145159   * returns the configuration for the world.
     
    455469  periodentafel *periode;
    456470  config *configuration;
     471  HomologyContainer *homologies;
    457472  Box *cell_size;
    458473  LinkedCell::LinkedCell_Controller *LCcontroller;
Note: See TracChangeset for help on using the changeset viewer.