source:
src/Actions/GraphAction/DepthFirstSearchAction.def@
af78af
Last change on this file since af78af was 9291d04, checked in by , 12 years ago | |
---|---|
|
|
File size: 1.1 KB |
Rev | Line | |
---|---|---|
[1fd675] | 1 | /* |
2 | * DepthFirstSearchAction.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 | ||
10 | ||
[649aaa] | 11 | #include "Parameters/Validators/DummyValidator.hpp" |
12 | ||
[1fd675] | 13 | // i.e. there is an integer with variable name Z that can be found in |
14 | // ValueStorage by the token "Z" -> first column: int, Z, "Z" | |
[6ba9ba] | 15 | // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value |
[b49de6] | 16 | #define paramtypes (bool) |
[9291d04] | 17 | #define paramtokens ("ExcludeHydrogen") |
[b49de6] | 18 | #define paramdescriptions ("whether to treat hydrogen special or not") |
[6ba9ba] | 19 | #define paramdefaults (PARAM_DEFAULT(true)) |
[9291d04] | 20 | #define paramreferences (HowtoTreatHydrogen) |
[23958d] | 21 | #define paramvalids \ |
22 | (DummyValidator< bool >()) | |
[1fd675] | 23 | |
24 | #undef statetypes | |
25 | #undef statereferences | |
26 | ||
27 | // some defines for all the names, you may use ACTION, STATE and PARAMS | |
[d09093] | 28 | #define CATEGORY Graph |
29 | #define MENUNAME "graph" | |
[052bfd8] | 30 | #define MENUPOSITION 2 |
[1fd675] | 31 | #define ACTIONNAME DepthFirstSearch |
32 | #define TOKEN "depth-first-search" | |
33 | ||
[24fbf3] | 34 | |
35 | // finally the information stored in the ActionTrait specialization | |
36 | #define DESCRIPTION "Depth-First Search analysis of the molecular system" | |
37 | #define SHORTFORM "D" |
Note:
See TracBrowser
for help on using the repository browser.