/* * 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)(double) #define paramtokens ("mesh-size")("mesh-offset")("min-distance")("tesselation-radius") #define paramdescriptions ("number of points per axis")("offset to start of partition, must be in [0,1)")("Minimum distance to other atoms")("radius of rolling sphere in tesselating selected molecule's surfaces") #define paramdefaults (NODEFAULT)("0.,0.,0.")("1.")("0.") #define paramreferences (counts)(offset)(mindistance)(SphereRadius) #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 with the \ currently selected molecule. If atoms are selected, too, they are surrounded by \ a tesselated surface and only outside of the tesselation is filled." #undef SHORTFORM