Changeset 4b5cf8


Ignore:
Timestamp:
Mar 1, 2011, 10:16:39 AM (14 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:
b9772a
Parents:
458c31
git-author:
Frederik Heber <heber@…> (02/21/11 13:13:04)
git-committer:
Frederik Heber <heber@…> (03/01/11 10:16:39)
Message:

BondedParticle::OutputBondOfAtom() now takes stream to print to.

Location:
src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • src/atom_bondedparticle.cpp

    r458c31 r4b5cf8  
    5656/** Prints all bonds of this atom with total degree.
    5757 */
    58 void BondedParticle::OutputBondOfAtom() const
    59 {
    60   const BondList& ListOfBonds = getListOfBonds();
    61   DoLog(4) && (Log() << Verbose(4) << "Atom " << getName() << "/" << getNr() << " with " << ListOfBonds.size() << " bonds: " << endl);
     58void BondedParticle::OutputBondOfAtom(std::ostream &ost) const
     59{
     60  const BondList& ListOfBonds = getListOfBonds();
     61  ost << "Atom " << getName() << "/" << getNr() << " with " << ListOfBonds.size() << " bonds: ";
    6262  int TotalDegree = 0;
    6363  for (BondList::const_iterator Runner = ListOfBonds.begin(); Runner != ListOfBonds.end(); ++Runner) {
    64     DoLog(4) && (Log() << Verbose(4) << **Runner << endl);
     64    ost << **Runner << "\t";
    6565    TotalDegree += (*Runner)->BondDegree;
    6666  }
    67   DoLog(4) && (Log() << Verbose(4) << " -- TotalDegree: " << TotalDegree << endl);
     67  ost << " -- TotalDegree: " << TotalDegree;
    6868};
    6969
  • src/atom_bondedparticle.hpp

    r458c31 r4b5cf8  
    4545  int CountBonds() const;
    4646  int CorrectBondDegree();
    47   void OutputBondOfAtom() const;
     47  void OutputBondOfAtom(std::ostream &ost) const;
    4848  void OutputAdjacency(ofstream * const AdjacencyFile) const;
    4949  void OutputBonds(ofstream * const BondFile) const;
  • src/molecule.cpp

    r458c31 r4b5cf8  
    942942void molecule::OutputListOfBonds() const
    943943{
    944   DoLog(2) && (Log() << Verbose(2) << endl << "From Contents of ListOfBonds, all non-hydrogen atoms:" << endl);
    945   for_each(atoms.begin(),atoms.end(),mem_fun(&atom::OutputBondOfAtom));
    946   DoLog(0) && (Log() << Verbose(0) << endl);
    947 };
     944  std::stringstream output;
     945  LOG(2, "From Contents of ListOfBonds, all atoms:");
     946  for (molecule::const_iterator iter = begin();
     947      iter != end();
     948      ++iter) {
     949    (*iter)->OutputBondOfAtom(output);
     950    output << std::endl << "\t\t";
     951  }
     952  LOG(2, output.str());
     953}
    948954
    949955/** Output of element before the actual coordination list.
  • src/molecule_graph.cpp

    r458c31 r4b5cf8  
    220220
    221221    // output bonds for debugging (if bond chain list was correctly installed)
    222     for_each(atoms.begin(),atoms.end(),mem_fun(&atom::OutputBondOfAtom));
     222    for(molecule::internal_iterator iter = atoms.begin(); iter != atoms.end(); ++iter)
     223      (*iter)->OutputBondOfAtom((std::ostream &)std::cout);
    223224  } else
    224225    DoLog(1) && (Log() << Verbose(1) << "AtomCount is " << getAtomCount() << ", thus no bonds, no connections!." << endl);
  • src/unittests/CountBondsUnitTest.cpp

    r458c31 r4b5cf8  
    115115  CPPUNIT_ASSERT_EQUAL( true , BG->CreateAdjacencyForMolecule(TestMolecule2) );
    116116//  TestMolecule1->Output((ofstream *)&cout);
    117 //  TestMolecule1->OutputBondsList();
     117//  TestMolecule1->OutputBondsList(std::cout);
    118118};
    119119
Note: See TracChangeset for help on using the changeset viewer.