ForceAnnealing_oldresults
IndependentFragmentGrids_IntegrationTest
Last change
on this file since effdea was 2affd1, checked in by Frederik Heber <heber@…>, 9 years ago |
Removed molecules_deprecated from World and unnecessary includes of MoleculeListClass and all insert/erase.
- this goes along the lines of removing "remove me when we don't need
MoleculeCistClass anymore".
|
-
Property mode
set to
100644
|
File size:
1.6 KB
|
Line | |
---|
1 | /*
|
---|
2 | * LinearInterpolationofTrajectoriesAction.def
|
---|
3 | *
|
---|
4 | * Created on: Aug 26, 2010
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | // all includes and forward declarations necessary for non-integral types below
|
---|
9 | #include "Parameters/Validators/DummyValidator.hpp"
|
---|
10 | #include "Parameters/Validators/GenericValidators.hpp"
|
---|
11 |
|
---|
12 | // i.e. there is an integer with variable name Z that can be found in
|
---|
13 | // ValueStorage by the token "Z" -> first column: int, Z, "Z"
|
---|
14 | // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value
|
---|
15 | #define paramtypes (unsigned int)(unsigned int)(unsigned int)(bool)
|
---|
16 | #define paramtokens ("start-step")("interpolation-steps")("end-step")("id-mapping")
|
---|
17 | #define paramdescriptions ("first or start step")("number of steps to interpolate in between start and end step")("last or end step")("whether the identity shall be used in mapping atoms onto atoms or not")
|
---|
18 | #undef paramdefaults
|
---|
19 | #define paramreferences (start)(interpolation_steps)(end)(IdMapping)
|
---|
20 | #define paramvalids \
|
---|
21 | (DummyValidator< unsigned int >()) \
|
---|
22 | (NotZeroValidator< unsigned int >()) \
|
---|
23 | (DummyValidator< unsigned int >()) \
|
---|
24 | (DummyValidator< bool >())
|
---|
25 |
|
---|
26 | #undef statetypes
|
---|
27 | #undef statereferences
|
---|
28 |
|
---|
29 | // some defines for all the names, you may use ACTION, STATE and PARAMS
|
---|
30 | #define CATEGORY Molecule
|
---|
31 | #define MENUNAME "molecule"
|
---|
32 | #define MENUPOSITION 6
|
---|
33 | #define ACTIONNAME LinearInterpolationofTrajectories
|
---|
34 | #define TOKEN "linear-interpolation-of-trajectories"
|
---|
35 |
|
---|
36 |
|
---|
37 | // finally the information stored in the ActionTrait specialization
|
---|
38 | #define DESCRIPTION "linear interpolation in discrete steps between start and end position of a molecule"
|
---|
39 | #undef SHORTFORM
|
---|
Note:
See
TracBrowser
for help on using the repository browser.