Changeset b5b01e for src/Actions/AnalysisAction
- Timestamp:
- Sep 19, 2013, 8:23:52 PM (12 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/AnalysisAction
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/AnalysisAction/DipoleAngularCorrelationAction.cpp
rf92ef3 rb5b01e 59 59 60 60 /** =========== define the function ====================== */ 61 Action ::state_ptr AnalysisDipoleAngularCorrelationAction::performCall() {61 ActionState::ptr AnalysisDipoleAngularCorrelationAction::performCall() { 62 62 //int ranges[3] = {1, 1, 1}; 63 63 string type; … … 141 141 } 142 142 143 Action ::state_ptr AnalysisDipoleAngularCorrelationAction::performUndo(Action::state_ptr _state) {143 ActionState::ptr AnalysisDipoleAngularCorrelationAction::performUndo(ActionState::ptr _state) { 144 144 return Action::success; 145 145 } 146 146 147 Action ::state_ptr AnalysisDipoleAngularCorrelationAction::performRedo(Action::state_ptr _state){147 ActionState::ptr AnalysisDipoleAngularCorrelationAction::performRedo(ActionState::ptr _state){ 148 148 return Action::success; 149 149 } -
src/Actions/AnalysisAction/DipoleCorrelationAction.cpp
rf92ef3 rb5b01e 55 55 56 56 /** =========== define the function ====================== */ 57 Action ::state_ptr AnalysisDipoleCorrelationAction::performCall() {57 ActionState::ptr AnalysisDipoleCorrelationAction::performCall() { 58 58 //int ranges[3] = {1, 1, 1}; 59 59 ofstream output; … … 80 80 } 81 81 82 Action ::state_ptr AnalysisDipoleCorrelationAction::performUndo(Action::state_ptr _state) {82 ActionState::ptr AnalysisDipoleCorrelationAction::performUndo(ActionState::ptr _state) { 83 83 return Action::success; 84 84 } 85 85 86 Action ::state_ptr AnalysisDipoleCorrelationAction::performRedo(Action::state_ptr _state){86 ActionState::ptr AnalysisDipoleCorrelationAction::performRedo(ActionState::ptr _state){ 87 87 return Action::success; 88 88 } -
src/Actions/AnalysisAction/MolecularVolumeAction.cpp
rf92ef3 rb5b01e 57 57 58 58 /** =========== define the function ====================== */ 59 Action ::state_ptr AnalysisMolecularVolumeAction::performCall() {59 ActionState::ptr AnalysisMolecularVolumeAction::performCall() { 60 60 // execute action 61 61 for (World::MoleculeSelectionIterator iter = World::getInstance().beginMoleculeSelection(); iter != World::getInstance().endMoleculeSelection(); ++iter) { … … 81 81 } 82 82 83 Action ::state_ptr AnalysisMolecularVolumeAction::performUndo(Action::state_ptr _state) {83 ActionState::ptr AnalysisMolecularVolumeAction::performUndo(ActionState::ptr _state) { 84 84 return Action::success; 85 85 } 86 86 87 Action ::state_ptr AnalysisMolecularVolumeAction::performRedo(Action::state_ptr _state){87 ActionState::ptr AnalysisMolecularVolumeAction::performRedo(ActionState::ptr _state){ 88 88 return Action::success; 89 89 } -
src/Actions/AnalysisAction/PairCorrelationAction.cpp
rf92ef3 rb5b01e 58 58 59 59 /** =========== define the function ====================== */ 60 Action ::state_ptr AnalysisPairCorrelationAction::performCall() {60 ActionState::ptr AnalysisPairCorrelationAction::performCall() { 61 61 ofstream output; 62 62 ofstream binoutput; … … 92 92 } 93 93 94 Action ::state_ptr AnalysisPairCorrelationAction::performUndo(Action::state_ptr _state) {94 ActionState::ptr AnalysisPairCorrelationAction::performUndo(ActionState::ptr _state) { 95 95 return Action::success; 96 96 } 97 97 98 Action ::state_ptr AnalysisPairCorrelationAction::performRedo(Action::state_ptr _state){98 ActionState::ptr AnalysisPairCorrelationAction::performRedo(ActionState::ptr _state){ 99 99 return Action::success; 100 100 } -
src/Actions/AnalysisAction/PointCorrelationAction.cpp
rf92ef3 rb5b01e 57 57 58 58 /** =========== define the function ====================== */ 59 Action ::state_ptr AnalysisPointCorrelationAction::performCall() {59 ActionState::ptr AnalysisPointCorrelationAction::performCall() { 60 60 int ranges[3] = {1, 1, 1}; 61 61 ofstream output; … … 86 86 } 87 87 88 Action ::state_ptr AnalysisPointCorrelationAction::performUndo(Action::state_ptr _state) {88 ActionState::ptr AnalysisPointCorrelationAction::performUndo(ActionState::ptr _state) { 89 89 return Action::success; 90 90 } 91 91 92 Action ::state_ptr AnalysisPointCorrelationAction::performRedo(Action::state_ptr _state){92 ActionState::ptr AnalysisPointCorrelationAction::performRedo(ActionState::ptr _state){ 93 93 return Action::success; 94 94 } -
src/Actions/AnalysisAction/PrincipalAxisSystemAction.cpp
rf92ef3 rb5b01e 54 54 55 55 /** =========== define the function ====================== */ 56 Action ::state_ptr AnalysisPrincipalAxisSystemAction::performCall() {56 ActionState::ptr AnalysisPrincipalAxisSystemAction::performCall() { 57 57 LOG(0, "Evaluating prinicipal axis."); 58 58 for (World::MoleculeSelectionIterator iter = World::getInstance().beginMoleculeSelection(); iter != World::getInstance().endMoleculeSelection(); ++iter) { … … 75 75 } 76 76 77 Action ::state_ptr AnalysisPrincipalAxisSystemAction::performUndo(Action::state_ptr _state) {77 ActionState::ptr AnalysisPrincipalAxisSystemAction::performUndo(ActionState::ptr _state) { 78 78 return Action::success; 79 79 } 80 80 81 Action ::state_ptr AnalysisPrincipalAxisSystemAction::performRedo(Action::state_ptr _state){81 ActionState::ptr AnalysisPrincipalAxisSystemAction::performRedo(ActionState::ptr _state){ 82 82 return Action::success; 83 83 } -
src/Actions/AnalysisAction/SurfaceCorrelationAction.cpp
rf92ef3 rb5b01e 60 60 61 61 /** =========== define the function ====================== */ 62 Action ::state_ptr AnalysisSurfaceCorrelationAction::performCall() {62 ActionState::ptr AnalysisSurfaceCorrelationAction::performCall() { 63 63 int ranges[3] = {1, 1, 1}; 64 64 ofstream output; … … 122 122 } 123 123 124 Action ::state_ptr AnalysisSurfaceCorrelationAction::performUndo(Action::state_ptr _state) {124 ActionState::ptr AnalysisSurfaceCorrelationAction::performUndo(ActionState::ptr _state) { 125 125 return Action::success; 126 126 } 127 127 128 Action ::state_ptr AnalysisSurfaceCorrelationAction::performRedo(Action::state_ptr _state){128 ActionState::ptr AnalysisSurfaceCorrelationAction::performRedo(ActionState::ptr _state){ 129 129 return Action::success; 130 130 }
Note:
See TracChangeset
for help on using the changeset viewer.