Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/AnalysisAction/PairCorrelationAction.def

    rb4fa106 re4afb4  
    1313// i.e. there is an integer with variable name Z that can be found in
    1414// ValueStorage by the token "Z" -> first column: int, Z, "Z"
    15 // "undefine" if no parameters are required
    16 #define paramtypes (std::vector<const element *>)(double)(double)(double)(std::string)(std::string)(bool)
     15// "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value
     16#define paramtypes (std::vector<const element *>)(double)(double)(double)(boost::filesystem::path)(boost::filesystem::path)(bool)
    1717#define paramreferences (elements)(BinStart)(BinWidth)(BinEnd)(outputname)(binoutputname)(periodic)
    1818#define paramtokens ("elements")("bin-start")("bin-width")("bin-end")("output-file")("bin-output-file")("periodic")
     19#define paramdescriptions ("set of elements")("start of the first bin")("width of the bins")("start of the last bin")("name of the output file")("name of the bin output file")("system is constraint to periodic boundary conditions")
     20#define paramdefaults (NODEFAULT)(NODEFAULT)("0.5")(NODEFAULT)(NODEFAULT)(NODEFAULT)("0")
    1921
    2022// some defines for all the names, you may use ACTION, STATE and PARAMS
    2123#define CATEGORY Analysis
     24#define MENUNAME "analysis"
     25#define MENUPOSITION 2
    2226#define ACTIONNAME PairCorrelation
    2327#define TOKEN "pair-correlation"
     28
     29// finally the information stored in the ActionTrait specialization
     30#define DESCRIPTION "pair correlation analysis between two elements"
     31#define SHORTFORM "C"
Note: See TracChangeset for help on using the changeset viewer.