Changeset 3213f2 for src/Actions
- Timestamp:
- Jan 14, 2015, 9:03:24 PM (10 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:
- a84e8d
- Parents:
- cad383
- git-author:
- Frederik Heber <heber@…> (12/19/14 16:37:06)
- git-committer:
- Frederik Heber <heber@…> (01/14/15 21:03:24)
- Location:
- src/Actions
- Files:
-
- 6 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/GlobalListOfActions.hpp
rcad383 r3213f2 127 127 (SelectionNotMoleculeByOrder) \ 128 128 (SelectionNotShapeByName) \ 129 (SelectionPopAtoms) \ 130 (SelectionPushAtoms) \ 129 131 (SelectionShapeByName) \ 130 132 (ShapeCombineShapes) \ -
src/Actions/GraphAction/SubgraphDissectionAction.cpp
rcad383 r3213f2 42 42 #include "Actions/GraphAction/UpdateMoleculesAction.hpp" 43 43 #include "Actions/GraphAction/SubgraphDissectionAction.hpp" 44 #include "Actions/SelectionAction/Atoms/PushAtomsAction.hpp" 45 #include "Actions/SelectionAction/Atoms/PopAtomsAction.hpp" 46 #include "Actions/SelectionAction/Atoms/AllAtomsAction.hpp" 44 47 #include "Actions/ActionQueue.hpp" 45 48 #include "Actions/ActionRegistry.hpp" … … 60 63 void GraphSubgraphDissectionAction::prepare(ActionRegistry &AR) 61 64 { 65 actions.addAction(AR.getActionByName(std::string("push-atom-selection"))); 62 66 actions.addAction(AR.getActionByName(std::string("select-all-atoms"))); 63 67 actions.addAction(AR.getActionByName(std::string("destroy-adjacency"))); 64 68 actions.addAction(AR.getActionByName(std::string("create-adjacency"))); 65 69 actions.addAction(AR.getActionByName(std::string("update-molecules"))); 70 actions.addAction(AR.getActionByName(std::string("pop-atom-selection"))); 66 71 isPrepared = true; 67 72 } … … 74 79 } 75 80 76 void reselectAtoms(const std::vector<atom *> &selected_atoms)77 {78 World::getInstance().clearAtomSelection();79 for (std::vector<atom *>::const_iterator iter = selected_atoms.begin();80 iter != selected_atoms.end();81 ++iter)82 World::getInstance().selectAtom(*iter);83 }84 85 81 ActionState::ptr GraphSubgraphDissectionAction::performCall(){ 86 // we need to "emulate" that all atoms have been selected without destroying87 // current selection88 const std::vector<atom *> selected_atoms = World::getInstance().getSelectedAtoms();89 82 ActionState::ptr state(MakroAction::performCall()); 90 reselectAtoms(selected_atoms);91 83 92 84 return state; … … 94 86 95 87 ActionState::ptr GraphSubgraphDissectionAction::performUndo(ActionState::ptr _state) { 96 // we need to "emulate" that all atoms have been selected without destroying97 // current selection98 const std::vector<atom *> selected_atoms = World::getInstance().getSelectedAtoms();99 88 ActionState::ptr state(MakroAction::performUndo(_state)); 100 reselectAtoms(selected_atoms);101 89 102 90 return state; … … 104 92 105 93 ActionState::ptr GraphSubgraphDissectionAction::performRedo(ActionState::ptr _state){ 106 // we need to "emulate" that all atoms have been selected without destroying107 // current selection108 const std::vector<atom *> selected_atoms = World::getInstance().getSelectedAtoms();109 94 ActionState::ptr state(MakroAction::performRedo(_state)); 110 reselectAtoms(selected_atoms);111 95 112 96 return state; -
src/Actions/Makefile.am
rcad383 r3213f2 415 415 Actions/SelectionAction/Atoms/NotAtomByElementAction.cpp \ 416 416 Actions/SelectionAction/Atoms/NotAtomByIdAction.cpp \ 417 Actions/SelectionAction/Atoms/NotAtomByOrderAction.cpp 417 Actions/SelectionAction/Atoms/NotAtomByOrderAction.cpp \ 418 Actions/SelectionAction/Atoms/PopAtomsAction.cpp \ 419 Actions/SelectionAction/Atoms/PushAtomsAction.cpp 418 420 SELECTIONATOMACTIONHEADER = \ 419 421 Actions/SelectionAction/Atoms/AllAtomsAction.hpp \ … … 430 432 Actions/SelectionAction/Atoms/NotAtomByElementAction.hpp \ 431 433 Actions/SelectionAction/Atoms/NotAtomByIdAction.hpp \ 432 Actions/SelectionAction/Atoms/NotAtomByOrderAction.hpp 434 Actions/SelectionAction/Atoms/NotAtomByOrderAction.hpp \ 435 Actions/SelectionAction/Atoms/PopAtomsAction.hpp \ 436 Actions/SelectionAction/Atoms/PushAtomsAction.hpp 433 437 SELECTIONATOMACTIONDEFS = \ 434 438 Actions/SelectionAction/Atoms/AllAtomsAction.def \ … … 445 449 Actions/SelectionAction/Atoms/NotAtomByElementAction.def \ 446 450 Actions/SelectionAction/Atoms/NotAtomByIdAction.def \ 447 Actions/SelectionAction/Atoms/NotAtomByOrderAction.def 451 Actions/SelectionAction/Atoms/NotAtomByOrderAction.def \ 452 Actions/SelectionAction/Atoms/PopAtomsAction.def \ 453 Actions/SelectionAction/Atoms/PushAtomsAction.def 448 454 449 455 SELECTIONMOLECULEACTIONSOURCE = \
Note:
See TracChangeset
for help on using the changeset viewer.