- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/WorldAction/CenterInBoxAction.def
r6ba9ba r23526c 7 7 8 8 // all includes and forward declarations necessary for non-integral types below 9 #include "LinearAlgebra/RealSpaceMatrix.hpp" 10 11 #include "Parameters/Validators/Ops_Validator.hpp" 12 #include "Parameters/Validators/Specific/RealSpaceMatrixSymmetricValidator.hpp" 13 #include "Parameters/Validators/Specific/RealSpaceMatrixInvertibleValidator.hpp" 9 #include "Actions/Values.hpp" 10 #include "Box.hpp" 11 #include "LinearAlgebra/Vector.hpp" 12 #include <boost/shared_ptr.hpp> 14 13 15 14 // i.e. there is an integer with variable name Z that can be found in 16 15 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 17 // "undefine" if no parameters are required, use (NO PARAM_DEFAULT) for each (undefined) default value18 #define paramtypes ( RealSpaceMatrix)16 // "undefine" if no parameters are required, use (NODEFAULT) for each (undefined) default value 17 #define paramtypes (Box) 19 18 #define paramtokens ("center-in-box") 20 19 #define paramdescriptions ("symmetric matrix of new domain") 21 20 #undef paramdefaults 22 21 #define paramreferences (cell_size) 23 #define paramvalids \24 (RealSpaceMatrixSymmetricValidator() && RealSpaceMatrixInvertibleValidator())25 22 26 23 #define statetypes (std::string)(std::vector< boost::shared_ptr<Vector> >)
Note:
See TracChangeset
for help on using the changeset viewer.