Changeset 0dc86e2 for src


Ignore:
Timestamp:
Aug 26, 2010, 9:34:49 AM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
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
Message:

Removed unused AtomNo parameter in atom::OutputMPQCLine()

Location:
src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/MpqcParser.cpp

    r5cd333c r0dc86e2  
    6767void MpqcParser::saveSimple(ostream *file)
    6868{
    69   int AtomNo = 0;
    7069  Vector center;
    7170  vector<atom *> allatoms = World::getInstance().getAllAtoms();
     
    9998    // output of atoms
    10099    for (vector<atom *>::iterator AtomRunner = allatoms.begin(); AtomRunner != allatoms.end(); ++AtomRunner) {
    101       (*AtomRunner)->OutputMPQCLine(file, &center, &AtomNo);
     100      (*AtomRunner)->OutputMPQCLine(file, &center);
    102101    }
    103102    *file << "\t}" << endl;
     
    115114void MpqcParser::saveHessian(ostream *file)
    116115{
    117   int AtomNo = 0;
    118116  Vector center;
    119117  vector<atom *> allatoms = World::getInstance().getAllAtoms();
     
    146144    // output of atoms
    147145    for (vector<atom *>::iterator AtomRunner = allatoms.begin(); AtomRunner != allatoms.end(); ++AtomRunner) {
    148       (*AtomRunner)->OutputMPQCLine(file, &center, &AtomNo);
     146      (*AtomRunner)->OutputMPQCLine(file, &center);
    149147    }
    150148    *file << "\t}" << endl;
  • src/atom.cpp

    r5cd333c r0dc86e2  
    258258 * \param *AtomNo pointer to atom counter that is increased by one
    259259 */
    260 void atom::OutputMPQCLine(ostream * const out, const Vector *center, int *AtomNo = NULL) const
     260void atom::OutputMPQCLine(ostream * const out, const Vector *center) const
    261261{
    262262  Vector recentered(getPosition());
    263263  recentered -= *center;
    264264  *out << "\t\t" << getType()->getSymbol() << " [ " << recentered[0] << "\t" << recentered[1] << "\t" << recentered[2] << " ]" << endl;
    265   if (AtomNo != NULL)
    266     *AtomNo++;
    267265};
    268266
  • src/atom.hpp

    r5cd333c r0dc86e2  
    5757  bool OutputTrajectory(ofstream * const out, const int *ElementNo, int *AtomNo, const int step) const;
    5858  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;
    6060
    6161  void InitComponentNr();
  • src/config.cpp

    r5cd333c r0dc86e2  
    747747bool config::SaveMPQC(const char * const filename, const molecule * const mol) const
    748748{
    749   int AtomNo = -1;
    750749  Vector *center = NULL;
    751750  ofstream *output = NULL;
     
    780779    center = mol->DetermineCenterOfAll();
    781780    // 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);
    784782    delete(center);
    785783    *output << "\t}" << endl;
     
    822820    center = mol->DetermineCenterOfAll();
    823821    // 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);
    826823    delete(center);
    827824    *output << "\t}" << endl;
Note: See TracChangeset for help on using the changeset viewer.