| [bcf653] | 1 | /*
 | 
|---|
 | 2 |  * Project: MoleCuilder
 | 
|---|
 | 3 |  * Description: creates and alters molecular systems
 | 
|---|
| [0aa122] | 4 |  * Copyright (C)  2010-2012 University of Bonn. All rights reserved.
 | 
|---|
| [bcf653] | 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
 | 6 |  */
 | 
|---|
 | 7 | 
 | 
|---|
| [97ebf8] | 8 | /*
 | 
|---|
 | 9 |  * CenterInBoxAction.cpp
 | 
|---|
 | 10 |  *
 | 
|---|
 | 11 |  *  Created on: May 8, 2010
 | 
|---|
 | 12 |  *      Author: heber
 | 
|---|
 | 13 |  */
 | 
|---|
 | 14 | 
 | 
|---|
| [bf3817] | 15 | // include config.h
 | 
|---|
 | 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 17 | #include <config.h>
 | 
|---|
 | 18 | #endif
 | 
|---|
 | 19 | 
 | 
|---|
| [23526c] | 20 | // include headers that implement a archive in simple text format
 | 
|---|
 | 21 | #include <boost/archive/text_oarchive.hpp>
 | 
|---|
 | 22 | #include <boost/archive/text_iarchive.hpp>
 | 
|---|
 | 23 | #include "boost/serialization/vector.hpp"
 | 
|---|
 | 24 | 
 | 
|---|
| [ad011c] | 25 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| [112b09] | 26 | 
 | 
|---|
| [23526c] | 27 | #include <boost/shared_ptr.hpp>
 | 
|---|
 | 28 | 
 | 
|---|
| [4aece0] | 29 | #include "Box.hpp"
 | 
|---|
| [ad011c] | 30 | #include "CodePatterns/Log.hpp"
 | 
|---|
| [23526c] | 31 | #include "LinearAlgebra/MatrixContent.hpp"
 | 
|---|
| [3bd460a] | 32 | #include "LinearAlgebra/RealSpaceMatrix.hpp"
 | 
|---|
| [97ebf8] | 33 | #include "molecule.hpp"
 | 
|---|
 | 34 | #include "World.hpp"
 | 
|---|
 | 35 | 
 | 
|---|
 | 36 | #include <iostream>
 | 
|---|
 | 37 | #include <string>
 | 
|---|
| [23526c] | 38 | #include <vector>
 | 
|---|
| [97ebf8] | 39 | 
 | 
|---|
| [1fd675] | 40 | #include "Actions/WorldAction/CenterInBoxAction.hpp"
 | 
|---|
| [4aece0] | 41 | 
 | 
|---|
| [ce7fdc] | 42 | using namespace MoleCuilder;
 | 
|---|
 | 43 | 
 | 
|---|
| [1fd675] | 44 | // and construct the stuff
 | 
|---|
 | 45 | #include "CenterInBoxAction.def"
 | 
|---|
 | 46 | #include "Action_impl_pre.hpp"
 | 
|---|
 | 47 | /** =========== define the function ====================== */
 | 
|---|
| [4aece0] | 48 | Action::state_ptr WorldCenterInBoxAction::performCall() {
 | 
|---|
| [1fd675] | 49 |   // obtain information
 | 
|---|
 | 50 |   getParametersfromValueStorage();
 | 
|---|
| [4aece0] | 51 | 
 | 
|---|
| [23526c] | 52 |   // create undo state
 | 
|---|
 | 53 |   std::stringstream undostream;
 | 
|---|
 | 54 |   boost::archive::text_oarchive oa(undostream);
 | 
|---|
| [68c923] | 55 |   const RealSpaceMatrix &matrix = World::getInstance().getDomain().getM();
 | 
|---|
| [23526c] | 56 |   oa << matrix;
 | 
|---|
 | 57 |   std::vector< boost::shared_ptr<Vector> > OldPositions;
 | 
|---|
 | 58 |   std::vector<molecule*> AllMolecules = World::getInstance().getAllMolecules();
 | 
|---|
 | 59 |   for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin();
 | 
|---|
 | 60 |       MolRunner != AllMolecules.end();
 | 
|---|
 | 61 |       ++MolRunner) {
 | 
|---|
 | 62 |     for(molecule::const_iterator AtomRunner = (*MolRunner)->begin();
 | 
|---|
 | 63 |         AtomRunner != (*MolRunner)->end();
 | 
|---|
 | 64 |         ++AtomRunner) {
 | 
|---|
 | 65 |       OldPositions.push_back(
 | 
|---|
 | 66 |           boost::shared_ptr<Vector>(new Vector(
 | 
|---|
 | 67 |               (*AtomRunner)->getPosition()
 | 
|---|
 | 68 |               ))
 | 
|---|
 | 69 |           );
 | 
|---|
 | 70 |     }
 | 
|---|
 | 71 |   }
 | 
|---|
 | 72 | 
 | 
|---|
 | 73 |   // set new domain
 | 
|---|
| [1fd675] | 74 |   World::getInstance().setDomain(params.cell_size.getM());
 | 
|---|
| [4aece0] | 75 | 
 | 
|---|
| [23526c] | 76 |   // center atoms
 | 
|---|
 | 77 |   for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
 | 
|---|
| [4aece0] | 78 |     (*MolRunner)->CenterInBox();
 | 
