Changeset 26b4d62 for src/Actions/SelectionAction
- Timestamp:
- Jun 27, 2014, 9:32:03 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:
- c73e35
- Parents:
- 0b6b77
- git-author:
- Frederik Heber <heber@…> (06/19/14 13:56:27)
- git-committer:
- Frederik Heber <heber@…> (06/27/14 21:32:03)
- Location:
- src/Actions/SelectionAction
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/SelectionAction/Atoms/AllAtomsInsideVolumeAction.cpp
r0b6b77 r26b4d62 61 61 std::vector<Shape*> selectedShapes = ShapeRegistry::getInstance().getSelectedShapes(); 62 62 if (selectedShapes.size() != 1){ 63 ELOG(1, "SelectionAllAtomsInsideVolumeAction::performCall(): there has to be exactly 1 selected shape.");63 STATUS("There has to be exactly 1 selected shape."); 64 64 return Action::failure; 65 65 } … … 74 74 75 75 std::vector<Shape*> selectedShapes = ShapeRegistry::getInstance().getSelectedShapes(); 76 if (selectedShapes.size() != 1)77 return Action::failure;78 76 World::getInstance().unselectAllAtoms(AtomsByShape(*selectedShapes[0])); 79 77 BOOST_FOREACH(atom *_atom, state->selectedAtoms) … … 87 85 88 86 std::vector<Shape*> selectedShapes = ShapeRegistry::getInstance().getSelectedShapes(); 89 if (selectedShapes.size() != 1)90 return Action::failure;91 87 World::getInstance().selectAllAtoms(AtomsByShape(*selectedShapes[0])); 92 88 -
src/Actions/SelectionAction/Atoms/AtomByIdAction.cpp
r0b6b77 r26b4d62 85 85 switch (status) { 86 86 case AtomMissing: 87 STATUS("Cannot find all atoms with given ids."); 87 88 return Action::failure; 88 89 break; -
src/Actions/SelectionAction/Atoms/AtomByOrderAction.cpp
r0b6b77 r26b4d62 65 65 } 66 66 } else { 67 STATUS("Cannot find atom by given order of "+toString(params.order.get())+"."); 67 68 return Action::failure; 68 69 } -
src/Actions/SelectionAction/Atoms/NotAllAtomsInsideVolumeAction.cpp
r0b6b77 r26b4d62 60 60 std::vector<Shape*> selectedShapes = ShapeRegistry::getInstance().getSelectedShapes(); 61 61 if (selectedShapes.size() != 1){ 62 ELOG(1, "SelectionNotAllAtomsInsideVolumeAction::performCall(): there has to be exactly 1 selected shape.");62 STATUS("There has to be exactly 1 selected shape."); 63 63 return Action::failure; 64 64 } … … 73 73 74 74 std::vector<Shape*> selectedShapes = ShapeRegistry::getInstance().getSelectedShapes(); 75 if (selectedShapes.size() != 1)76 return Action::failure;77 75 World::getInstance().selectAllAtoms(AtomsByShape(*selectedShapes[0])); 78 76 BOOST_FOREACH(atom *_atom, state->unselectedAtoms) … … 86 84 87 85 std::vector<Shape*> selectedShapes = ShapeRegistry::getInstance().getSelectedShapes(); 88 if (selectedShapes.size() != 1)89 return Action::failure;90 86 World::getInstance().unselectAllAtoms(AtomsByShape(*selectedShapes[0])); 91 87 -
src/Actions/SelectionAction/Atoms/NotAtomByIdAction.cpp
r0b6b77 r26b4d62 85 85 switch (status) { 86 86 case AtomMissing: 87 STATUS("Cannot find all atoms by given ids."); 87 88 return Action::failure; 88 89 break; -
src/Actions/SelectionAction/Atoms/NotAtomByOrderAction.cpp
r0b6b77 r26b4d62 65 65 } 66 66 } else { 67 STATUS("Cannot find atom by given order of "+toString(params.order.get())+"."); 67 68 return Action::failure; 68 69 } -
src/Actions/SelectionAction/Molecules/MoleculeByIdAction.cpp
r0b6b77 r26b4d62 64 64 } 65 65 } else { 66 STATUS("Cannot find molecule by given index "+toString(params.molindex.get())+"."); 66 67 return Action::failure; 67 68 } -
src/Actions/SelectionAction/Molecules/MoleculeByOrderAction.cpp
r0b6b77 r26b4d62 66 66 } 67 67 } else { 68 STATUS("Cannot find molecule by given index "+toString(params.molindex.get())+"."); 68 69 return Action::failure; 69 70 } -
src/Actions/SelectionAction/Molecules/NotMoleculeByIdAction.cpp
r0b6b77 r26b4d62 64 64 } 65 65 } else { 66 STATUS("Cannot find molecule by given index "+toString(params.molindex.get())+"."); 66 67 return Action::failure; 67 68 } -
src/Actions/SelectionAction/Molecules/NotMoleculeByOrderAction.cpp
r0b6b77 r26b4d62 66 66 } 67 67 } else { 68 STATUS("Cannot find molecule by given index "+toString(params.molindex.get())+"."); 68 69 return Action::failure; 69 70 } -
src/Actions/SelectionAction/Shapes/NotShapeByNameAction.cpp
r0b6b77 r26b4d62 62 62 } 63 63 } else { 64 STATUS("Cannot find shape by given name "+toString(params.shapeName.get())+"."); 64 65 return Action::failure; 65 66 } -
src/Actions/SelectionAction/Shapes/ShapeByNameAction.cpp
r0b6b77 r26b4d62 62 62 } 63 63 } else { 64 STATUS("Cannot find shape by given name "+toString(params.shapeName.get())+"."); 64 65 return Action::failure; 65 66 }
Note:
See TracChangeset
for help on using the changeset viewer.