Changeset 0dc86e2
- Timestamp:
- Aug 26, 2010, 9:34:49 AM (15 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:
- 9e7813
- Parents:
- 5cd333c
- Location:
- src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/MpqcParser.cpp
r5cd333c r0dc86e2 67 67 void MpqcParser::saveSimple(ostream *file) 68 68 { 69 int AtomNo = 0;70 69 Vector center; 71 70 vector<atom *> allatoms = World::getInstance().getAllAtoms(); … … 99 98 // output of atoms 100 99 for (vector<atom *>::iterator AtomRunner = allatoms.begin(); AtomRunner != allatoms.end(); ++AtomRunner) { 101 (*AtomRunner)->OutputMPQCLine(file, ¢er , &AtomNo);100 (*AtomRunner)->OutputMPQCLine(file, ¢er); 102 101 } 103 102 *file << "\t}" << endl; … … 115 114 void MpqcParser::saveHessian(ostream *file) 116 115 { 117 int AtomNo = 0;118 116 Vector center; 119 117 vector<atom *> allatoms = World::getInstance().getAllAtoms(); … … 146 144 // output of atoms 147 145 for (vector<atom *>::iterator AtomRunner = allatoms.begin(); AtomRunner != allatoms.end(); ++AtomRunner) { 148 (*AtomRunner)->OutputMPQCLine(file, ¢er , &AtomNo);146 (*AtomRunner)->OutputMPQCLine(file, ¢er); 149 147 } 150 148 *file << "\t}" << endl; -
src/atom.cpp
r5cd333c r0dc86e2 258 258 * \param *AtomNo pointer to atom counter that is increased by one 259 259 */ 260 void atom::OutputMPQCLine(ostream * const out, const Vector *center , int *AtomNo = NULL) const260 void atom::OutputMPQCLine(ostream * const out, const Vector *center) const 261 261 { 262 262 Vector recentered(getPosition()); 263 263 recentered -= *center; 264 264 *out << "\t\t" << getType()->getSymbol() << " [ " << recentered[0] << "\t" << recentered[1] << "\t" << recentered[2] << " ]" << endl; 265 if (AtomNo != NULL)266 *AtomNo++;267 265 }; 268 266 -
src/atom.hpp
r5cd333c r0dc86e2 57 57 bool OutputTrajectory(ofstream * const out, const int *ElementNo, int *AtomNo, const int step) const; 58 58 bool OutputTrajectoryXYZ(ofstream * const out, const int step) const; 59 void OutputMPQCLine(ostream * const out, const Vector *center , int *AtomNo) const;59 void OutputMPQCLine(ostream * const out, const Vector *center) const; 60 60 61 61 void InitComponentNr(); -
src/config.cpp
r5cd333c r0dc86e2 747 747 bool config::SaveMPQC(const char * const filename, const molecule * const mol) const 748 748 { 749 int AtomNo = -1;750 749 Vector *center = NULL; 751 750 ofstream *output = NULL; … … 780 779 center = mol->DetermineCenterOfAll(); 781 780 // output of atoms 782 AtomNo = 0; 783 mol->ActOnAllAtoms( &atom::OutputMPQCLine, (ostream * const) output, (const Vector *)center, &AtomNo ); 781 mol->ActOnAllAtoms( &atom::OutputMPQCLine, (ostream * const) output, (const Vector *)center); 784 782 delete(center); 785 783 *output << "\t}" << endl; … … 822 820 center = mol->DetermineCenterOfAll(); 823 821 // output of atoms 824 AtomNo = 0; 825 mol->ActOnAllAtoms( &atom::OutputMPQCLine, (ostream * const) output, (const Vector *)center, &AtomNo ); 822 mol->ActOnAllAtoms( &atom::OutputMPQCLine, (ostream * const) output, (const Vector *)center); 826 823 delete(center); 827 824 *output << "\t}" << endl;
Note:
See TracChangeset
for help on using the changeset viewer.