Changeset 9d83b6 for src/Actions
- Timestamp:
- Feb 24, 2011, 6:51:32 PM (14 years ago)
- 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)
- Location:
- src/Actions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/ConstructBondGraphAction.cpp
rc0d9eb r9d83b6 32 32 #include "molecule.hpp" 33 33 #include "World.hpp" 34 #include "WorldTime.hpp" 34 35 35 36 #include <iostream> … … 67 68 // remove every bond from the selected atoms' list 68 69 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) { 70 73 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()) 72 78 if ((*BondRunner)->leftatom == AtomRunner->second) 73 79 delete((*BondRunner)); … … 81 87 DoLog(2) && (Log() << Verbose(2) << "Creating Linked Cell structure ... " << endl); 82 88 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) { 84 92 list.push_back(AtomRunner->second); 85 93 } … … 92 100 std::map<TesselPoint *, int> AtomIds; 93 101 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) { 95 105 AtomIds.insert(pair<TesselPoint *, int> (AtomRunner->second, i++) ); 96 106 } … … 104 114 // Log() << Verbose(2) << "Current cell is " << LC->n[0] << ", " << LC->n[1] << ", " << LC->n[2] << " with No. " << LC->index << " containing " << List->size() << " points." << endl; 105 115 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++) { 107 119 Walker = dynamic_cast<atom*>(*Runner); 108 120 ASSERT(Walker,"Tesselpoint that was not an atom retrieved from LinkedNode"); -
src/Actions/FragmentationAction/SubgraphDissectionAction.cpp
rc0d9eb r9d83b6 78 78 vector <atom *> allatoms = World::getInstance().getAllAtoms(); 79 79 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()) { 82 85 // delete(*BondRunner); 86 // } 83 87 mol->AddAtom(*AtomRunner); 84 88 } -
src/Actions/MoleculeAction/CopyAction.cpp
rc0d9eb r9d83b6 59 59 MoleculeCopyState *state = assert_cast<MoleculeCopyState*>(_state.get()); 60 60 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()) { 63 68 delete(*BondRunner); 69 } 64 70 atom *Walker = *AtomRunner; 65 71 state->copy->erase(AtomRunner);
Note:
See TracChangeset
for help on using the changeset viewer.