- Timestamp:
- Jul 5, 2017, 7:40:05 PM (8 years ago)
- Branches:
- ForceAnnealing_oldresults, IndependentFragmentGrids_IntegrationTest
- Children:
- 3a0371
- Parents:
- d21668
- git-author:
- Frederik Heber <frederik.heber@…> (05/09/17 11:07:11)
- git-committer:
- Frederik Heber <frederik.heber@…> (07/05/17 19:40:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/SelectionAction/Atoms/NotAtomByOrderAction.def
rd21668 r9a3882 9 9 class atom; 10 10 11 #include "Parameters/Validators/ DummyValidator.hpp"11 #include "Parameters/Validators/STLVectorValidator.hpp" 12 12 13 13 // i.e. there is an integer with variable name Z that can be found in 14 14 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 15 15 // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value 16 #define paramtypes ( int)16 #define paramtypes (std::vector<int>) 17 17 #define paramtokens ("unselect-atom-by-order") 18 #define paramdescriptions ("order index")18 #define paramdescriptions ("order order indices, starting at 1 or -1") 19 19 #undef paramdefaults 20 #define paramreferences (order )20 #define paramreferences (orders) 21 21 #define paramvalids \ 22 ( DummyValidator< int >())22 (STLVectorValidator< std::vector< int > >(1, 99)) 23 23 24 #define statetypes ( atomId_t)25 #define statereferences (WalkerId )24 #define statetypes (std::vector<atomId_t>) 25 #define statereferences (WalkerIds) 26 26 27 27 // some defines for all the names, you may use ACTION, STATE and PARAMS
Note:
See TracChangeset
for help on using the changeset viewer.