1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
5 | *
|
---|
6 | *
|
---|
7 | * This file is part of MoleCuilder.
|
---|
8 | *
|
---|
9 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
10 | * it under the terms of the GNU General Public License as published by
|
---|
11 | * the Free Software Foundation, either version 2 of the License, or
|
---|
12 | * (at your option) any later version.
|
---|
13 | *
|
---|
14 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
17 | * GNU General Public License for more details.
|
---|
18 | *
|
---|
19 | * You should have received a copy of the GNU General Public License
|
---|
20 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
21 | */
|
---|
22 |
|
---|
23 | /*
|
---|
24 | * CenterOnEdgeAction.cpp
|
---|
25 | *
|
---|
26 | * Created on: May 8, 2010
|
---|
27 | * Author: heber
|
---|
28 | */
|
---|
29 |
|
---|
30 | // include config.h
|
---|
31 | #ifdef HAVE_CONFIG_H
|
---|
32 | #include <config.h>
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | // include headers that implement a archive in simple text format
|
---|
36 | #include <boost/archive/text_oarchive.hpp>
|
---|
37 | #include <boost/archive/text_iarchive.hpp>
|
---|
38 | #include "boost/serialization/vector.hpp"
|
---|
39 |
|
---|
40 | #include "CodePatterns/MemDebug.hpp"
|
---|
41 |
|
---|
42 | #include "Atom/atom.hpp"
|
---|
43 | #include "CodePatterns/Log.hpp"
|
---|
44 | #include "LinearAlgebra/MatrixContent.hpp"
|
---|
45 | #include "LinearAlgebra/RealSpaceMatrix.hpp"
|
---|
46 | #include "LinearAlgebra/Vector.hpp"
|
---|
47 | #include "molecule.hpp"
|
---|
48 | #include "World.hpp"
|
---|
49 |
|
---|
50 | #include <iostream>
|
---|
51 | #include <string>
|
---|
52 | #include <vector>
|
---|
53 |
|
---|
54 | #include "Actions/WorldAction/CenterOnEdgeAction.hpp"
|
---|
55 |
|
---|
56 | using namespace MoleCuilder;
|
---|
57 |
|
---|
58 | // and construct the stuff
|
---|
59 | #include "CenterOnEdgeAction.def"
|
---|
60 | #include "Action_impl_pre.hpp"
|
---|
61 | /** =========== define the function ====================== */
|
---|
62 | ActionState::ptr WorldCenterOnEdgeAction::performCall() {
|
---|
63 | Vector Min;
|
---|
64 | Vector Max;
|
---|
65 |
|
---|
66 | // create undo state
|
---|
67 | std::stringstream undostream;
|
---|
68 | boost::archive::text_oarchive oa(undostream);
|
---|
69 | const RealSpaceMatrix &matrix = World::getInstance().getDomain().getM();
|
---|
70 | oa << matrix;
|
---|
71 | std::vector< boost::shared_ptr<Vector> > OldPositions;
|
---|
72 | std::vector<atom *> AllAtoms = World::getInstance().getAllAtoms();
|
---|
73 | for (std::vector<atom *>::iterator AtomRunner = AllAtoms.begin(); AtomRunner != AllAtoms.end(); ++AtomRunner)
|
---|
74 | OldPositions.push_back(
|
---|
75 | boost::shared_ptr<Vector>(new Vector(
|
---|
76 | (*AtomRunner)->getPosition()
|
---|
77 | ))
|
---|
78 | );
|
---|
79 |
|
---|
80 | // get maximum and minimum
|
---|
81 | if (AllAtoms.empty()) {
|
---|
82 | ELOG(2, "For WorldCenterOnEdgeAction atoms must be present.");
|
---|
83 | return Action::failure;
|
---|
84 | }
|
---|
85 | std::vector<atom *>::iterator AtomRunner = AllAtoms.begin();
|
---|
86 | Min = (*AtomRunner)->getPosition();
|
---|
87 | Max = (*AtomRunner)->getPosition();
|
---|
88 | for (; AtomRunner != AllAtoms.end(); ++AtomRunner) {
|
---|
89 | for (int i=0;i<NDIM;i++) {
|
---|
90 | if ((*AtomRunner)->at(i) > Max[i])
|
---|
91 | Max[i] = (*AtomRunner)->at(i);
|
---|
92 | if ((*AtomRunner)->at(i) < Min[i])
|
---|
93 | Min[i] = (*AtomRunner)->at(i);
|
---|
94 | }
|
---|
95 | }
|
---|
96 | // set new box size
|
---|
97 | RealSpaceMatrix domain;
|
---|
98 | for (int i=0;i<NDIM;i++) {
|
---|
99 | double tmp = Max[i]-Min[i];
|
---|
100 | tmp = fabs(tmp)>=1. ? tmp : 1.0;
|
---|
101 | domain.at(i,i) = tmp;
|
---|
102 | }
|
---|
103 | World::getInstance().setDomain(domain);
|
---|
104 | // translate all atoms, such that Min is aty (0,0,0)
|
---|
105 | for (std::vector<atom*>::iterator AtomRunner = AllAtoms.begin(); AtomRunner != AllAtoms.end(); ++AtomRunner)
|
---|
106 | *(*AtomRunner) -= Min;
|
---|
107 |
|
---|
108 | // give final box size
|
---|
109 | LOG(0, "Box domain is now " << World::getInstance().getDomain().getM());
|
---|
110 |
|
---|
111 | // create undo state
|
---|
112 | WorldCenterOnEdgeState *UndoState =
|
---|
113 | new WorldCenterOnEdgeState(
|
---|
114 | undostream.str(),
|
---|
115 | Min,
|
---|
116 | Max,
|
---|
117 | params
|
---|
118 | );
|
---|
119 |
|
---|
120 | return ActionState::ptr(UndoState);
|
---|
121 | }
|
---|
122 |
|
---|
123 | ActionState::ptr WorldCenterOnEdgeAction::performUndo(ActionState::ptr _state) {
|
---|
124 | WorldCenterOnEdgeState *state = assert_cast<WorldCenterOnEdgeState*>(_state.get());
|
---|
125 |
|
---|
126 | // restore domain
|
---|
127 | RealSpaceMatrix matrix;
|
---|
128 | std::stringstream undostream(state->undostring);
|
---|
129 | boost::archive::text_iarchive ia(undostream);
|
---|
130 | ia >> matrix;
|
---|
131 | World::getInstance().setDomain(matrix);
|
---|
132 |
|
---|
133 | // translate all atoms back
|
---|
134 | std::vector<atom *> AllAtoms = World::getInstance().getAllAtoms();
|
---|
135 | for (vector<atom*>::iterator AtomRunner = AllAtoms.begin();
|
---|
136 | AtomRunner != AllAtoms.end();
|
---|
137 | ++AtomRunner)
|
---|
138 | *(*AtomRunner) += state->Min;
|
---|
139 |
|
---|
140 | // give final box size
|
---|
141 | LOG(0, "Box domain restored to " << World::getInstance().getDomain().getM());
|
---|
142 |
|
---|
143 | return ActionState::ptr(_state);
|
---|
144 | }
|
---|
145 |
|
---|
146 | ActionState::ptr WorldCenterOnEdgeAction::performRedo(ActionState::ptr _state){
|
---|
147 | WorldCenterOnEdgeState *state = assert_cast<WorldCenterOnEdgeState*>(_state.get());
|
---|
148 |
|
---|
149 | // set new box size
|
---|
150 | RealSpaceMatrix rmatrix;
|
---|
151 | for (int i=0;i<NDIM;i++) {
|
---|
152 | double tmp = state->Max[i]-state->Min[i];
|
---|
153 | tmp = fabs(tmp)>=1. ? tmp : 1.0;
|
---|
154 | rmatrix.at(i,i) = tmp;
|
---|
155 | }
|
---|
156 | World::getInstance().setDomain(rmatrix);
|
---|
157 | // translate all atoms, such that Min is aty (0,0,0)
|
---|
158 | std::vector<atom *> AllAtoms = World::getInstance().getAllAtoms();
|
---|
159 | for (vector<atom*>::iterator AtomRunner = AllAtoms.begin();
|
---|
160 | AtomRunner != AllAtoms.end();
|
---|
161 | ++AtomRunner)
|
---|
162 | *(*AtomRunner) -= state->Min;
|
---|
163 |
|
---|
164 | // give final box size
|
---|
165 | LOG(0, "Box domain is again " << World::getInstance().getDomain().getM());
|
---|
166 |
|
---|
167 | return ActionState::ptr(_state);
|
---|
168 | }
|
---|
169 |
|
---|
170 | bool WorldCenterOnEdgeAction::canUndo() {
|
---|
171 | return true;
|
---|
172 | }
|
---|
173 |
|
---|
174 | bool WorldCenterOnEdgeAction::shouldUndo() {
|
---|
175 | return true;
|
---|
176 | }
|
---|
177 | /** =========== end of function ====================== */
|
---|