/* * SaveAtomFragmentsAction.def * * Created on: Mar 07, 2016 * Author: heber */ // all includes and forward declarations necessary for non-integral types below #include #include "Parameters/Validators/DummyValidator.hpp" // 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 (NOPARAM_DEFAULT) for each (undefined) default value #define paramtypes (boost::filesystem::path) #define paramtokens ("save-atom-fragments") #define paramdescriptions ("path to file containing atom fragment association container to parse") #define paramdefaults (PARAM_DEFAULT("")) #define paramreferences (atomfragments_file) #define paramvalids \ (DummyValidator< boost::filesystem::path >()) #undef statetypes #undef statereferences // some defines for all the names, you may use ACTION, STATE and PARAMS #define CATEGORY Potential #define MENUNAME "potential" #define MENUPOSITION 2 #define ACTIONNAME SaveAtomFragments #define TOKEN "save-atom-fragments" // finally the information stored in the ActionTrait specialization #define DESCRIPTION "saves atom fragment associations present in World's container to file" #undef SHORTFORM