Changeset 3b7dfb
- Timestamp:
- Jul 26, 2010, 5:15:04 PM (14 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:
- 628b52
- Parents:
- 215b89
- Location:
- src/Actions/SelectionAction
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/SelectionAction/AllAtomsAction.cpp
r215b89 r3b7dfb 9 9 10 10 #include "Actions/SelectionAction/AllAtomsAction.hpp" 11 #include "Actions/ActionCalls.hpp" 11 12 #include "Descriptors/AtomDescriptor.hpp" 12 13 #include "atom.hpp" … … 43 44 SelectionAllAtomsAction::~SelectionAllAtomsAction() 44 45 {} 46 47 void SelectionAllAtoms() { 48 ActionRegistry::getInstance().getActionByName(SelectionAllAtomsAction::NAME)->call(Action::NonInteractive); 49 }; 45 50 46 51 Dialog* SelectionAllAtomsAction::createDialog() { -
src/Actions/SelectionAction/AllAtomsAction.hpp
r215b89 r3b7dfb 12 12 13 13 class SelectionAllAtomsAction : public Action { 14 friend void SelectionAllAtoms(); 15 14 16 public: 15 17 SelectionAllAtomsAction(); -
src/Actions/SelectionAction/AllMoleculesAction.cpp
r215b89 r3b7dfb 9 9 10 10 #include "Actions/SelectionAction/AllMoleculesAction.hpp" 11 #include "Actions/ActionCalls.hpp" 11 12 #include "Descriptors/MoleculeDescriptor.hpp" 12 13 #include "atom.hpp" … … 43 44 SelectionAllMoleculesAction::~SelectionAllMoleculesAction() 44 45 {} 46 47 void SelectionAllMolecules() { 48 ActionRegistry::getInstance().getActionByName(SelectionAllMoleculesAction::NAME)->call(Action::NonInteractive); 49 }; 45 50 46 51 Dialog* SelectionAllMoleculesAction::createDialog() { -
src/Actions/SelectionAction/AllMoleculesAction.hpp
r215b89 r3b7dfb 12 12 13 13 class SelectionAllMoleculesAction : public Action { 14 friend void SelectionAllMolecules(); 15 14 16 public: 15 17 SelectionAllMoleculesAction(); -
src/Actions/SelectionAction/AtomByIdAction.cpp
r215b89 r3b7dfb 9 9 10 10 #include "Actions/SelectionAction/AtomByIdAction.hpp" 11 #include "Actions/ActionCalls.hpp" 11 12 #include "atom.hpp" 12 13 #include "log.hpp" … … 42 43 SelectionAtomByIdAction::~SelectionAtomByIdAction() 43 44 {} 45 46 void SelectionAtomById(atom *_atom) { 47 ValueStorage::getInstance().setCurrentValue(SelectionAtomByIdAction::NAME, _atom); 48 ActionRegistry::getInstance().getActionByName(SelectionAtomByIdAction::NAME)->call(Action::NonInteractive); 49 }; 44 50 45 51 Dialog* SelectionAtomByIdAction::createDialog() { -
src/Actions/SelectionAction/AtomByIdAction.hpp
r215b89 r3b7dfb 11 11 #include "Actions/Action.hpp" 12 12 13 class atom; 14 13 15 class SelectionAtomByIdAction : public Action { 16 friend void SelectionAtomById(atom *_atom); 17 14 18 public: 15 19 SelectionAtomByIdAction(); -
src/Actions/SelectionAction/MoleculeByIdAction.cpp
r215b89 r3b7dfb 9 9 10 10 #include "Actions/SelectionAction/MoleculeByIdAction.hpp" 11 #include "Actions/ActionCalls.hpp" 11 12 #include "molecule.hpp" 12 13 #include "log.hpp" … … 42 43 SelectionMoleculeByIdAction::~SelectionMoleculeByIdAction() 43 44 {} 45 46 void SelectionMoleculeById(molecule *_mol) { 47 ValueStorage::getInstance().setCurrentValue(SelectionMoleculeByIdAction::NAME, _mol); 48 ActionRegistry::getInstance().getActionByName(SelectionMoleculeByIdAction::NAME)->call(Action::NonInteractive); 49 }; 44 50 45 51 Dialog* SelectionMoleculeByIdAction::createDialog() { -
src/Actions/SelectionAction/MoleculeByIdAction.hpp
r215b89 r3b7dfb 11 11 #include "Actions/Action.hpp" 12 12 13 class molecule; 14 13 15 class SelectionMoleculeByIdAction : public Action { 16 friend void SelectionMoleculeById(molecule *_mol); 17 14 18 public: 15 19 SelectionMoleculeByIdAction(); -
src/Actions/SelectionAction/NotAllAtomsAction.cpp
r215b89 r3b7dfb 9 9 10 10 #include "Actions/SelectionAction/NotAllAtomsAction.hpp" 11 #include "Actions/ActionCalls.hpp" 11 12 #include "Descriptors/AtomDescriptor.hpp" 12 13 #include "atom.hpp" … … 43 44 SelectionNotAllAtomsAction::~SelectionNotAllAtomsAction() 44 45 {} 46 47 void SelectionNotAllAtoms() { 48 ActionRegistry::getInstance().getActionByName(SelectionNotAllAtomsAction::NAME)->call(Action::NonInteractive); 49 }; 45 50 46 51 Dialog* SelectionNotAllAtomsAction::createDialog() { -
src/Actions/SelectionAction/NotAllAtomsAction.hpp
r215b89 r3b7dfb 12 12 13 13 class SelectionNotAllAtomsAction : public Action { 14 friend void SelectionNotAllAtoms(); 15 14 16 public: 15 17 SelectionNotAllAtomsAction(); -
src/Actions/SelectionAction/NotAllMoleculesAction.cpp
r215b89 r3b7dfb 9 9 10 10 #include "Actions/SelectionAction/NotAllMoleculesAction.hpp" 11 #include "Actions/ActionCalls.hpp" 11 12 #include "Descriptors/MoleculeDescriptor.hpp" 12 13 #include "atom.hpp" … … 43 44 SelectionNotAllMoleculesAction::~SelectionNotAllMoleculesAction() 44 45 {} 46 47 void SelectionNotAllMolecules() { 48 ActionRegistry::getInstance().getActionByName(SelectionNotAllMoleculesAction::NAME)->call(Action::NonInteractive); 49 }; 45 50 46 51 Dialog* SelectionNotAllMoleculesAction::createDialog() { -
src/Actions/SelectionAction/NotAllMoleculesAction.hpp
r215b89 r3b7dfb 12 12 13 13 class SelectionNotAllMoleculesAction : public Action { 14 friend void SelectionNotAllMolecules(); 15 14 16 public: 15 17 SelectionNotAllMoleculesAction(); -
src/Actions/SelectionAction/NotAtomByIdAction.cpp
r215b89 r3b7dfb 9 9 10 10 #include "Actions/SelectionAction/NotAtomByIdAction.hpp" 11 #include "Actions/ActionCalls.hpp" 11 12 #include "atom.hpp" 12 13 #include "log.hpp" … … 42 43 SelectionNotAtomByIdAction::~SelectionNotAtomByIdAction() 43 44 {} 45 46 void SelectionNotAtomById(atom *_atom) { 47 ValueStorage::getInstance().setCurrentValue(SelectionNotAtomByIdAction::NAME, _atom); 48 ActionRegistry::getInstance().getActionByName(SelectionNotAtomByIdAction::NAME)->call(Action::NonInteractive); 49 }; 44 50 45 51 Dialog* SelectionNotAtomByIdAction::createDialog() { -
src/Actions/SelectionAction/NotAtomByIdAction.hpp
r215b89 r3b7dfb 11 11 #include "Actions/Action.hpp" 12 12 13 class atom; 14 13 15 class SelectionNotAtomByIdAction : public Action { 16 friend void SelectionNotAtomById(atom *_atom); 17 14 18 public: 15 19 SelectionNotAtomByIdAction(); -
src/Actions/SelectionAction/NotMoleculeByIdAction.cpp
r215b89 r3b7dfb 9 9 10 10 #include "Actions/SelectionAction/NotMoleculeByIdAction.hpp" 11 #include "Actions/ActionCalls.hpp" 11 12 #include "molecule.hpp" 12 13 #include "log.hpp" … … 42 43 SelectionNotMoleculeByIdAction::~SelectionNotMoleculeByIdAction() 43 44 {} 45 46 void SelectionNotMoleculeById(molecule *_mol) { 47 ValueStorage::getInstance().setCurrentValue(SelectionNotMoleculeByIdAction::NAME, _mol); 48 ActionRegistry::getInstance().getActionByName(SelectionNotMoleculeByIdAction::NAME)->call(Action::NonInteractive); 49 }; 44 50 45 51 Dialog* SelectionNotMoleculeByIdAction::createDialog() { -
src/Actions/SelectionAction/NotMoleculeByIdAction.hpp
r215b89 r3b7dfb 11 11 #include "Actions/Action.hpp" 12 12 13 class molecule; 14 13 15 class SelectionNotMoleculeByIdAction : public Action { 16 friend void SelectionNotMoleculeById(molecule *_mol); 17 14 18 public: 15 19 SelectionNotMoleculeByIdAction();
Note:
See TracChangeset
for help on using the changeset viewer.