Skip to content
Snippets Groups Projects
Commit b59abe73 authored by Gareth Tribello's avatar Gareth Tribello Committed by Giovanni Bussi
Browse files

Fixed bug in documentation for WholeMolecules

Action::registerKeywords and ActionPilot::registerKeywords were
not called in WholeMolecules::registerKeywords

(cherry picked from commit 53a5b885)
parent 48dfd412
No related branches found
No related tags found
No related merge requests found
...@@ -108,6 +108,8 @@ public: ...@@ -108,6 +108,8 @@ public:
PLUMED_REGISTER_ACTION(WholeMolecules,"WHOLEMOLECULES") PLUMED_REGISTER_ACTION(WholeMolecules,"WHOLEMOLECULES")
void WholeMolecules::registerKeywords( Keywords& keys ){ void WholeMolecules::registerKeywords( Keywords& keys ){
Action::registerKeywords( keys );
ActionPilot::registerKeywords( keys );
ActionAtomistic::registerKeywords( keys ); ActionAtomistic::registerKeywords( keys );
keys.add("compulsory","STRIDE","1","the frequency with which molecules are reassembled. Unless you are completely certain about what you are doing leave this set equal to 1!"); keys.add("compulsory","STRIDE","1","the frequency with which molecules are reassembled. Unless you are completely certain about what you are doing leave this set equal to 1!");
keys.add("numbered","ENTITY","the atoms that make up a molecule that you wish to align. To specify multiple molecules use a list of ENTITY keywords: ENTITY1, ENTITY2,..."); keys.add("numbered","ENTITY","the atoms that make up a molecule that you wish to align. To specify multiple molecules use a list of ENTITY keywords: ENTITY1, ENTITY2,...");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment