[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() {
|
---|
[23526c] | 49 | // create undo state
|
---|
| 50 | std::stringstream undostream;
|
---|
| 51 | boost::archive::text_oarchive oa(undostream);
|
---|
[68c923] | 52 | const RealSpaceMatrix &matrix = World::getInstance().getDomain().getM();
|
---|
[23526c] | 53 | oa << matrix;
|
---|
| 54 | std::vector< boost::shared_ptr<Vector> > OldPositions;
|
---|
| 55 | std::vector<molecule*> AllMolecules = World::getInstance().getAllMolecules();
|
---|
| 56 | for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin();
|
---|
| 57 | MolRunner != AllMolecules.end();
|
---|
| 58 | ++MolRunner) {
|
---|
| 59 | for(molecule::const_iterator AtomRunner = (*MolRunner)->begin();
|
---|
| 60 | AtomRunner != (*MolRunner)->end();
|
---|
| 61 | ++AtomRunner) {
|
---|
| 62 | OldPositions.push_back(
|
---|
| 63 | boost::shared_ptr<Vector>(new Vector(
|
---|
| 64 | (*AtomRunner)->getPosition()
|
---|
| 65 | ))
|
---|
| 66 | );
|
---|
| 67 | }
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | // set new domain
|
---|
[1fd675] | 71 | World::getInstance().setDomain(params.cell_size.getM());
|
---|
[4aece0] | 72 |
|
---|
[23526c] | 73 | // center atoms
|
---|
| 74 | for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
|
---|
[4aece0] | 75 | (*MolRunner)->CenterInBox();
|
---|
[97ebf8] | 76 | }
|
---|
[3bd460a] | 77 |
|
---|
| 78 | // give final box size
|
---|
| 79 | LOG(0, "Box domain is now " << World::getInstance().getDomain().getM());
|
---|
| 80 |
|
---|
[23526c] | 81 | // create undo state
|
---|
| 82 | WorldCenterInBoxState *UndoState =
|
---|
| 83 | new WorldCenterInBoxState(
|
---|
| 84 | undostream.str(),
|
---|
| 85 | OldPositions,
|
---|
| 86 | params
|
---|
| 87 | );
|
---|
| 88 |
|
---|
| 89 | return Action::state_ptr(UndoState);
|
---|
[97ebf8] | 90 | }
|
---|
| 91 |
|
---|
| 92 | Action::state_ptr WorldCenterInBoxAction::performUndo(Action::state_ptr _state) {
|
---|
[23526c] | 93 | WorldCenterInBoxState *state = assert_cast<WorldCenterInBoxState*>(_state.get());
|
---|
| 94 |
|
---|
| 95 | // restore domain
|
---|
| 96 | RealSpaceMatrix matrix;
|
---|
| 97 | std::stringstream undostream(state->undostring);
|
---|
| 98 | boost::archive::text_iarchive ia(undostream);
|
---|
| 99 | ia >> matrix;
|
---|
| 100 | World::getInstance().setDomain(matrix);
|
---|
| 101 |
|
---|
| 102 | // place atoms on old positions
|
---|
| 103 | std::vector< boost::shared_ptr<Vector> >::const_iterator OldPositionsIter = state->OldPositions.begin();
|
---|
| 104 | std::vector<molecule*> AllMolecules = World::getInstance().getAllMolecules();
|
---|
| 105 | for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin();
|
---|
| 106 | MolRunner != AllMolecules.end();
|
---|
| 107 | ++MolRunner) {
|
---|
[59fff1] | 108 | for(molecule::iterator AtomRunner = (*MolRunner)->begin();
|
---|
[23526c] | 109 | AtomRunner != (*MolRunner)->end();
|
---|
| 110 | ++AtomRunner) {
|
---|
| 111 | ASSERT(OldPositionsIter != state->OldPositions.end(),
|
---|
| 112 | "WorldBoundInBoxAction::performUndo() - too few positions stored in UndoState.");
|
---|
| 113 | (*AtomRunner)->setPosition(**(OldPositionsIter++));
|
---|
| 114 | }
|
---|
| 115 | }
|
---|
| 116 |
|
---|
| 117 | // give final box size
|
---|
| 118 | LOG(0, "Box domain restored to " << World::getInstance().getDomain().getM());
|
---|
[97ebf8] | 119 |
|
---|
[23526c] | 120 | return Action::state_ptr(_state);
|
---|
[97ebf8] | 121 | }
|
---|
| 122 |
|
---|
| 123 | Action::state_ptr WorldCenterInBoxAction::performRedo(Action::state_ptr _state){
|
---|
[23526c] | 124 | WorldCenterInBoxState *state = assert_cast<WorldCenterInBoxState*>(_state.get());
|
---|
| 125 |
|
---|
| 126 | // set new domain
|
---|
| 127 | World::getInstance().setDomain(state->params.cell_size.getM());
|
---|
| 128 |
|
---|
| 129 | // center atoms
|
---|
| 130 | std::vector<molecule *> AllMolecules = World::getInstance().getAllMolecules();
|
---|
| 131 | for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
|
---|
| 132 | (*MolRunner)->CenterInBox();
|
---|
| 133 | }
|
---|
| 134 |
|
---|
| 135 | // give final box size
|
---|
| 136 | LOG(0, "Box domain is again " << World::getInstance().getDomain().getM());
|
---|
| 137 |
|
---|
| 138 | return Action::state_ptr(_state);
|
---|
[97ebf8] | 139 | }
|
---|
| 140 |
|
---|
| 141 | bool WorldCenterInBoxAction::canUndo() {
|
---|
[23526c] | 142 | return true;
|
---|
[97ebf8] | 143 | }
|
---|
| 144 |
|
---|
| 145 | bool WorldCenterInBoxAction::shouldUndo() {
|
---|
[23526c] | 146 | return true;
|
---|
[97ebf8] | 147 | }
|
---|
[1fd675] | 148 | /** =========== end of function ====================== */
|
---|