Changeset b5b01e for src/Actions/FillAction
- Timestamp:
- Sep 19, 2013, 8:23:52 PM (11 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:
- 6367dd
- Parents:
- f92ef3
- git-author:
- Frederik Heber <heber@…> (08/19/13 19:04:10)
- git-committer:
- Frederik Heber <heber@…> (09/19/13 20:23:52)
- Location:
- src/Actions/FillAction
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FillAction/FillRegularGridAction.cpp
rf92ef3 rb5b01e 77 77 #include "Action_impl_pre.hpp" 78 78 /** =========== define the function ====================== */ 79 Action ::state_ptr FillRegularGridAction::performCall() {79 ActionState::ptr FillRegularGridAction::performCall() { 80 80 typedef std::vector<atom*> AtomVector; 81 81 … … 190 190 191 191 if (successflag) 192 return Action ::state_ptr(UndoState);192 return ActionState::ptr(UndoState); 193 193 else 194 194 return Action::failure; 195 195 } 196 196 197 Action ::state_ptr FillRegularGridAction::performUndo(Action::state_ptr _state) {197 ActionState::ptr FillRegularGridAction::performUndo(ActionState::ptr _state) { 198 198 FillRegularGridState *state = assert_cast<FillRegularGridState*>(_state.get()); 199 199 … … 203 203 SetAtomsFromAtomicInfo(state->movedatoms); 204 204 205 return Action ::state_ptr(_state);206 } 207 208 Action ::state_ptr FillRegularGridAction::performRedo(Action::state_ptr _state){205 return ActionState::ptr(_state); 206 } 207 208 ActionState::ptr FillRegularGridAction::performRedo(ActionState::ptr _state){ 209 209 FillRegularGridState *state = assert_cast<FillRegularGridState*>(_state.get()); 210 210 … … 219 219 AddBondsFromBondInfo(state->clonedbonds); 220 220 if (statusflag) 221 return Action ::state_ptr(_state);221 return ActionState::ptr(_state); 222 222 else 223 223 return Action::failure; -
src/Actions/FillAction/FillSurfaceAction.cpp
rf92ef3 rb5b01e 67 67 #include "Action_impl_pre.hpp" 68 68 /** =========== define the function ====================== */ 69 Action ::state_ptr FillSurfaceAction::performCall() {69 ActionState::ptr FillSurfaceAction::performCall() { 70 70 // get the filler molecule 71 71 const std::vector< molecule *> molecules = World::getInstance().getSelectedMolecules(); … … 169 169 170 170 if (successflag) 171 return Action ::state_ptr(UndoState);171 return ActionState::ptr(UndoState); 172 172 else 173 173 return Action::failure; 174 174 } 175 175 176 Action ::state_ptr FillSurfaceAction::performUndo(Action::state_ptr _state) {176 ActionState::ptr FillSurfaceAction::performUndo(ActionState::ptr _state) { 177 177 FillSurfaceState *state = assert_cast<FillSurfaceState*>(_state.get()); 178 178 … … 182 182 SetAtomsFromAtomicInfo(state->movedatoms); 183 183 184 return Action ::state_ptr(_state);185 } 186 187 Action ::state_ptr FillSurfaceAction::performRedo(Action::state_ptr _state){184 return ActionState::ptr(_state); 185 } 186 187 ActionState::ptr FillSurfaceAction::performRedo(ActionState::ptr _state){ 188 188 FillSurfaceState *state = assert_cast<FillSurfaceState*>(_state.get()); 189 189 … … 197 197 statusflag = statusflag && AddBondsFromBondInfo(state->clonedbonds); 198 198 if (statusflag) 199 return Action ::state_ptr(_state);199 return ActionState::ptr(_state); 200 200 else 201 201 return Action::failure;
Note:
See TracChangeset
for help on using the changeset viewer.