Changeset 98dbee
- Timestamp:
- Aug 9, 2013, 2:20:35 PM (12 years ago)
- 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)
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/AnalyseFragmentationResultsAction.cpp
rbcc24f r98dbee 220 220 } 221 221 222 bool appendToHomologyFile( 223 const boost::filesystem::path &homology_file, 224 const FragmentationShortRangeResults &shortrangeresults, 225 const FragmentationLongRangeResults &longrangeresults 222 void parseHomologiesFromFile( 223 const boost::filesystem::path &homology_file 226 224 ) 227 225 { 228 /// read homology container (if present) 229 HomologyContainer homology_container; 226 HomologyContainer &homology_container = World::getInstance().getHomologies(); 230 227 if (boost::filesystem::exists(homology_file)) { 231 228 std::ifstream returnstream(homology_file.string().c_str()); … … 241 238 << ", creating empty container."); 242 239 } 240 } 241 242 void appendToHomologies( 243 const FragmentationShortRangeResults &shortrangeresults, 244 const FragmentationLongRangeResults &longrangeresults 245 ) 246 { 247 /// read homology container (if present) 248 HomologyContainer &homology_container = World::getInstance().getHomologies(); 243 249 244 250 /// append all fragments to a HomologyContainer … … 300 306 } 301 307 } 302 308 } 309 310 bool writeHomologiesToFile( 311 const boost::filesystem::path &homology_file 312 ) 313 { 303 314 /// store homology container again 315 HomologyContainer &homology_container = World::getInstance().getHomologies(); 304 316 std::ofstream outputstream(homology_file.string().c_str()); 305 317 if (outputstream.good()) { // check if opened … … 414 426 415 427 // append all keysets to homology file 428 appendToHomologies(shortrangeresults, longrangeresults); 416 429 if (!params.homology_file.get().empty()) { 417 430 const boost::filesystem::path &homology_file = params.homology_file.get(); 418 431 if (homology_file.string() != "") { 432 LOG(1, "INFO: Parsing HomologyGraphs from file " << homology_file.string() << "."); 433 parseHomologiesFromFile(homology_file); 419 434 LOG(1, "INFO: Appending HomologyGraphs to file " << homology_file.string() << "."); 420 if (! appendToHomologyFile(homology_file, shortrangeresults, longrangeresults))435 if (!writeHomologiesToFile(homology_file)) 421 436 return Action::failure; 422 437 } -
src/World.cpp
rbcc24f r98dbee 55 55 #include "Descriptors/SelectiveIterator_impl.hpp" 56 56 #include "Element/periodentafel.hpp" 57 #include "Fragmentation/Homology/HomologyContainer.hpp" 57 58 #include "Graph/BondGraph.hpp" 58 59 #include "Graph/DepthFirstSearchAnalysis.hpp" … … 90 91 { 91 92 return BG; 93 } 94 95 HomologyContainer &World::getHomologies() 96 { 97 return *homologies; 98 } 99 100 void 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; 92 110 } 93 111 … … 769 787 periode(new periodentafel(true)), 770 788 configuration(new config), 789 homologies(new HomologyContainer()), 771 790 Thermostats(new ThermoStatContainer), 772 791 ExitFlag(0), -
src/World.hpp
rbcc24f r98dbee 46 46 class Box; 47 47 class config; 48 class HomologyContainer; 48 49 class RealSpaceMatrix; 49 50 class molecule; … … 142 143 */ 143 144 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 144 158 /** 145 159 * returns the configuration for the world. … … 455 469 periodentafel *periode; 456 470 config *configuration; 471 HomologyContainer *homologies; 457 472 Box *cell_size; 458 473 LinkedCell::LinkedCell_Controller *LCcontroller;
Note:
See TracChangeset
for help on using the changeset viewer.