Changeset 10aee4 for src/documentation
- Timestamp:
- Aug 5, 2015, 7:12:24 AM (9 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:
- c307ba
- Parents:
- 94232b
- git-author:
- Frederik Heber <heber@…> (08/03/15 09:25:02)
- git-committer:
- Frederik Heber <heber@…> (08/05/15 07:12:24)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/documentation/constructs/actions.dox
r94232b r10aee4 34 34 * If an Action is requested via its known token from the ActionQueue 35 35 * (that contains the ActionRegistry), this prototype is cloned and added to the 36 * queue. 36 * queue. Action::clone() is a public function but only certain classes are 37 * allowed to directly add Action instances to the ActionQueue. Normally, an 38 * Action first has to be registered with the ActionRegistry and afterwards it 39 * may be added to the queue via its specific and unique token. 37 40 * 38 41 * Each Action can contain multiple \ref parameters in its specific … … 56 59 * such that the ActionRegistry knows about it and can instantiate a 57 60 * prototype. 61 * 62 * Most of the magic that fills in the remaining gaps of the Action's 63 * declaration and definition is done by boost::preprocessor magic in the 64 * files Action_impl_pre.hpp and Action_impl_header.hpp. There is a pendant 65 * for MakroActions. 66 * 67 * \section actions-types Specific types of actions 68 * 69 * There are some special types of Actions: 70 * -# Calculation: A process with a final result that can be requested 71 * -# MakroAction: A chain of other Actions to be executed various times 72 * -# MethodAction: An action that basically calls a certain bound method 73 * -# Process: An action that takes some time to complete and informs about 74 * how much work remains 75 * 76 * \section actions-types-add Add a specific types of action ... 77 * 78 * Instantiating the MakroAction is simple, only two functions, prepare() 79 * and unprepare(), are required that fill und empty the chain of Actions 80 * from Actions from the ActionRegistry. 81 * 82 * Adding a Process is much the same as adding a normal Action. There is a 83 * keyword BASECLASS in the associated \b .def file which should say Process 84 * and one needs to use Process::setCurrStep(int) to tell the Process and 85 * all listening Observers what the current stage of execution is. Also, 86 * initially a total number of steps must be stated via Process::setMaxSteps() 87 * When the job executes, this is initiated with Process::start() and when 88 * it stops, this is told via Process::stop(). 89 * 90 * A Calculation must be derived by hand and is not supported via the 91 * boost::preprocessor magic but behaves very similar to the Process itself 92 * with respect to informing about the current stage of execution. What's 93 * more is essentially the Calculation::doCalc() function that performs the 94 * actual calculation (must not changed the state of the World and hence 95 * there is not need for undo). The Calculation implementation takes care 96 * of the rest. 97 * 98 * A MethodAction is simply implemented by filling an ActionTraits structure 99 * with the desired values and bind a method that should get executed. 100 * Instantating the MethodAction with these parameters and executing 101 * ActionRegistry()::registerAction() then allows for using it in the context 102 * of the ActionQueue. 58 103 * 59 104 * \section actions-undo-redo Undoing and Redoing actions ... … … 81 126 * 82 127 * 83 * \date 201 4-03-10128 * \date 2015-08-03 84 129 * 85 130 */
Note:
See TracChangeset
for help on using the changeset viewer.