Changeset 111f4a


Ignore:
Timestamp:
Mar 1, 2011, 1:17:08 PM (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:
cff66c
Parents:
0ec7fe
git-author:
Frederik Heber <heber@…> (02/28/11 15:14:28)
git-committer:
Frederik Heber <heber@…> (03/01/11 13:17:08)
Message:

Const-ness and cosmetic fixes to class BondGraph.

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/bondgraph.cpp

    r0ec7fe r111f4a  
    5252}
    5353
    54 bool BondGraph::LoadBondLengthTable(std::istream &input)
     54bool BondGraph::LoadBondLengthTable(
     55    std::istream &input)
    5556{
    5657  Info FunctionInfo(__func__);
     
    160161}
    161162
    162 void BondGraph::CreateAdjacency(LinkedCell &LC)
     163void BondGraph::CreateAdjacency(LinkedCell &LC) const
    163164{
    164165  atom *Walker = NULL;
  • src/bondgraph.hpp

    r0ec7fe r111f4a  
    135135            class iterator_type,
    136136            class const_iterator_type>
    137   void CreateAdjacency(AtomSetMixin<container_type,iterator_type,const_iterator_type> &Set)
     137  void CreateAdjacency(
     138      AtomSetMixin<container_type,iterator_type,const_iterator_type> &Set) const
    138139  {
    139140    LOG(1, "STATUS: Removing all present bonds.");
     
    259260   * \param &LC Linked Cell Container with all atoms
    260261   */
    261   void CreateAdjacency(LinkedCell &LC);
     262  void CreateAdjacency(LinkedCell &LC) const;
    262263
    263264  /** Removes all bonds within the given set of iterable atoms.
     
    268269            class iterator_type,
    269270            class const_iterator_type>
    270   void cleanAdjacencyList(AtomSetMixin<container_type,iterator_type,const_iterator_type> &Set)
     271  void cleanAdjacencyList(
     272      AtomSetMixin<container_type,iterator_type,const_iterator_type> &Set) const
    271273  {
    272274    // remove every bond from the list
     
    296298            class iterator_type,
    297299            class const_iterator_type>
    298   int CorrectBondDegree(AtomSetMixin<container_type,iterator_type,const_iterator_type> &Set) const
     300  int CorrectBondDegree(
     301      AtomSetMixin<container_type,iterator_type,const_iterator_type> &Set) const
    299302  {
    300303    // reset
     
    317320
    318321  /** Returns bond criterion for given pair based on a bond length matrix.
    319    * The matrix should be contained in \a this BondGraph and contain an element-
    320    * to-element length.
     322   * This calls either the covalent or the bond matrix criterion.
    321323   * \param *Walker first BondedParticle
    322324   * \param *OtherWalker second BondedParticle
     
    364366            class iterator_type,
    365367            class const_iterator_type>
    366   void resetBondDegree(AtomSetMixin<container_type,iterator_type,const_iterator_type> &Set) const
     368  void resetBondDegree(
     369      AtomSetMixin<container_type,iterator_type,const_iterator_type> &Set) const
    367370  {
    368371    // reset bond degrees
     
    384387            class iterator_type,
    385388            class const_iterator_type>
    386   int calculateBondDegree(AtomSetMixin<container_type,iterator_type,const_iterator_type> &Set) const
     389  int calculateBondDegree(
     390      AtomSetMixin<container_type,iterator_type,const_iterator_type> &Set) const
    387391  {
    388392    //DoLog(1) && (Log() << Verbose(1) << "Correcting Bond degree of each bond ... " << endl);
Note: See TracChangeset for help on using the changeset viewer.