Changeset 0e6205 for src/Actions/MoleculeAction/ForceAnnealingAction.def
- Timestamp:
- Nov 7, 2017, 7:33:52 AM (7 years ago)
- Branches:
- ForceAnnealing_with_BondGraph_continued_betteresults
- Children:
- 645bed
- Parents:
- 14a64b
- git-author:
- Frederik Heber <frederik.heber@…> (08/02/17 20:50:05)
- git-committer:
- Frederik Heber <frederik.heber@…> (11/07/17 07:33:52)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MoleculeAction/ForceAnnealingAction.def
r14a64b r0e6205 19 19 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 20 20 // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value 21 #define paramtypes (boost::filesystem::path)(double)(unsigned int)( bool)(int)(double)(bool)22 #define paramtokens ("forces-file")("deltat")("steps")(" output-every-step")("max-distance")("damping-factor")("use-bondgraph")23 #define paramdescriptions ("file containing")("basic step width to be used")("fixed number of optimization steps to be performed")(" whether WorldTime should be increased and output written after every step, useful if optimization might hang")("maximum distance to which bond graph is taken into account")("damping factor for decreasing the shift with bond graph distance from the causing site")("whether annealing should take place focusing on atoms alone or on the bonds (faster)")24 #define paramdefaults (PARAM_DEFAULT(""))(PARAM_DEFAULT(0.1))(NOPARAM_DEFAULT)(PARAM_DEFAULT( "0"))(PARAM_DEFAULT(0))(PARAM_DEFAULT(0.5))(PARAM_DEFAULT(0))25 #define paramreferences (forcesfile)(deltat)(steps)( DoOutput)(MaxDistance)(DampingFactor)(UseBondGraph)21 #define paramtypes (boost::filesystem::path)(double)(unsigned int)(int)(double)(bool) 22 #define paramtokens ("forces-file")("deltat")("steps")("max-distance")("damping-factor")("use-bondgraph") 23 #define paramdescriptions ("file containing")("basic step width to be used")("fixed number of optimization steps to be performed")("maximum distance to which bond graph is taken into account")("damping factor for decreasing the shift with bond graph distance from the causing site")("whether annealing should take place focusing on atoms alone or on the bonds (faster)") 24 #define paramdefaults (PARAM_DEFAULT(""))(PARAM_DEFAULT(0.1))(NOPARAM_DEFAULT)(PARAM_DEFAULT(0))(PARAM_DEFAULT(0.5))(PARAM_DEFAULT(0)) 25 #define paramreferences (forcesfile)(deltat)(steps)(MaxDistance)(DampingFactor)(UseBondGraph) 26 26 #define paramvalids \ 27 27 (DummyValidator< boost::filesystem::path >()) \ 28 28 (RangeValidator< double >(std::numeric_limits<double>::min(), std::numeric_limits<double>::max())) \ 29 29 (NotZeroValidator< unsigned int >()) \ 30 (DummyValidator<bool>()) \31 30 (DummyValidator< int >()) \ 32 31 (RangeValidator< double >(0,1)) \
Note:
See TracChangeset
for help on using the changeset viewer.