Changeset f01769 for src/Fragmentation


Ignore:
Timestamp:
Jul 24, 2015, 4:44:34 PM (10 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:
a58c16
Parents:
1259df
git-author:
Frederik Heber <heber@…> (06/01/15 16:57:36)
git-committer:
Frederik Heber <heber@…> (07/24/15 16:44:34)
Message:

Replaced World::getAtom() wherever possible by const version.

  • some AtomSet member functions now have const atom ptr instead of atom ptr.
  • molecule can return const and non-const AtomSet.
  • added FromIdToConstAtom to allow iterate through atoms in molecule (which are stored by id, not by ptr) in const fashion.
  • in molecule::isInMolecule() is now const, ::CopyMolecule..() is non-const (because copying involves father atom who is stored non-const).
Location:
src/Fragmentation
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Fragmentation/Fragmentation.cpp

    r1259df rf01769  
    169169  // ===== 2. create AtomMask that takes Saturation condition into account
    170170  AtomMask_t AtomMask(atomids);
    171   for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) {
     171  for (molecule::const_iterator iter = const_cast<const molecule *>(mol)->begin();
     172      iter != const_cast<const molecule *>(mol)->end();
     173      ++iter) {
    172174    // remove in hydrogen and we do saturate
    173175    if ((treatment == ExcludeHydrogen) && ((*iter)->getType()->getAtomicNumber() == 1)) // skip hydrogen
     
    269271  // Construct the complete KeySet which we need for topmost level only (but for all Roots)
    270272  KeySet CompleteMolecule;
    271   for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) {
     273  for (molecule::const_iterator iter = const_cast<const molecule *>(mol)->begin();
     274      iter != const_cast<const molecule *>(mol)->end();
     275      ++iter) {
    272276    CompleteMolecule.insert((*iter)->GetTrueFather()->getNr());
    273277  }
     
    353357  int FragmentCount;
    354358  // get maximum bond degree
    355   for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) {
     359  for (molecule::const_iterator iter = const_cast<const molecule *>(mol)->begin();
     360      iter != const_cast<const molecule *>(mol)->end();
     361      ++iter) {
    356362    const BondList& ListOfBonds = (*iter)->getListOfBonds();
    357363    c = (ListOfBonds.size() > c) ? ListOfBonds.size() : c;
     
    442448  output << "INFO: Writing OrderAtSite " << ORDERATSITEFILE << " ... ";
    443449  if (file.good()) {
    444     for (molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) {
     450    for (molecule::const_iterator iter = const_cast<const molecule *>(mol)->begin();
     451        iter != const_cast<const molecule *>(mol)->end();
     452        ++iter) {
    445453      file << (*iter)->getId()
    446454          << "\t" << (int)(*iter)->AdaptiveOrder
     
    529537void Fragmentation::FillRootStackForSubgraphs(KeyStack &RootStack, const AtomMask_t &AtomMask)
    530538{
    531   for(molecule::const_iterator iter = mol->begin(); iter != mol->end(); ++iter) {
     539  for(molecule::const_iterator iter = const_cast<const molecule *>(mol)->begin();
     540      iter != const_cast<const molecule *>(mol)->end();
     541      ++iter) {
    532542    const atom * const Father = (*iter)->GetTrueFather();
    533543    if (AtomMask.isTrue(Father->getNr())) // apply mask
  • src/Fragmentation/Graph.cpp

    r1259df rf01769  
    265265        keyiter != iter->first.end(); ++keyiter) {
    266266      const size_t globalid = *keyiter;
    267       const atom *Walker = World::getInstance().getAtom(AtomById(globalid));
     267      const atom * const Walker = const_cast<const World &>(World::getInstance()).
     268          getAtom(AtomById(globalid));
    268269      if (Walker != NULL) {
    269270        if (Walker->getMolecule() != mol) {
  • src/Fragmentation/Homology/HomologyGraph_getFromKeyset.cpp

    r1259df rf01769  
    5959      iter != keyset.end(); ++iter) {
    6060//    LOG(2, "DEBUG: Current global id is " << *iter << ".");
    61     const atom *Walker = World::getInstance().getAtom(AtomById(*iter));
     61    const atom * const Walker = const_cast<const World &>(World::getInstance()).
     62        getAtom(AtomById(*iter));
    6263    if (Walker != NULL) {
    6364      size_t NoBonds = 0;
     
    6566      for (BondList::const_iterator bonditer = ListOfBonds.begin();
    6667          bonditer != ListOfBonds.end(); ++bonditer) {
    67         const atom *OtherWalker = (*bonditer)->GetOtherAtom(Walker);
     68        const atom * const OtherWalker = (*bonditer)->GetOtherAtom(Walker);
    6869        if (keyset.count(OtherWalker->getId()))
    6970          ++NoBonds;
     
    8990      iter != keyset.end(); ++iter) {
    9091//    LOG(2, "DEBUG: Current global id is " << *iter << ".");
    91     const atom *Walker = World::getInstance().getAtom(AtomById(*iter));
     92    const atom * const Walker = const_cast<const World &>(World::getInstance()).
     93        getAtom(AtomById(*iter));
    9294    if (Walker != NULL) {
    9395      const BondList& ListOfBonds = Walker->getListOfBonds();
    9496      for (BondList::const_iterator bonditer = ListOfBonds.begin();
    9597          bonditer != ListOfBonds.end(); ++bonditer) {
    96         const atom *OtherWalker = (*bonditer)->GetOtherAtom(Walker);
     98        const atom * const OtherWalker = (*bonditer)->GetOtherAtom(Walker);
    9799//        LOG(2, "DEBUG: Neighbor is " << OtherWalker->getId() << ".");
    98100        if ((keyset.count(OtherWalker->getId())) && (Walker->getId() < OtherWalker->getId())) {
Note: See TracChangeset for help on using the changeset viewer.