| [bcf653] | 1 | /*
 | 
|---|
 | 2 |  * Project: MoleCuilder
 | 
|---|
 | 3 |  * Description: creates and alters molecular systems
 | 
|---|
| [0aa122] | 4 |  * Copyright (C)  2010-2012 University of Bonn. All rights reserved.
 | 
|---|
| [94d5ac6] | 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/>.
 | 
|---|
| [bcf653] | 21 |  */
 | 
|---|
 | 22 | 
 | 
|---|
| [97ebf8] | 23 | /*
 | 
|---|
 | 24 |  * CenterOnEdgeAction.cpp
 | 
|---|
 | 25 |  *
 | 
|---|
 | 26 |  *  Created on: May 8, 2010
 | 
|---|
 | 27 |  *      Author: heber
 | 
|---|
 | 28 |  */
 | 
|---|
 | 29 | 
 | 
|---|
| [bf3817] | 30 | // include config.h
 | 
|---|
 | 31 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 32 | #include <config.h>
 | 
|---|
 | 33 | #endif
 | 
|---|
 | 34 | 
 | 
|---|
| [de7d1d] | 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 | 
 | 
|---|
| [ad011c] | 40 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| [112b09] | 41 | 
 | 
|---|
| [6f0841] | 42 | #include "Atom/atom.hpp"
 | 
|---|
| [ad011c] | 43 | #include "CodePatterns/Log.hpp"
 | 
|---|
| [de7d1d] | 44 | #include "LinearAlgebra/MatrixContent.hpp"
 | 
|---|
 | 45 | #include "LinearAlgebra/RealSpaceMatrix.hpp"
 | 
|---|
| [57f243] | 46 | #include "LinearAlgebra/Vector.hpp"
 | 
|---|
| [de7d1d] | 47 | #include "molecule.hpp"
 | 
|---|
| [97ebf8] | 48 | #include "World.hpp"
 | 
|---|
 | 49 | 
 | 
|---|
 | 50 | #include <iostream>
 | 
|---|
 | 51 | #include <string>
 | 
|---|
| [de7d1d] | 52 | #include <vector>
 | 
|---|
| [97ebf8] | 53 | 
 | 
|---|
| [1fd675] | 54 | #include "Actions/WorldAction/CenterOnEdgeAction.hpp"
 | 
|---|
| [1ba67d] | 55 | 
 | 
|---|
| [ce7fdc] | 56 | using namespace MoleCuilder;
 | 
|---|
 | 57 | 
 | 
|---|
| [1fd675] | 58 | // and construct the stuff
 | 
|---|
 | 59 | #include "CenterOnEdgeAction.def"
 | 
|---|
 | 60 | #include "Action_impl_pre.hpp"
 | 
|---|
 | 61 | /** =========== define the function ====================== */
 | 
|---|
| [b5b01e] | 62 | ActionState::ptr WorldCenterOnEdgeAction::performCall() {
 | 
|---|
| [97ebf8] | 63 |   Vector Min;
 | 
|---|
 | 64 |   Vector Max;
 | 
|---|
 | 65 | 
 | 
|---|
| [de7d1d] | 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 | 
 | 
|---|
| [1ba67d] | 80 |   // get maximum and minimum
 | 
|---|
| [afbbfeb] | 81 |   if (AllAtoms.empty()) {
 | 
|---|
| [26b4d62] | 82 |     STATUS("There are no atoms present.");
 | 
|---|
| [afbbfeb] | 83 |     return Action::failure;
 | 
|---|
 | 84 |   }
 | 
|---|
| [de7d1d] | 85 |   std::vector<atom *>::iterator AtomRunner = AllAtoms.begin();
 | 
|---|
| [d74077] | 86 |   Min = (*AtomRunner)->getPosition();
 | 
|---|
 | 87 |   Max = (*AtomRunner)->getPosition();
 | 
|---|
| [1ba67d] | 88 |   for (; AtomRunner != AllAtoms.end(); ++AtomRunner) {
 | 
|---|
| [97ebf8] | 89 |     for (int i=0;i<NDIM;i++) {
 | 
|---|
| [d74077] | 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);
 | 
|---|
| [97ebf8] | 94 |     }
 | 
|---|
 | 95 |   }
 | 
|---|
| [1ba67d] | 96 |   // set new box size
 | 
|---|
| [cca9ef] | 97 |   RealSpaceMatrix domain;
 | 
|---|
| [1ba67d] | 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)
 | 
|---|
| [de7d1d] | 105 |   for (std::vector<atom*>::iterator AtomRunner = AllAtoms.begin(); AtomRunner != AllAtoms.end(); ++AtomRunner)
 | 
|---|
| [d74077] | 106 |     *(*AtomRunner) -= Min;
 | 
|---|
| [1ba67d] | 107 | 
 | 
|---|
| [3bd460a] | 108 |   // give final box size
 | 
|---|
 | 109 |   LOG(0, "Box domain is now " << World::getInstance().getDomain().getM());
 | 
|---|
 | 110 | 
 | 
|---|
| [de7d1d] | 111 |   // create undo state
 | 
|---|
 | 112 |   WorldCenterOnEdgeState *UndoState =
 | 
|---|
 | 113 |       new WorldCenterOnEdgeState(
 | 
|---|
 | 114 |           undostream.str(),
 | 
|---|
 | 115 |           Min,
 | 
|---|
 | 116 |           Max,
 | 
|---|
 | 117 |           params
 | 
|---|
 | 118 |           );
 | 
|---|
 | 119 | 
 | 
|---|
| [b5b01e] | 120 |   return ActionState::ptr(UndoState);
 | 
|---|
| [97ebf8] | 121 | }
 | 
|---|
 | 122 | 
 | 
|---|
| [b5b01e] | 123 | ActionState::ptr WorldCenterOnEdgeAction::performUndo(ActionState::ptr _state) {
 | 
|---|
| [de7d1d] | 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());
 | 
|---|
| [97ebf8] | 142 | 
 | 
|---|
| [b5b01e] | 143 |   return ActionState::ptr(_state);
 | 
|---|
| [97ebf8] | 144 | }
 | 
|---|
 | 145 | 
 | 
|---|
| [b5b01e] | 146 | ActionState::ptr WorldCenterOnEdgeAction::performRedo(ActionState::ptr _state){
 | 
|---|
| [de7d1d] | 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 | 
 | 
|---|
| [b5b01e] | 167 |   return ActionState::ptr(_state);
 | 
|---|
| [97ebf8] | 168 | }
 | 
|---|
 | 169 | 
 | 
|---|
 | 170 | bool WorldCenterOnEdgeAction::canUndo() {
 | 
|---|
| [de7d1d] | 171 |   return true;
 | 
|---|
| [97ebf8] | 172 | }
 | 
|---|
 | 173 | 
 | 
|---|
 | 174 | bool WorldCenterOnEdgeAction::shouldUndo() {
 | 
|---|
| [de7d1d] | 175 |   return true;
 | 
|---|
| [97ebf8] | 176 | }
 | 
|---|
| [1fd675] | 177 | /** =========== end of function ====================== */
 | 
|---|