|---|
| [97ebf8] | 79 |   }
 | 
|---|
| [3bd460a] | 80 | 
 | 
|---|
 | 81 |   // give final box size
 | 
|---|
 | 82 |   LOG(0, "Box domain is now " << World::getInstance().getDomain().getM());
 | 
|---|
 | 83 | 
 | 
|---|
| [23526c] | 84 |   // create undo state
 | 
|---|
 | 85 |   WorldCenterInBoxState *UndoState =
 | 
|---|
 | 86 |       new WorldCenterInBoxState(
 | 
|---|
 | 87 |           undostream.str(),
 | 
|---|
 | 88 |           OldPositions,
 | 
|---|
 | 89 |           params
 | 
|---|
 | 90 |           );
 | 
|---|
 | 91 | 
 | 
|---|
 | 92 |   return Action::state_ptr(UndoState);
 | 
|---|
| [97ebf8] | 93 | }
 | 
|---|
 | 94 | 
 | 
|---|
 | 95 | Action::state_ptr WorldCenterInBoxAction::performUndo(Action::state_ptr _state) {
 | 
|---|
| [23526c] | 96 |   WorldCenterInBoxState *state = assert_cast<WorldCenterInBoxState*>(_state.get());
 | 
|---|
 | 97 | 
 | 
|---|
 | 98 |   // restore domain
 | 
|---|
 | 99 |   RealSpaceMatrix matrix;
 | 
|---|
 | 100 |   std::stringstream undostream(state->undostring);
 | 
|---|
 | 101 |   boost::archive::text_iarchive ia(undostream);
 | 
|---|
 | 102 |   ia >> matrix;
 | 
|---|
 | 103 |   World::getInstance().setDomain(matrix);
 | 
|---|
 | 104 | 
 | 
|---|
 | 105 |   // place atoms on old positions
 | 
|---|
 | 106 |   std::vector< boost::shared_ptr<Vector> >::const_iterator OldPositionsIter = state->OldPositions.begin();
 | 
|---|
 | 107 |   std::vector<molecule*> AllMolecules = World::getInstance().getAllMolecules();
 | 
|---|
 | 108 |   for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin();
 | 
|---|
 | 109 |       MolRunner != AllMolecules.end();
 | 
|---|
 | 110 |       ++MolRunner) {
 | 
|---|
| [59fff1] | 111 |     for(molecule::iterator AtomRunner = (*MolRunner)->begin();
 | 
|---|
| [23526c] | 112 |         AtomRunner != (*MolRunner)->end();
 | 
|---|
 | 113 |         ++AtomRunner) {
 | 
|---|
 | 114 |       ASSERT(OldPositionsIter != state->OldPositions.end(),
 | 
|---|
 | 115 |           "WorldBoundInBoxAction::performUndo() - too few positions stored in UndoState.");
 | 
|---|
 | 116 |       (*AtomRunner)->setPosition(**(OldPositionsIter++));
 | 
|---|
 | 117 |     }
 | 
|---|
 | 118 |   }
 | 
|---|
 | 119 | 
 | 
|---|
 | 120 |   // give final box size
 | 
|---|
 | 121 |   LOG(0, "Box domain restored to " << World::getInstance().getDomain().getM());
 | 
|---|
| [97ebf8] | 122 | 
 | 
|---|
| [23526c] | 123 |   return Action::state_ptr(_state);
 | 
|---|
| [97ebf8] | 124 | }
 | 
|---|
 | 125 | 
 | 
|---|
 | 126 | Action::state_ptr WorldCenterInBoxAction::performRedo(Action::state_ptr _state){
 | 
|---|
| [23526c] | 127 |   WorldCenterInBoxState *state = assert_cast<WorldCenterInBoxState*>(_state.get());
 | 
|---|
 | 128 | 
 | 
|---|
 | 129 |   // set new domain
 | 
|---|
 | 130 |   World::getInstance().setDomain(state->params.cell_size.getM());
 | 
|---|
 | 131 | 
 | 
|---|
 | 132 |   // center atoms
 | 
|---|
 | 133 |   std::vector<molecule *> AllMolecules = World::getInstance().getAllMolecules();
 | 
|---|
 | 134 |   for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
 | 
|---|
 | 135 |     (*MolRunner)->CenterInBox();
 | 
|---|
 | 136 |   }
 | 
|---|
 | 137 | 
 | 
|---|
 | 138 |   // give final box size
 | 
|---|
 | 139 |   LOG(0, "Box domain is again " << World::getInstance().getDomain().getM());
 | 
|---|
 | 140 | 
 | 
|---|
 | 141 |   return Action::state_ptr(_state);
 | 
|---|
| [97ebf8] | 142 | }
 | 
|---|
 | 143 | 
 | 
|---|
 | 144 | bool WorldCenterInBoxAction::canUndo() {
 | 
|---|
| [23526c] | 145 |   return true;
 | 
|---|
| [97ebf8] | 146 | }
 | 
|---|
 | 147 | 
 | 
|---|
 | 148 | bool WorldCenterInBoxAction::shouldUndo() {
 | 
|---|
| [23526c] | 149 |   return true;
 | 
|---|
| [97ebf8] | 150 | }
 | 
|---|
| [1fd675] | 151 | /** =========== end of function ====================== */
 | 
|---|