1 | /*
|
---|
2 | * FitPotentialAction.def
|
---|
3 | *
|
---|
4 | * Created on: Apr 08, 2013
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | // all includes and forward declarations necessary for non-integral types below
|
---|
9 | #include <boost/filesystem/path.hpp>
|
---|
10 | #include <string>
|
---|
11 | #include <vector>
|
---|
12 |
|
---|
13 | #include "Parameters/Validators/DummyValidator.hpp"
|
---|
14 | #include "Parameters/Validators/RangeValidator.hpp"
|
---|
15 | #include "Parameters/Validators/STLVectorValidator.hpp"
|
---|
16 | #include "Parameters/Validators/Specific/ElementValidator.hpp"
|
---|
17 | #include "Parameters/Validators/Specific/FilePresentValidator.hpp"
|
---|
18 | #include "Parameters/Validators/Specific/PotentialTypeValidator.hpp"
|
---|
19 |
|
---|
20 | // i.e. there is an integer with variable name Z that can be found in
|
---|
21 | // ValueStorage by the token "Z" -> first column: int, Z, "Z"
|
---|
22 | // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value
|
---|
23 | #define paramtypes (boost::filesystem::path)(boost::filesystem::path)(std::string)(boost::filesystem::path)(std::vector<const element *>)(std::vector<const element *>)(unsigned int)
|
---|
24 | #define paramtokens ("homology-file")("training-file")("fit-potential")("potential-file")("potential-charges")("fragment-charges")("take-best-of")
|
---|
25 | #define paramdescriptions ("homology file to parse")("optional file to write training data to")("potential type to fit")("potential file specifying multiple potentials to fit")("charges specifying the potential")("charges specifying the fragment")("take the best among this many approximations")
|
---|
26 | #define paramdefaults (NOPARAM_DEFAULT)(PARAM_DEFAULT(""))(NOPARAM_DEFAULT)(NOPARAM_DEFAULT)(NOPARAM_DEFAULT)(NOPARAM_DEFAULT)(PARAM_DEFAULT(3))
|
---|
27 | #define paramreferences (homology_file)(training_file)(potentialtype)(potential_file)(charges)(fragment)(best_of_howmany)
|
---|
28 | #define paramvalids \
|
---|
29 | (FilePresentValidator()) \
|
---|
30 | (DummyValidator<boost::filesystem::path>()) \
|
---|
31 | (PotentialTypeValidator()) \
|
---|
32 | (DummyValidator<boost::filesystem::path>()) \
|
---|
33 | (STLVectorValidator< std::vector<const element *> >(0,99, ElementValidator())) \
|
---|
34 | (STLVectorValidator< std::vector<const element *> >(1,99, ElementValidator())) \
|
---|
35 | (RangeValidator< unsigned int>(1,99))
|
---|
36 |
|
---|
37 | #undef statetypes
|
---|
38 | #undef statereferences
|
---|
39 |
|
---|
40 | // some defines for all the names, you may use ACTION, STATE and PARAMS
|
---|
41 | #define CATEGORY Fragmentation
|
---|
42 | #define MENUNAME "fragmentation"
|
---|
43 | #define MENUPOSITION 6
|
---|
44 | #define ACTIONNAME FitPotential
|
---|
45 | #define TOKEN "fit-potential"
|
---|
46 |
|
---|
47 |
|
---|
48 | // finally the information stored in the ActionTrait specialization
|
---|
49 | #define DESCRIPTION "fit an empirical potential to the given part of a specified fragment"
|
---|
50 | #undef SHORTFORM
|
---|