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

Moved request for system energy from plumed main to prepare routine of ColvarEnergy

parent 22abdf90
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,7 @@
#include "Colvar.h"
#include "ActionRegister.h"
#include "PlumedMain.h"
#include "Atoms.h"
#include <string>
#include <cmath>
......@@ -53,6 +54,7 @@ class ColvarEnergy : public Colvar {
public:
ColvarEnergy(const ActionOptions&);
// active methods:
void prepare();
virtual void calculate();
static void registerKeywords( Keywords& keys );
};
......@@ -80,6 +82,9 @@ void ColvarEnergy::registerKeywords( Keywords& keys ){
keys.remove("NUMERICAL_DERIVATIVES");
}
void ColvarEnergy::prepare(){
plumed.getAtoms().setCollectEnergy(true);
}
// calculator
void ColvarEnergy::calculate(){
......
......@@ -29,7 +29,6 @@
#include "Atoms.h"
#include <set>
#include "PlumedConfig.h"
#include "Colvar.h"
#include <cstdlib>
#include "ActionRegister.h"
#include "GREX.h"
......@@ -455,16 +454,11 @@ void PlumedMain::prepareDependencies(){
};
// also, if one of them is the total energy, tell to atoms that energy should be collected
bool collectEnergy=false;
for(ActionSet::iterator p=actionSet.begin();p!=actionSet.end();++p){
if((*p)->isActive()){
if(Colvar *c=dynamic_cast<Colvar*>(*p)) {
if(c->checkIsEnergy()) collectEnergy=true;
}
if((*p)->checkNeedsGradients()) (*p)->setOption("GRADIENTS");
}
}
atoms.setCollectEnergy(collectEnergy);
stopwatch.stop("1 Prepare dependencies");
......
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