Changeset 9d83b6 for src/Actions


Ignore:
Timestamp:
Feb 24, 2011, 6:51:32 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:
a2bdbe
Parents:
c0d9eb
git-author:
Frederik Heber <heber@…> (02/24/11 14:41:13)
git-committer:
Frederik Heber <heber@…> (02/24/11 18:51:32)
Message:

BondedParticleInfo now has vector<BondList>

  • vector<BondList> ListOfBonds is private, getter for (non-)const access.
  • Access everywhere to ListOfBonds replaced by respective getter.
  • Access is as of now always to time step zero.
  • greatest impact is on molecule... files, and ListOfBondsUnitTest.
Location:
src/Actions
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/FragmentationAction/ConstructBondGraphAction.cpp

    rc0d9eb r9d83b6  
    3232#include "molecule.hpp"
    3333#include "World.hpp"
     34#include "WorldTime.hpp"
    3435
    3536#include <iostream>
     
    6768  // remove every bond from the selected atoms' list
    6869  int AtomCount = 0;
    69   for (World::AtomSelectionIterator AtomRunner = World::getInstance().beginAtomSelection(); AtomRunner != World::getInstance().endAtomSelection(); ++AtomRunner) {
     70  for (World::AtomSelectionIterator AtomRunner = World::getInstance().beginAtomSelection();
     71      AtomRunner != World::getInstance().endAtomSelection();
     72      ++AtomRunner) {
    7073    AtomCount++;
    71     for(BondList::iterator BondRunner = (AtomRunner->second)->ListOfBonds.begin(); !(AtomRunner->second)->ListOfBonds.empty(); BondRunner = (AtomRunner->second)->ListOfBonds.begin())
     74    BondList& ListOfBonds = (AtomRunner->second)->getListOfBonds();
     75    for(BondList::iterator BondRunner = ListOfBonds.begin();
     76        !ListOfBonds.empty();
     77        BondRunner = ListOfBonds.begin())
    7278      if ((*BondRunner)->leftatom == AtomRunner->second)
    7379        delete((*BondRunner));
     
    8187    DoLog(2) && (Log() << Verbose(2) << "Creating Linked Cell structure ... " << endl);
    8288    LinkedCell::LinkedNodes list;
    83     for (World::AtomSelectionIterator AtomRunner = World::getInstance().beginAtomSelection(); AtomRunner != World::getInstance().endAtomSelection(); ++AtomRunner) {
     89    for (World::AtomSelectionIterator AtomRunner = World::getInstance().beginAtomSelection();
     90        AtomRunner != World::getInstance().endAtomSelection();
     91        ++AtomRunner) {
    8492      list.push_back(AtomRunner->second);
    8593    }
     
    92100    std::map<TesselPoint *, int> AtomIds;
    93101    int i=0;
    94     for (World::AtomSelectionIterator AtomRunner = World::getInstance().beginAtomSelection(); AtomRunner != World::getInstance().endAtomSelection(); ++AtomRunner) {
     102    for (World::AtomSelectionIterator AtomRunner = World::getInstance().beginAtomSelection();
     103        AtomRunner != World::getInstance().endAtomSelection();
     104        ++AtomRunner) {
    95105      AtomIds.insert(pair<TesselPoint *, int> (AtomRunner->second, i++) );
    96106    }
     
    104114//          Log() << Verbose(2) << "Current cell is " << LC->n[0] << ", " << LC->n[1] << ", " << LC->n[2] << " with No. " << LC->index << " containing " << List->size() << " points." << endl;
    105115          if (List != NULL) {
    106             for (LinkedCell::LinkedNodes::const_iterator Runner = List->begin(); Runner != List->end(); Runner++) {
     116            for (LinkedCell::LinkedNodes::const_iterator Runner = List->begin();
     117                Runner != List->end();
     118                Runner++) {
    107119              Walker = dynamic_cast<atom*>(*Runner);
    108120              ASSERT(Walker,"Tesselpoint that was not an atom retrieved from LinkedNode");
  • src/Actions/FragmentationAction/SubgraphDissectionAction.cpp

    rc0d9eb r9d83b6  
    7878    vector <atom *> allatoms = World::getInstance().getAllAtoms();
    7979    for(vector<atom *>::iterator AtomRunner = allatoms.begin(); AtomRunner != allatoms.end(); ++AtomRunner) {
    80       BondCount += (*AtomRunner)->ListOfBonds.size();
    81 //      for(BondList::iterator BondRunner = (*AtomRunner)->ListOfBonds.begin(); !(*AtomRunner)->ListOfBonds.empty(); BondRunner = (*AtomRunner)->ListOfBonds.begin())
     80      const BondList& ListOfBonds = (*AtomRunner)->getListOfBonds();
     81      BondCount += ListOfBonds.size();
     82//      for(BondList::iterator BondRunner = ListOfBonds.begin();
     83//          !ListOfBonds.empty();
     84//          BondRunner = ListOfBonds.begin()) {
    8285//        delete(*BondRunner);
     86//      }
    8387      mol->AddAtom(*AtomRunner);
    8488    }
  • src/Actions/MoleculeAction/CopyAction.cpp

    rc0d9eb r9d83b6  
    5959  MoleculeCopyState *state = assert_cast<MoleculeCopyState*>(_state.get());
    6060
    61   for (molecule::iterator AtomRunner = state->copy->begin(); !state->copy->empty(); AtomRunner = state->copy->begin()) {
    62     for(BondList::iterator BondRunner = (*AtomRunner)->ListOfBonds.begin(); !(*AtomRunner)->ListOfBonds.empty(); BondRunner = (*AtomRunner)->ListOfBonds.begin())
     61  for (molecule::iterator AtomRunner = state->copy->begin();
     62      !state->copy->empty();
     63      AtomRunner = state->copy->begin()) {
     64    BondList& ListOfBonds = (*AtomRunner)->getListOfBonds();
     65    for(BondList::iterator BondRunner = ListOfBonds.begin();
     66        !ListOfBonds.empty();
     67        BondRunner = ListOfBonds.begin()) {
    6368      delete(*BondRunner);
     69    }
    6470    atom *Walker = *AtomRunner;
    6571    state->copy->erase(AtomRunner);
Note: See TracChangeset for help on using the changeset viewer.