source: src/Actions/WorldAction/RepeatBoxAction.cpp@ eb0d77

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
Last change on this file since eb0d77 was e1f414, checked in by Frederik Heber <heber@…>, 13 years ago

FIX: RepeatBoxAction requires std::vector< unsigned int > for parameter Repeater.

  • Property mode set to 100644
File size: 5.4 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
6 */
7
8/*
9 * RepeatBoxAction.cpp
10 *
11 * Created on: May 12, 2010
12 * Author: heber
13 */
14
15// include config.h
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20#include "CodePatterns/MemDebug.hpp"
21
22#include "Descriptors/MoleculePtrDescriptor.hpp"
23#include "Atom/atom.hpp"
24#include "CodePatterns/Log.hpp"
25#include "molecule.hpp"
26#include "MoleculeListClass.hpp"
27#include "LinearAlgebra/Vector.hpp"
28#include "LinearAlgebra/RealSpaceMatrix.hpp"
29#include "CodePatterns/Verbose.hpp"
30#include "World.hpp"
31#include "Box.hpp"
32
33#include <iostream>
34#include <set>
35#include <string>
36#include <vector>
37
38#include "Actions/WorldAction/RepeatBoxAction.hpp"
39
40using namespace MoleCuilder;
41
42// and construct the stuff
43#include "RepeatBoxAction.def"
44#include "Action_impl_pre.hpp"
45/** =========== define the function ====================== */
46
47void repeatMoleculesinDomain(
48 std::vector< unsigned int > Repeater,
49 const std::vector<molecule *> &AllMolecules)
50{
51 LOG(0, "STATUS: Repeating box " << Repeater << " times for (x,y,z) axis.");
52
53 // set new domain
54 RealSpaceMatrix M = World::getInstance().getDomain().getM();
55 RealSpaceMatrix newM = M;
56 Vector x,y;
57 unsigned int n[NDIM];
58 RealSpaceMatrix repMat;
59 for (unsigned int axis = 0; axis < NDIM; axis++) {
60 Repeater[axis] = floor(Repeater[axis]);
61 if (Repeater[axis] < 1) {
62 ELOG(1, "Repetition factor must be greater than 1!");
63 Repeater[axis] = 1;
64 }
65 repMat.at(axis,axis) = Repeater[axis];
66 }
67 newM *= repMat;
68 World::getInstance().setDomain(newM);
69
70 // add molecules in each repeated domain part
71 molecule *newmol = NULL;
72 std::vector<Vector> vectors;
73 MoleculeListClass *molecules = World::getInstance().getMolecules();
74 for (n[0] = 0; n[0] < Repeater[0]; n[0]++) {
75 y[0] = n[0];
76 for (n[1] = 0; n[1] < Repeater[1]; n[1]++) {
77 y[1] = n[1];
78 for (n[2] = 0; n[2] < Repeater[2]; n[2]++) {
79 y[2] = n[2];
80 if ((n[0] == 0) && (n[1] == 0) && (n[2] == 0))
81 continue;
82 for (vector<molecule *>::const_iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
83 molecule * const mol = *MolRunner;
84 DoLog(1) && (Log() << Verbose(1) << "Current mol is " << mol->name << "." << endl);
85 newmol = mol->CopyMolecule();
86 // TODO: remove this when World does not have MoleculeListClass anymore.
87 molecules->insert(newmol);
88 x = y;
89 x *= M;
90 // shift each atom into new position
91 for(molecule::iterator iter = newmol->begin(); iter != newmol->end(); ++iter)
92 (*iter)->setPosition((*iter)->getPosition() + x);
93 }
94 }
95 }
96 }
97}
98
99Action::state_ptr WorldRepeatBoxAction::performCall() {
100 std::vector<molecule *> AllMolecules;
101 DoLog(0) && (Log() << Verbose(0) << "Using all molecules." << endl);
102 AllMolecules = World::getInstance().getAllMolecules();
103
104 // prepare undo state
105 RealSpaceMatrix olddomain = World::getInstance().getDomain().getM();
106 std::set<molecule *> oldmolecules;
107 for(std::vector<molecule *>::const_iterator iter = AllMolecules.begin();
108 iter != AllMolecules.end();
109 ++iter)
110 oldmolecules.insert(*iter);
111 WorldRepeatBoxState *undostate = new WorldRepeatBoxState(olddomain, oldmolecules, params);
112
113 repeatMoleculesinDomain(params.Repeater.get(), AllMolecules);
114
115 // give final box size
116 LOG(0, "Box domain is now " << World::getInstance().getDomain().getM());
117
118 return Action::state_ptr(undostate);
119}
120
121Action::state_ptr WorldRepeatBoxAction::performUndo(Action::state_ptr _state) {
122 WorldRepeatBoxState *state = assert_cast<WorldRepeatBoxState*>(_state.get());
123 MoleculeListClass *molecules = World::getInstance().getMolecules();
124
125 // set old domain
126 World::getInstance().setDomain(state->olddomain);
127
128 // remove all added molecules (and their atoms)
129 std::vector<molecule *> allmolecules = World::getInstance().getAllMolecules();
130 for (std::vector<molecule *>::iterator iter = allmolecules.begin();
131 iter != allmolecules.end();
132 ++iter) {
133 if (state->oldmolecules.find(*iter) == state->oldmolecules.end()) {
134 (*iter)->removeAtomsinMolecule();
135 // TODO: Remove this when World don't has deprecated MoleculeListClass anymore
136 molecules->erase(*iter);
137 World::getInstance().destroyMolecule(*iter);
138 }
139 }
140
141 // give final box size
142 LOG(0, "Box domain restored to " << World::getInstance().getDomain().getM());
143
144 return Action::state_ptr(_state);
145}
146
147Action::state_ptr WorldRepeatBoxAction::performRedo(Action::state_ptr _state){
148 WorldRepeatBoxState *state = assert_cast<WorldRepeatBoxState*>(_state.get());
149
150 std::vector<molecule *> originalmolecules;
151 for(std::set<molecule *>::const_iterator iter = state->oldmolecules.begin();
152 iter != state->oldmolecules.end();
153 ++iter)
154 originalmolecules.push_back(*iter);
155 repeatMoleculesinDomain(state->params.Repeater.get(), originalmolecules);
156
157 // give final box size
158 LOG(0, "Box domain is again " << World::getInstance().getDomain().getM());
159
160 return Action::state_ptr(_state);
161}
162
163bool WorldRepeatBoxAction::canUndo() {
164 return true;
165}
166
167bool WorldRepeatBoxAction::shouldUndo() {
168 return true;
169}
170/** =========== end of function ====================== */
Note: See TracBrowser for help on using the repository browser.