Changeset 23526c
- Timestamp:
- Oct 14, 2011, 10:41:09 AM (13 years ago)
- 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:
- de7d1d
- Parents:
- e670e4
- git-author:
- Frederik Heber <heber@…> (09/14/11 15:46:05)
- git-committer:
- Frederik Heber <heber@…> (10/14/11 10:41:09)
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/WorldAction/CenterInBoxAction.cpp
re670e4 r23526c 18 18 #endif 19 19 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 20 25 #include "CodePatterns/MemDebug.hpp" 26 27 #include <boost/shared_ptr.hpp> 21 28 22 29 #include "Box.hpp" 23 30 #include "CodePatterns/Log.hpp" 31 #include "LinearAlgebra/MatrixContent.hpp" 24 32 #include "LinearAlgebra/RealSpaceMatrix.hpp" 25 33 #include "molecule.hpp" … … 28 36 #include <iostream> 29 37 #include <string> 38 #include <vector> 30 39 31 40 #include "Actions/WorldAction/CenterInBoxAction.hpp" … … 41 50 getParametersfromValueStorage(); 42 51 52 // create undo state 53 std::stringstream undostream; 54 boost::archive::text_oarchive oa(undostream); 55 RealSpaceMatrix matrix(World::getInstance().getDomain().getM()); 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 43 74 World::getInstance().setDomain(params.cell_size.getM()); 44 75 45 // center 46 vector<molecule *> AllMolecules = World::getInstance().getAllMolecules(); 47 for (vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) { 76 // center atoms 77 for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) { 48 78 (*MolRunner)->CenterInBox(); 49 79 } … … 52 82 LOG(0, "Box domain is now " << World::getInstance().getDomain().getM()); 53 83 54 return Action::success; 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); 55 93 } 56 94 57 95 Action::state_ptr WorldCenterInBoxAction::performUndo(Action::state_ptr _state) { 58 // ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());96 WorldCenterInBoxState *state = assert_cast<WorldCenterInBoxState*>(_state.get()); 59 97 60 return Action::failure; 61 // string newName = state->mol->getName(); 62 // state->mol->setName(state->lastName); 63 // 64 // return Action::state_ptr(new ParserLoadXyzState(state->mol,newName)); 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) { 111 for(molecule::const_iterator AtomRunner = (*MolRunner)->begin(); 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()); 122 123 return Action::state_ptr(_state); 65 124 } 66 125 67 126 Action::state_ptr WorldCenterInBoxAction::performRedo(Action::state_ptr _state){ 68 return Action::failure; 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); 69 142 } 70 143 71 144 bool WorldCenterInBoxAction::canUndo() { 72 return false;145 return true; 73 146 } 74 147 75 148 bool WorldCenterInBoxAction::shouldUndo() { 76 return false;149 return true; 77 150 } 78 151 /** =========== end of function ====================== */ -
src/Actions/WorldAction/CenterInBoxAction.def
re670e4 r23526c 9 9 #include "Actions/Values.hpp" 10 10 #include "Box.hpp" 11 #include "LinearAlgebra/Vector.hpp" 12 #include <boost/shared_ptr.hpp> 11 13 12 14 // i.e. there is an integer with variable name Z that can be found in … … 19 21 #define paramreferences (cell_size) 20 22 21 # undef statetypes22 # undef statereferences23 #define statetypes (std::string)(std::vector< boost::shared_ptr<Vector> >) 24 #define statereferences (undostring)(OldPositions) 23 25 24 26 // some defines for all the names, you may use ACTION, STATE and PARAMS -
tests/regression/Domain/CenterInBox/testsuite-domain-center-in-box.at
re670e4 r23526c 15 15 16 16 AT_SETUP([Domain - setting and centering in domain with Undo]) 17 AT_XFAIL_IF([/bin/true])18 17 AT_KEYWORDS([domain center-in-box undo]) 19 18 … … 22 21 AT_CHECK([chmod u+w $file], 0) 23 22 AT_CHECK([../../molecuilder -i $file -b "15, 0, 15, 0, 0, 15" --undo], 0, [stdout], [stderr]) 24 AT_CHECK([fgrep "Box domain is now" stdout], 0, [ignore], [ignore])25 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/post/test .conf], 0, [stdout], [stderr])23 AT_CHECK([fgrep "Box domain restored to" stdout], 0, [ignore], [ignore]) 24 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/post/test-undo.conf], 0, [stdout], [stderr]) 26 25 27 26 AT_CLEANUP … … 29 28 30 29 AT_SETUP([Domain - setting and centering in domain with Redo]) 31 AT_XFAIL_IF([/bin/true])32 30 AT_KEYWORDS([domain center-in-box redo]) 33 31 … … 36 34 AT_CHECK([chmod u+w $file], 0) 37 35 AT_CHECK([../../molecuilder -i $file -b "15, 0, 15, 0, 0, 15" --undo --redo], 0, [stdout], [stderr]) 38 AT_CHECK([fgrep "Box domain is now" stdout], 0, [ignore], [ignore])36 AT_CHECK([fgrep "Box domain is again" stdout], 0, [ignore], [ignore]) 39 37 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/post/test.conf], 0, [stdout], [stderr]) 40 38
Note:
See TracChangeset
for help on using the changeset viewer.