Ignore:
Timestamp:
Sep 19, 2013, 8:23:52 PM (11 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:
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)
Message:

ActionState extracted into own header file, rename Action::state_ptr -> ActionState::ptr.

Location:
src/Actions/FillAction
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/FillAction/FillRegularGridAction.cpp

    rf92ef3 rb5b01e  
    7777#include "Action_impl_pre.hpp"
    7878/** =========== define the function ====================== */
    79 Action::state_ptr FillRegularGridAction::performCall() {
     79ActionState::ptr FillRegularGridAction::performCall() {
    8080  typedef std::vector<atom*> AtomVector;
    8181
     
    190190
    191191  if (successflag)
    192     return Action::state_ptr(UndoState);
     192    return ActionState::ptr(UndoState);
    193193  else
    194194    return Action::failure;
    195195}
    196196
    197 Action::state_ptr FillRegularGridAction::performUndo(Action::state_ptr _state) {
     197ActionState::ptr FillRegularGridAction::performUndo(ActionState::ptr _state) {
    198198  FillRegularGridState *state = assert_cast<FillRegularGridState*>(_state.get());
    199199
     
    203203  SetAtomsFromAtomicInfo(state->movedatoms);
    204204
    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
     208ActionState::ptr FillRegularGridAction::performRedo(ActionState::ptr _state){
    209209  FillRegularGridState *state = assert_cast<FillRegularGridState*>(_state.get());
    210210
     
    219219    AddBondsFromBondInfo(state->clonedbonds);
    220220  if (statusflag)
    221     return Action::state_ptr(_state);
     221    return ActionState::ptr(_state);
    222222  else
    223223    return Action::failure;
  • src/Actions/FillAction/FillSurfaceAction.cpp

    rf92ef3 rb5b01e  
    6767#include "Action_impl_pre.hpp"
    6868/** =========== define the function ====================== */
    69 Action::state_ptr FillSurfaceAction::performCall() {
     69ActionState::ptr FillSurfaceAction::performCall() {
    7070  // get the filler molecule
    7171  const std::vector< molecule *> molecules = World::getInstance().getSelectedMolecules();
     
    169169
    170170  if (successflag)
    171     return Action::state_ptr(UndoState);
     171    return ActionState::ptr(UndoState);
    172172  else
    173173    return Action::failure;
    174174}
    175175
    176 Action::state_ptr FillSurfaceAction::performUndo(Action::state_ptr _state) {
     176ActionState::ptr FillSurfaceAction::performUndo(ActionState::ptr _state) {
    177177  FillSurfaceState *state = assert_cast<FillSurfaceState*>(_state.get());
    178178
     
    182182  SetAtomsFromAtomicInfo(state->movedatoms);
    183183
    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
     187ActionState::ptr FillSurfaceAction::performRedo(ActionState::ptr _state){
    188188  FillSurfaceState *state = assert_cast<FillSurfaceState*>(_state.get());
    189189
     
    197197  statusflag = statusflag && AddBondsFromBondInfo(state->clonedbonds);
    198198  if (statusflag)
    199     return Action::state_ptr(_state);
     199    return ActionState::ptr(_state);
    200200  else
    201201    return Action::failure;
Note: See TracChangeset for help on using the changeset viewer.