/* * FillRegularGridAction.def * * Created on: Jan 20, 2012 * Author: heber */ // all includes and forward declarations necessary for non-integral types below class atom; // i.e. there is an integer with variable name Z that can be found in // ValueStorage by the token "Z" -> first column: int, Z, "Z" // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value #define paramtypes (Vector)(Vector)(double) #define paramtokens ("mesh-size")("mesh-offset")("min-distance") #define paramdescriptions ("number of points per axis")("offset to start of partition, must be in [0,1)")("Minimum distance to other atoms") #define paramdefaults (NODEFAULT)("0.,0.,0.")("1.") #define paramreferences (counts)(offset)(mindistance) #define statetypes (std::vector) #define statereferences (filleratoms) // some defines for all the names, you may use ACTION, STATE and PARAMS #define CATEGORY Fill #define MENUNAME "fill" #define MENUPOSITION 1 #define ACTIONNAME RegularGrid #define TOKEN "fill-regular-grid" // finally the information stored in the ActionTrait specialization #define DESCRIPTION "fill the domain via a regularly sparsed grid of insertion points for a cluster of atoms" #undef SHORTFORM