Changeset 2affd1 for src/Parser
- Timestamp:
- Feb 11, 2016, 8:07:11 AM (9 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:
- eb6552
- Parents:
- df5b8c
- git-author:
- Frederik Heber <heber@…> (12/30/15 10:02:58)
- git-committer:
- Frederik Heber <heber@…> (02/11/16 08:07:11)
- Location:
- src/Parser
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/MpqcParser.cpp
rdf5b8c r2affd1 54 54 #include "LinearAlgebra/Vector.hpp" 55 55 #include "molecule.hpp" 56 #include "MoleculeListClass.hpp"57 56 #include "Parser/Exceptions.hpp" 58 57 #include "World.hpp" … … 101 100 molecule *newmol = World::getInstance().createMolecule(); 102 101 newmol->ActiveFlag = true; 103 // TODO: Remove the insertion into molecule when saving does not depend on them anymore. Also, remove molecule.hpp include104 World::getInstance().getMolecules()->insert(newmol);105 102 while (file->good()) { 106 103 file->getline(line, MAXSTRINGSIZE-1); -
src/Parser/PcpParser.cpp
rdf5b8c r2affd1 48 48 #include "LinearAlgebra/RealSpaceMatrix.hpp" 49 49 #include "molecule.hpp" 50 #include "MoleculeListClass.hpp"51 50 #include "PcpParser.hpp" 52 51 #include "Parser/ConfigFileBuffer.hpp" … … 381 380 molecule *mol = World::getInstance().createMolecule(); 382 381 mol->ActiveFlag = true; 383 // TODO: Remove the insertion into molecule when saving does not depend on them anymore. Also, remove molecule.hpp include384 World::getInstance().getMolecules()->insert(mol);385 382 LoadMolecule(mol, FileBuffer, World::getInstance().getPeriode(), FastParsing); 386 383 -
src/Parser/PdbParser.cpp
rdf5b8c r2affd1 47 47 #include "Element/periodentafel.hpp" 48 48 #include "molecule.hpp" 49 #include "MoleculeListClass.hpp"50 49 #include "Parser/PdbParser.hpp" 51 50 #include "World.hpp" … … 140 139 newmol->ActiveFlag = true; 141 140 unsigned int step = 0; 142 // TODO: Remove the insertion into molecule when saving does not depend on them anymore. Also, remove molecule.hpp include143 World::getInstance().getMolecules()->insert(newmol);144 141 while (NotEndOfFile) { 145 142 bool NotEndOfTimestep = true; -
src/Parser/Psi3Parser.cpp
rdf5b8c r2affd1 52 52 #include "LinearAlgebra/Vector.hpp" 53 53 #include "molecule.hpp" 54 #include "MoleculeListClass.hpp"55 54 #include "World.hpp" 56 55 … … 93 92 molecule *newmol = World::getInstance().createMolecule(); 94 93 newmol->ActiveFlag = true; 95 // TODO: Remove the insertion into molecule when saving does not depend on them anymore. Also, remove molecule.hpp include96 World::getInstance().getMolecules()->insert(newmol);97 94 while (file->good()) { 98 95 file->getline(line, MAXSTRINGSIZE-1); -
src/Parser/TremoloParser.cpp
rdf5b8c r2affd1 51 51 #include "LinearAlgebra/RealSpaceMatrix.hpp" 52 52 #include "molecule.hpp" 53 #include "MoleculeListClass.hpp"54 53 #include "World.hpp" 55 54 #include "WorldTime.hpp" … … 142 141 molecule *newmol = World::getInstance().createMolecule(); 143 142 newmol->ActiveFlag = true; 144 // TODO: Remove the insertion into molecule when saving does not depend on them anymore. Also, remove molecule.hpp include145 World::getInstance().getMolecules()->insert(newmol);146 143 while (file->good()) { 147 144 std::getline(*file, line, '\n'); -
src/Parser/XmlParser.cpp
rdf5b8c r2affd1 49 49 #include "Element/periodentafel.hpp" 50 50 #include "molecule.hpp" 51 #include "MoleculeListClass.hpp"52 51 #include "World.hpp" 53 52 … … 133 132 molecule * const newmol = World::getInstance().createMolecule(); 134 133 newmol->ActiveFlag = true; 135 // TODO: Remove the insertion into molecule when saving does not depend on them anymore. Also, remove molecule.hpp include136 World::getInstance().getMolecules()->insert(newmol);137 134 138 135 // load file into xml tree -
src/Parser/XyzParser.cpp
rdf5b8c r2affd1 48 48 #include "Element/periodentafel.hpp" 49 49 #include "molecule.hpp" 50 #include "MoleculeListClass.hpp"51 50 #include "World.hpp" 52 51 … … 89 88 newmol = World::getInstance().createMolecule(); 90 89 newmol->ActiveFlag = true; 91 // TODO: Remove the insertion into molecule when saving does not depend on them anymore. Also, remove molecule.hpp include92 World::getInstance().getMolecules()->insert(newmol);93 90 94 91 // the first line tells number of atoms,
Note:
See TracChangeset
for help on using the changeset viewer.