Skip to content
Snippets Groups Projects
Commit 3dc3b195 authored by Gareth Tribello's avatar Gareth Tribello
Browse files

Added check on users doing label.* for actions with no components

parent eedaff7b
No related branches found
No related tags found
No related merge requests found
...@@ -143,6 +143,7 @@ void ActionWithArguments::interpretArgumentList(const std::vector<std::string>& ...@@ -143,6 +143,7 @@ void ActionWithArguments::interpretArgumentList(const std::vector<std::string>&
str+=plumed.getActionSet().getLabelList()+")"; str+=plumed.getActionSet().getLabelList()+")";
error("cannot find action named " + a + str); error("cannot find action named " + a + str);
} }
if( action->getNumberOfComponents()==0 ) error("found " + a +".* indicating use all components calculated by action with label " + a + " but this action has no components");
for(int k=0;k<action->getNumberOfComponents();++k) arg.push_back(action->copyOutput(k)); for(int k=0;k<action->getNumberOfComponents();++k) arg.push_back(action->copyOutput(k));
} else if ( a=="*" ){ } else if ( a=="*" ){
// Take components from all actions with a specific name // Take components from all actions with a specific name
......
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