- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/WorldAction/SetBoundaryConditionsAction.def
rc52e08 r6ba9ba 10 10 #include <string> 11 11 12 #include "Parameters/Validators/STLVectorValidator.hpp" 13 #include "Parameters/Validators/Specific/BoundaryConditionValidator.hpp" 14 12 15 // i.e. there is an integer with variable name Z that can be found in 13 16 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 14 // "undefine" if no parameters are required, use (NO DEFAULT) for each (undefined) default value15 #define paramtypes (std:: string)17 // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value 18 #define paramtypes (std::vector< std::string >) 16 19 #define paramtokens ("set-boundary-conditions") 17 20 #define paramdescriptions ("new boundary conditions as list of three strings, e.g. 'wrap wrap ignore'") 18 21 #undef paramdefaults 19 22 #define paramreferences (newconditions) 23 #define paramvalids \ 24 (STLVectorValidator< std::vector< std::string > >(NDIM, NDIM, BoundaryConditionValidator())) 20 25 21 26 #define statetypes (std::string)
Note:
See TracChangeset
for help on using the changeset viewer.