Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/WorldAction/ScaleBoxAction.cpp

    rce7fdc rcbfb9a  
    2222#include "atom.hpp"
    2323#include "CodePatterns/Log.hpp"
     24#include "LinearAlgebra/RealSpaceMatrix.hpp"
    2425#include "LinearAlgebra/Vector.hpp"
    25 #include "CodePatterns/Verbose.hpp"
    2626#include "World.hpp"
    2727#include "Box.hpp"
    28 #include "LinearAlgebra/RealSpaceMatrix.hpp"
    2928
    3029#include <iostream>
    3130#include <string>
     31#include <vector>
    3232
    3333#include "Actions/WorldAction/ScaleBoxAction.hpp"
     
    4545  getParametersfromValueStorage();
    4646
    47   DoLog(1) && (Log() << Verbose(1) << "Scaling all atomic positions by factor." << endl);
     47  // scale atoms
    4848  for (int i=0;i<NDIM;i++)
    4949    x[i] = params.Scaler[i];
    50   vector<atom*> AllAtoms = World::getInstance().getAllAtoms();
    51   for(vector<atom*>::iterator AtomRunner = AllAtoms.begin(); AtomRunner != AllAtoms.end(); ++AtomRunner) {
     50  std::vector<atom*> AllAtoms = World::getInstance().getAllAtoms();
     51  for(std::vector<atom*>::iterator AtomRunner = AllAtoms.begin(); AtomRunner != AllAtoms.end(); ++AtomRunner) {
    5252    (*AtomRunner)->ScaleAll(x);
    5353  }
    5454
     55  // scale box
    5556  RealSpaceMatrix M = World::getInstance().getDomain().getM();
    5657  RealSpaceMatrix scale;
    57 
    5858  for (int i=0;i<NDIM;i++) {
    59     scale.at(i,i) = x[i];
     59    scale.at(i,i) = params.Scaler[i];
    6060  }
    6161  M *= scale;
     
    6565  LOG(0, "Box domain is now " << World::getInstance().getDomain().getM());
    6666
    67   return Action::success;
     67  // create undo state
     68  WorldScaleBoxState *UndoState = new WorldScaleBoxState(params);
     69
     70  return Action::state_ptr(UndoState);
    6871}
    6972
    7073Action::state_ptr WorldScaleBoxAction::performUndo(Action::state_ptr _state) {
    71 //  ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());
     74  WorldScaleBoxState *state = assert_cast<WorldScaleBoxState*>(_state.get());
    7275
    73   return Action::failure;
    74 //  string newName = state->mol->getName();
    75 //  state->mol->setName(state->lastName);
    76 //
    77 //  return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));
     76  // scale back atoms
     77  double x[NDIM];
     78  for (int i=0;i<NDIM;i++)
     79    x[i] = 1./state->params.Scaler[i];
     80  vector<atom*> AllAtoms = World::getInstance().getAllAtoms();
     81  for(vector<atom*>::iterator AtomRunner = AllAtoms.begin(); AtomRunner != AllAtoms.end(); ++AtomRunner) {
     82    (*AtomRunner)->ScaleAll(x);
     83  }
     84
     85  // scale back box
     86  RealSpaceMatrix M = World::getInstance().getDomain().getM();
     87  RealSpaceMatrix scale;
     88  for (int i=0;i<NDIM;i++) {
     89    scale.at(i,i) = 1./state->params.Scaler[i];
     90  }
     91  M *= scale;
     92  World::getInstance().setDomain(M);
     93
     94  // give final box size
     95  LOG(0, "Box domain restored to " << World::getInstance().getDomain().getM());
     96
     97  return Action::state_ptr(_state);
    7898}
    7999
    80100Action::state_ptr WorldScaleBoxAction::performRedo(Action::state_ptr _state){
    81   return Action::failure;
     101  WorldScaleBoxState *state = assert_cast<WorldScaleBoxState*>(_state.get());
     102
     103  // scale atoms
     104  double x[NDIM];
     105  for (int i=0;i<NDIM;i++)
     106    x[i] = state->params.Scaler[i];
     107  vector<atom*> AllAtoms = World::getInstance().getAllAtoms();
     108  for(vector<atom*>::iterator AtomRunner = AllAtoms.begin(); AtomRunner != AllAtoms.end(); ++AtomRunner) {
     109    (*AtomRunner)->ScaleAll(x);
     110  }
     111
     112  // scale box
     113  RealSpaceMatrix M = World::getInstance().getDomain().getM();
     114  RealSpaceMatrix scale;
     115  for (int i=0;i<NDIM;i++) {
     116    scale.at(i,i) = state->params.Scaler[i];
     117  }
     118  M *= scale;
     119  World::getInstance().setDomain(M);
     120
     121  // give final box size
     122  LOG(0, "Box domain is again " << World::getInstance().getDomain().getM());
     123
     124  return Action::state_ptr(_state);
    82125}
    83126
    84127bool WorldScaleBoxAction::canUndo() {
    85   return false;
     128  return true;
    86129}
    87130
    88131bool WorldScaleBoxAction::shouldUndo() {
    89   return false;
     132  return true;
    90133}
    91134/** =========== end of function ====================== */
Note: See TracChangeset for help on using the changeset viewer.