Changeset b4fa106 for src/Actions
- Timestamp:
- Aug 28, 2010, 12:57:50 AM (15 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:
- e3e6e2
- Parents:
- 9ee38b
- git-author:
- Frederik Heber <heber@…> (08/26/10 13:23:21)
- git-committer:
- Frederik Heber <heber@…> (08/28/10 00:57:50)
- Location:
- src/Actions
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/Action_impl_header.hpp
r9ee38b rb4fa106 23 23 #define ACTION BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, Action)) 24 24 #define COMMAND BOOST_PP_CAT(CATEGORY, ACTIONNAME) 25 #define STATE BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, State))26 25 #define PARAMS BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, Parameters)) 27 #define PARAMSDOT BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, Parameters))28 26 29 27 // check if no lists given 30 #ifndef types31 #define MAX NOTOKENS 028 #ifndef paramtypes 29 #define MAXPARAMTYPES 0 32 30 #else 33 #define MAX NOTOKENS BOOST_PP_SEQ_SIZE(types)31 #define MAXPARAMTYPES BOOST_PP_SEQ_SIZE(paramtypes) 34 32 #endif 35 33 … … 44 42 45 43 // calculate numbers and check whether all have same size 46 #ifdef tokens47 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAX NOTOKENS, BOOST_PP_SEQ_SIZE(tokens)),\48 ERROR: There are not the same number of " tokens" and "types" in: __FILE__ \44 #ifdef paramtokens 45 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramtokens)),\ 46 ERROR: There are not the same number of "paramtokens" and "paramtypes" in: __FILE__ \ 49 47 ) 50 48 #endif 51 #ifdef references52 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAX NOTOKENS, BOOST_PP_SEQ_SIZE(references)),\53 ERROR: There are not the same number of " tokens" and "references" in: __FILE__ \49 #ifdef paramreferences 50 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramreferences)),\ 51 ERROR: There are not the same number of "paramtokens" and "paramreferences" in: __FILE__ \ 54 52 ) 55 53 #endif 56 54 57 55 // print a list of type ref followed by a separator, i.e. "int i;" 58 #define type_print(z,n, separator) \59 BOOST_PP_SEQ_ELEM(n, types) \60 BOOST_PP_SEQ_ELEM(n, references)\56 #define type_print(z,n,TYPELIST, VARLIST, separator) \ 57 BOOST_PP_SEQ_ELEM(n, TYPELIST) \ 58 BOOST_PP_SEQ_ELEM(n, VARLIST)\ 61 59 separator 62 60 63 61 // print a list of type ref followed, i.e. "int i, double position" 64 #define type_list(z,n, unused) \62 #define type_list(z,n,TYPELIST, VARLIST) \ 65 63 BOOST_PP_COMMA_IF(n)\ 66 BOOST_PP_SEQ_ELEM(n, types) \67 BOOST_PP_SEQ_ELEM(n, references)64 BOOST_PP_SEQ_ELEM(n, TYPELIST) \ 65 BOOST_PP_SEQ_ELEM(n, VARLIST) 68 66 69 // prints dialog->query calls for types with tokens 70 #define dialog_print(z,n,unused) \ 71 dialog->query<\ 72 BOOST_PP_SEQ_ELEM(n, types)\ 73 >(\ 74 BOOST_PP_SEQ_ELEM(n, tokens)\ 75 , ValueStorage::getInstance().getDescription(\ 76 BOOST_PP_SEQ_ELEM(n, tokens)\ 77 )); 78 79 // prints set/queryCurrentValue (command) for references and tokens 80 #define value_print(z,n,command) \ 81 ValueStorage::getInstance(). command (\ 82 BOOST_PP_SEQ_ELEM(n, tokens)\ 83 , \ 84 params.\ 85 BOOST_PP_SEQ_ELEM(n, references)\ 86 ); 87 88 #if BOOST_PP_NOT_EQUAL(MAXNOTOKENS,0) 89 #define COMMANDFULL \ 90 void COMMAND( \ 91 BOOST_PP_REPEAT(MAXNOTOKENS, type_list, ~) \ 92 ) 67 #if defined paramtypes && defined paramreferences 68 void COMMAND( 69 #define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, paramtypes, paramreferences) 70 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1) 71 #include BOOST_PP_LOCAL_ITERATE() 72 ); 93 73 # else 94 #define COMMANDFULL void COMMAND() 74 void COMMAND(); 95 75 #endif 96 76 97 COMMANDFULL; 77 class ACTION : public Action { 78 friend 79 #if defined paramtypes && defined paramreferences 80 void COMMAND( 81 #define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, paramtypes, paramreferences) 82 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1) 83 #include BOOST_PP_LOCAL_ITERATE() 84 ); 85 # else 86 void COMMAND(); 87 #endif 98 88 99 class ACTION : public Action {100 friend COMMANDFULL;101 89 public: 102 90 ACTION(); … … 109 97 110 98 struct PARAMS : ActionParameters { 111 #if BOOST_PP_NOT_EQUAL(MAXNOTOKENS,0)112 #define BOOST_PP_LOCAL_MACRO(n) type_print(~, n, ;)113 #define BOOST_PP_LOCAL_LIMITS (0, MAX NOTOKENS-1)99 #if defined paramtypes && defined paramreferences 100 #define BOOST_PP_LOCAL_MACRO(n) type_print(~, n, paramtypes, paramreferences, ;) 101 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1) 114 102 #include BOOST_PP_LOCAL_ITERATE() 115 #undef BOOST_PP_LOCAL_MACRO116 #undef BOOST_PP_LOCAL_LIMITS117 103 #endif 118 104 } params; … … 129 115 }; 130 116 131 #undef types 132 #undef tokens 133 #undef references 134 #undef MAXNOTOKENS 117 #undef paramtypes 118 #undef paramtokens 119 #undef paramreferences 120 #undef MAXPARAMTYPES 121 #undef statetypes 122 #undef statereferences 123 #undef MAXSTATETYPES 135 124 136 125 #undef ACTION 137 #undef ACTIONNAME138 #undef CATEGORY139 126 #undef COMMAND 140 127 #undef COMMANDFULL 141 128 #undef PARAMS 142 #undef STATE 129 130 #undef ACTIONNAME 131 #undef CATEGORY 143 132 #undef TOKEN -
src/Actions/Action_impl_pre.hpp
r9ee38b rb4fa106 14 14 * 15 15 * For this, the user has the define the following values, each with 16 * parenthesis: 17 * -# types, e.g. (int)(double) 18 * -# tokens, e.g. ("Z")("length") 19 * -# references, e.g. (Z)(length) 20 * and 16 * parenthesis, for the values/parameters the action needs 17 * -# paramtypes, e.g. (int)(double) 18 * -# paramtokens, e.g. ("Z")("length") 19 * -# paramreferences, e.g. (Z)(length) 20 * and for additional values/parameters to save in the state 21 * -# statetypes, e.g. (int)(double) 22 * -# statereferences, e.g. (Z)(length) 23 * and the name and category of the action 21 24 * -# CATEGORY, e.g. Analysis 22 25 * -# ACTIONNAME, e.g. MolecularVolume … … 25 28 26 29 #include <boost/preprocessor/cat.hpp> 30 #include <boost/preprocessor/expand.hpp> 27 31 #include <boost/preprocessor/comparison/equal.hpp> 28 32 #include <boost/preprocessor/comparison/not_equal.hpp> … … 43 47 #define STATE BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, State)) 44 48 #define PARAMS BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, Parameters)) 45 #define PARAMSDOT BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, Parameters))46 49 47 50 // check if no lists given 48 #ifndef types 49 #define MAXNOTOKENS 0 50 #else 51 #define MAXNOTOKENS BOOST_PP_SEQ_SIZE(types) 51 #ifndef paramtypes 52 #define MAXPARAMTYPES 0 53 #else 54 #define MAXPARAMTYPES BOOST_PP_SEQ_SIZE(paramtypes) 55 #endif 56 #ifndef statetypes 57 #define MAXSTATETYPES 0 58 #else 59 #define MAXSTATETYPES BOOST_PP_SEQ_SIZE(statetypes) 52 60 #endif 53 61 … … 62 70 63 71 // calculate numbers and check whether all have same size 64 #ifdef tokens 65 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXNOTOKENS, BOOST_PP_SEQ_SIZE(tokens)),\ 66 ERROR: There are not the same number of "tokens" and "types" in: __FILE__ \ 67 ) 68 #endif 69 #ifdef references 70 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXNOTOKENS, BOOST_PP_SEQ_SIZE(references)),\ 71 ERROR: There are not the same number of "tokens" and "references" in: __FILE__ \ 72 #ifdef paramtokens 73 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramtokens)),\ 74 ERROR: There are not the same number of "paramtokens" and "paramtypes" in: __FILE__ \ 75 ) 76 #endif 77 #ifdef paramreferences 78 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramreferences)),\ 79 ERROR: There are not the same number of "paramtokens" and "paramreferences" in: __FILE__ \ 80 ) 81 #endif 82 83 #ifdef statetypes 84 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXSTATETYPES, BOOST_PP_SEQ_SIZE(statereferences)),\ 85 ERROR: There are not the same number of "statetypes" and "statereferences" in: __FILE__ \ 72 86 ) 73 87 #endif 74 88 75 89 // print a list of type ref followed by a separator, i.e. "int i;" 76 #define type_print(z,n,separator) \ 77 BOOST_PP_SEQ_ELEM(n, types) \ 78 BOOST_PP_SEQ_ELEM(n, references)\ 90 #define initialiser_print(z,n,initialiserlist) \ 91 BOOST_PP_SEQ_ELEM(n, initialiserlist) \ 92 (BOOST_PP_CAT(_, BOOST_PP_SEQ_ELEM(n, initialiserlist))), 93 94 // print a list of ref(_ref) followed by a separator, i.e. "id(_id)," 95 #define type_print(z,n,TYPELIST, VARLIST, separator) \ 96 BOOST_PP_SEQ_ELEM(n, TYPELIST) \ 97 BOOST_PP_SEQ_ELEM(n, VARLIST)\ 79 98 separator 80 99 81 100 // print a list of type ref followed, i.e. "int i, double position" 82 #define type_list(z,n, unused) \101 #define type_list(z,n,TYPELIST,VARLIST) \ 83 102 BOOST_PP_COMMA_IF(n)\ 84 BOOST_PP_SEQ_ELEM(n, types) \85 BOOST_PP_SEQ_ELEM(n, references)86 87 // prints dialog->query calls for types with tokens103 BOOST_PP_SEQ_ELEM(n, TYPELIST) \ 104 BOOST_PP_SEQ_ELEM(n, VARLIST) 105 106 // prints dialog->query calls for paramtypes with tokens 88 107 #define dialog_print(z,n,unused) \ 89 108 dialog->query<\ 90 BOOST_PP_SEQ_ELEM(n, types)\109 BOOST_PP_SEQ_ELEM(n, paramtypes)\ 91 110 >(\ 92 BOOST_PP_SEQ_ELEM(n, tokens)\111 BOOST_PP_SEQ_ELEM(n, paramtokens)\ 93 112 , ValueStorage::getInstance().getDescription(\ 94 BOOST_PP_SEQ_ELEM(n, tokens)\113 BOOST_PP_SEQ_ELEM(n, paramtokens)\ 95 114 )); 96 115 … … 98 117 #define value_print(z,n,command, prefix) \ 99 118 ValueStorage::getInstance(). command (\ 100 BOOST_PP_SEQ_ELEM(n, tokens)\119 BOOST_PP_SEQ_ELEM(n, paramtokens)\ 101 120 , \ 102 121 prefix\ 103 BOOST_PP_SEQ_ELEM(n, references)\122 BOOST_PP_SEQ_ELEM(n, paramreferences)\ 104 123 ); 105 106 #if BOOST_PP_NOT_EQUAL(MAXNOTOKENS,0)107 #define COMMANDFULL \108 void COMMAND( \109 BOOST_PP_REPEAT(MAXNOTOKENS, type_list, ~) \110 )111 # else112 #define COMMANDFULL void COMMAND()113 #endif114 124 115 125 #include "Actions/ActionRegistry.hpp" … … 118 128 119 129 130 // =========== memento to remember the state when undoing =========== 131 class STATE : public ActionState { 132 public: 133 STATE( 134 #if defined statetypes && defined statereferences // if we have parameters, we have to add "_" before each reference and add the params as the last one 135 #define OP(s,data,elem) BOOST_PP_CAT(data, elem) // OP to add "_" 136 #define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, BOOST_PP_SEQ_PUSH_BACK(statetypes, const ACTION::PARAMS &), BOOST_PP_SEQ_TRANSFORM(OP, _, BOOST_PP_SEQ_PUSH_BACK(statereferences, params))) 137 #else /// if not, params is only list 138 #define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, (const ACTION::PARAMS &), (_params)) 139 #endif 140 #define BOOST_PP_LOCAL_LIMITS (0, MAXSTATETYPES) 141 #include BOOST_PP_LOCAL_ITERATE() 142 ) : 143 #if defined statetypes && defined statereferences // do we have parameters at all? 144 BOOST_PP_REPEAT(MAXSTATETYPES, initialiser_print, statereferences) 145 #endif 146 params(_params) 147 {} 148 149 #if defined statetypes && defined statereferences // do we have parameters at all? 150 #define BOOST_PP_LOCAL_MACRO(n) type_print(~, n, statetypes, statereferences, ;) 151 #define BOOST_PP_LOCAL_LIMITS (0, MAXSTATETYPES-1) 152 #include BOOST_PP_LOCAL_ITERATE() 153 #endif 154 ACTION::PARAMS params; 155 }; 156 157 // =========== name of action =========== 120 158 const char ACTION::NAME[] = TOKEN; 121 159 122 // the actual functions constructed 123 160 // =========== constructor =========== 124 161 ACTION::ACTION () : 125 162 Action(NAME) 126 163 {} 127 164 165 // =========== destructor =========== 128 166 ACTION::~ACTION () 129 167 {} 130 168 169 // =========== fill a dialog =========== 131 170 Dialog* ACTION::fillDialog(Dialog *dialog) { 132 171 ASSERT(dialog,"No Dialog given when filling actionname's dialog"); 133 #if BOOST_PP_EQUAL(MAX NOTOKENS,0)172 #if BOOST_PP_EQUAL(MAXPARAMTYPES,0) 134 173 dialog->queryEmpty(NAME, ValueStorage::getInstance().getDescription(NAME)); 135 174 #else 136 175 #define BOOST_PP_LOCAL_MACRO(n) dialog_print(~, n, ~) 137 #define BOOST_PP_LOCAL_LIMITS (0, MAXNOTOKENS-1) 138 #include BOOST_PP_LOCAL_ITERATE() 139 #undef BOOST_PP_LOCAL_MACRO 140 #undef BOOST_PP_LOCAL_LIMITS 176 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1) 177 #include BOOST_PP_LOCAL_ITERATE() 141 178 #endif 142 179 return dialog; 143 180 }; 144 181 145 COMMANDFULL 182 // =========== command for calling action directly =========== 183 #if defined paramtypes && defined paramreferences 184 void COMMAND( 185 #define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, paramtypes, paramreferences) 186 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1) 187 #include BOOST_PP_LOCAL_ITERATE() 188 ) 189 #else 190 void COMMAND() 191 #endif 146 192 { 147 193 ACTION::PARAMS params; 148 194 Action *ToCall = ActionRegistry::getInstance().getActionByName( ACTION::NAME ); //->clone(params); 149 #if BOOST_PP_NOT_EQUAL(MAX NOTOKENS,0)195 #if BOOST_PP_NOT_EQUAL(MAXPARAMTYPES,0) 150 196 #define BOOST_PP_LOCAL_MACRO(n) value_print(~, n, setCurrentValue, ) 151 #define BOOST_PP_LOCAL_LIMITS (0, MAXNOTOKENS-1) 152 #include BOOST_PP_LOCAL_ITERATE() 153 #undef BOOST_PP_LOCAL_MACRO 154 #undef BOOST_PP_LOCAL_LIMITS 197 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1) 198 #include BOOST_PP_LOCAL_ITERATE() 155 199 #endif 156 200 ToCall->call(Action::NonInteractive); 157 201 }; 158 202 203 // =========== obtain parameters from Storage, used by performCall() =========== 159 204 void ACTION::getParametersfromValueStorage() { 160 #if BOOST_PP_NOT_EQUAL(MAX NOTOKENS,0)205 #if BOOST_PP_NOT_EQUAL(MAXPARAMTYPES,0) 161 206 #define BOOST_PP_LOCAL_MACRO(n) value_print(~, n, queryCurrentValue, params.) 162 #define BOOST_PP_LOCAL_LIMITS (0, MAXNOTOKENS-1) 163 #include BOOST_PP_LOCAL_ITERATE() 164 #undef BOOST_PP_LOCAL_MACRO 165 #undef BOOST_PP_LOCAL_LIMITS 166 #endif 167 }; 168 169 #undef types 170 #undef tokens 171 #undef references 172 #undef MAXNOTOKENS 207 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1) 208 #include BOOST_PP_LOCAL_ITERATE() 209 #endif 210 }; 211 212 // free up defines 213 #undef paramtypes 214 #undef paramtokens 215 #undef paramreferences 216 #undef MAXPARAMTYPES 217 #undef statetypes 218 #undef statereferences 219 #undef MAXSTATETYPES 173 220 174 221 #undef ACTION 222 #undef COMMAND 223 #undef PARAMS 224 #undef STATE 225 175 226 #undef ACTIONNAME 176 227 #undef CATEGORY 177 #undef COMMAND178 #undef COMMANDFULL179 #undef PARAMS180 #undef STATE181 228 #undef TOKEN -
src/Actions/AnalysisAction/MolecularVolumeAction.def
r9ee38b rb4fa106 11 11 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 12 12 // "undefine" if no parameters are required 13 //#define types (int)14 //#define references (molID)15 //#define tokens (NAME)13 //#define paramtypes (int) 14 //#define paramreferences (molID) 15 //#define paramtokens (NAME) 16 16 17 17 // some defines for all the names, you may use ACTION, STATE and PARAMS -
src/Actions/AnalysisAction/PairCorrelationAction.def
r9ee38b rb4fa106 14 14 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 15 15 // "undefine" if no parameters are required 16 #define types (std::vector<const element *>)(double)(double)(double)(std::string)(std::string)(bool)17 #define references (elements)(BinStart)(BinWidth)(BinEnd)(outputname)(binoutputname)(periodic)18 #define tokens ("elements")("bin-start")("bin-width")("bin-end")("output-file")("bin-output-file")("periodic")16 #define paramtypes (std::vector<const element *>)(double)(double)(double)(std::string)(std::string)(bool) 17 #define paramreferences (elements)(BinStart)(BinWidth)(BinEnd)(outputname)(binoutputname)(periodic) 18 #define paramtokens ("elements")("bin-start")("bin-width")("bin-end")("output-file")("bin-output-file")("periodic") 19 19 20 20 // some defines for all the names, you may use ACTION, STATE and PARAMS -
src/Actions/AnalysisAction/PointCorrelationAction.def
r9ee38b rb4fa106 16 16 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 17 17 // "undefine" if no parameters are required 18 #define types (std::vector<const element *>)(Vector)(double)(double)(double)(std::string)(std::string)(bool)19 #define references (elements)(Point)(BinStart)(BinWidth)(BinEnd)(outputname)(binoutputname)(periodic)20 #define tokens ("elements")("position")("bin-start")("bin-width")("bin-end")("output-file")("bin-output-file")("periodic")18 #define paramtypes (std::vector<const element *>)(Vector)(double)(double)(double)(std::string)(std::string)(bool) 19 #define paramreferences (elements)(Point)(BinStart)(BinWidth)(BinEnd)(outputname)(binoutputname)(periodic) 20 #define paramtokens ("elements")("position")("bin-start")("bin-width")("bin-end")("output-file")("bin-output-file")("periodic") 21 21 22 22 // some defines for all the names, you may use ACTION, STATE and PARAMS -
src/Actions/AnalysisAction/SurfaceCorrelationAction.def
r9ee38b rb4fa106 15 15 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 16 16 // "undefine" if no parameters are required 17 #define types (std::vector<const element *>)(molecule *)(double)(double)(double)(std::string)(std::string)(bool)18 #define references (elements)(Boundary)(BinStart)(BinWidth)(BinEnd)(outputname)(binoutputname)(periodic)19 #define tokens ("elements")("molecule-by-id")("bin-start")("bin-width")("bin-end")("output-file")("bin-output-file")("periodic")17 #define paramtypes (std::vector<const element *>)(molecule *)(double)(double)(double)(std::string)(std::string)(bool) 18 #define paramreferences (elements)(Boundary)(BinStart)(BinWidth)(BinEnd)(outputname)(binoutputname)(periodic) 19 #define paramtokens ("elements")("molecule-by-id")("bin-start")("bin-width")("bin-end")("output-file")("bin-output-file")("periodic") 20 20 21 21 // some defines for all the names, you may use ACTION, STATE and PARAMS
Note:
See TracChangeset
for help on using the changeset viewer.