Changeset 9d613f for src/Actions
- Timestamp:
- Nov 7, 2011, 12:24:05 PM (13 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:
- 874597
- Parents:
- f27fa7
- git-author:
- Frederik Heber <heber@…> (10/10/11 14:18:16)
- git-committer:
- Frederik Heber <heber@…> (11/07/11 12:24:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/WorldAction/RepeatBoxAction.cpp
rf27fa7 r9d613f 47 47 void repeatMoleculesinDomain(Vector Repeater, const std::vector<molecule *> &AllMolecules) 48 48 { 49 int count;50 const element ** Elements;51 int j = 0;52 atom *Walker = NULL;53 MoleculeListClass *molecules = World::getInstance().getMolecules();54 55 49 LOG(0, "STATUS: Repeating box " << Repeater << " times for (x,y,z) axis."); 56 50 … … 75 69 molecule *newmol = NULL; 76 70 std::vector<Vector> vectors; 71 MoleculeListClass *molecules = World::getInstance().getMolecules(); 77 72 for (n[0] = 0; n[0] < Repeater[0]; n[0]++) { 78 73 y[0] = n[0]; … … 84 79 continue; 85 80 for (vector<molecule *>::const_iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) { 86 const molecule *mol = *MolRunner; 87 LOG(2, "INFO: Current mol is " << mol->name << "."); 88 count = mol->getAtomCount(); // is changed becausing of adding, thus has to be stored away beforehand 89 if (count != 0) { // if there is more than none 90 Elements = new const element *[count]; 91 vectors.resize(count); 92 j = 0; 93 for(molecule::const_iterator AtomRunner = mol->begin(); AtomRunner != mol->end(); ++AtomRunner) { 94 Elements[j] = (*AtomRunner)->getType(); 95 vectors[j] = (*AtomRunner)->getPosition(); 96 j++; 97 } 98 if (count != j) 99 ELOG(1, "AtomCount " << count << " is not equal to number of atoms in molecule " << j << "!"); 100 x = y; 101 x *= M; 102 newmol = World::getInstance().createMolecule(); 103 // TODO: Remove this when World don't has deprecated MoleculeListClass anymore 104 molecules->insert(newmol); 105 for (int k=count;k--;) { // go through every atom of the original cell 106 Walker = World::getInstance().createAtom(); // create a new body 107 Walker->setPosition((vectors[k]) + x); 108 Walker->setType(Elements[k]); // insert original element 109 cout << "new atom is " << *Walker << endl; 110 newmol->AddAtom(Walker); // and add to the molecule (which increments ElementsInMolecule, AtomCount, ...) 111 } 112 // free memory 113 delete[](Elements); 114 } else { 115 LOG(1, "\t ... is empty."); 116 } 81 molecule * const mol = *MolRunner; 82 DoLog(1) && (Log() << Verbose(1) << "Current mol is " << mol->name << "." << endl); 83 newmol = mol->CopyMolecule(); 84 // TODO: remove this when World does not have MoleculeListClass anymore. 85 molecules->insert(newmol); 86 x = y; 87 x *= M; 88 // shift each atom into new position 89 for(molecule::iterator iter = newmol->begin(); iter != newmol->end(); ++iter) 90 (*iter)->setPosition((*iter)->getPosition() + x); 117 91 } 118 92 } … … 122 96 123 97 Action::state_ptr WorldRepeatBoxAction::performCall() { 124 molecule *mol = NULL;125 126 98 // obtain information 127 99 getParametersfromValueStorage(); 128 100 129 101 std::vector<molecule *> AllMolecules; 130 if (mol != NULL) { 131 LOG(0, "Using molecule " << mol->name << "."); 132 AllMolecules = World::getInstance().getAllMolecules(MoleculeByPtr(mol)); 133 } else { 134 LOG(0, "Using all molecules."); 135 AllMolecules = World::getInstance().getAllMolecules(); 136 } 102 DoLog(0) && (Log() << Verbose(0) << "Using all molecules." << endl); 103 AllMolecules = World::getInstance().getAllMolecules(); 137 104 138 105 // prepare undo state
Note:
See TracChangeset
for help on using the changeset viewer.