Skip to content
Snippets Groups Projects
Commit d96d52d9 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Fix

fixed an error introduced in
e2f37a30
parent e2f37a30
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ Calculate torsions between axis of adjacent molecules
namespace PLMD {
namespace crystallization {
class InterMolecularTorsions : public MultiColvarFunction {
class InterMolecularTorsions : public multicolvar::MultiColvarFunction {
private:
/// The switching function that tells us if atoms are close enough together
SwitchingFunction switchingFunction;
......@@ -47,9 +47,9 @@ public:
static void registerKeywords( Keywords& keys );
explicit InterMolecularTorsions(const ActionOptions&);
/// Do the stuff with the switching functions
double calculateWeight( const unsigned& taskCode, const double& weight, AtomValuePack& myatoms ) const ;
double calculateWeight( const unsigned& taskCode, const double& weight, multicolvar::AtomValuePack& myatoms ) const ;
/// Actually do the calculation
double compute( const unsigned& tindex, AtomValuePack& myatoms ) const ;
double compute( const unsigned& tindex, multicolvar::AtomValuePack& myatoms ) const ;
/// Is the variable periodic
bool isPeriodic(){ return true; }
void retrieveDomain( std::string& min, std::string& max ){ min="-pi"; max="+pi"; }
......@@ -112,7 +112,7 @@ MultiColvarFunction(ao)
readVesselKeywords();
}
double InterMolecularTorsions::calculateWeight( const unsigned& taskCode, const double& weight, AtomValuePack& myatoms ) const {
double InterMolecularTorsions::calculateWeight( const unsigned& taskCode, const double& weight, multicolvar::AtomValuePack& myatoms ) const {
Vector distance = getSeparation( myatoms.getPosition(0), myatoms.getPosition(1) );
double dfunc, sw = switchingFunction.calculateSqr( distance.modulo2(), dfunc );
......@@ -124,7 +124,7 @@ double InterMolecularTorsions::calculateWeight( const unsigned& taskCode, const
return sw;
}
double InterMolecularTorsions::compute( const unsigned& tindex, AtomValuePack& myatoms ) const {
double InterMolecularTorsions::compute( const unsigned& tindex, multicolvar::AtomValuePack& myatoms ) const {
Vector v1, v2, dv1, dv2, dconn, conn = getSeparation( myatoms.getPosition(0), myatoms.getPosition(1) );
// Retrieve vectors
......
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