Changeset cbfb9a


Ignore:
Timestamp:
Oct 14, 2011, 10:48:21 AM (13 years ago)
Author:
Frederik Heber <heber@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
34fbb3
Parents:
7b4a29
git-author:
Frederik Heber <heber@…> (09/14/11 16:12:12)
git-committer:
Frederik Heber <heber@…> (10/14/11 10:48:21)
Message:

Added Undo/Redo capabilities to ScaleBoxAction.

  • adapted regression tests.
Files:
1 added
2 edited

Legend:

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

    r7b4a29 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 ====================== */
  • tests/regression/Domain/ScaleBox/testsuite-domain-scale-box.at

    r7b4a29 rcbfb9a  
    1515
    1616AT_SETUP([Domain - scaling box with Undo])
    17 AT_XFAIL_IF([/bin/true])
    1817AT_KEYWORDS([domain scale-box undo])
    1918
     
    2322AT_CHECK([../../molecuilder -i $file  --scale-box "0.5, 1., 0.9" --undo], 0, [stdout], [stderr])
    2423AT_CHECK([fgrep "Box domain is now" stdout], 0, [ignore], [ignore])
    25 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/ScaleBox/post/test.conf], 0, [stdout], [stderr])
     24AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/ScaleBox/post/test-undo.conf], 0, [stdout], [stderr])
    2625
    2726AT_CLEANUP
     
    2928
    3029AT_SETUP([Domain - scaling box with Redo])
    31 AT_XFAIL_IF([/bin/true])
    3230AT_KEYWORDS([domain scale-box redo])
    3331
Note: See TracChangeset for help on using the changeset viewer.