"platforms/cpu/src/CpuConstantPotentialForceFvec.cpp" did not exist on "300758a54ec4185b3ff7061d4a95db3a9dd9ef8e"
Commit 4e280d49 authored by Peter Eastman's avatar Peter Eastman
Browse files

Fixed compilation errors

parent 85eeb490
...@@ -4407,6 +4407,10 @@ RealOpenMM AmoebaReferenceGeneralizedKirkwoodMultipoleForce::calculateKirkwoodED ...@@ -4407,6 +4407,10 @@ RealOpenMM AmoebaReferenceGeneralizedKirkwoodMultipoleForce::calculateKirkwoodED
return energy; return energy;
} }
const int AmoebaReferencePmeMultipoleForce::AMOEBA_PME_ORDER = 5;
const RealOpenMM AmoebaReferencePmeMultipoleForce::SQRT_PI = 1.77245385091;
AmoebaReferencePmeMultipoleForce::AmoebaReferencePmeMultipoleForce( void ) : AmoebaReferencePmeMultipoleForce::AmoebaReferencePmeMultipoleForce( void ) :
AmoebaReferenceMultipoleForce(PME), AmoebaReferenceMultipoleForce(PME),
_cutoffDistance(1.0), _cutoffDistanceSquared(1.0), _cutoffDistance(1.0), _cutoffDistanceSquared(1.0),
......
...@@ -1285,8 +1285,8 @@ public: ...@@ -1285,8 +1285,8 @@ public:
private: private:
static const int AMOEBA_PME_ORDER = 5; static const int AMOEBA_PME_ORDER;
static const RealOpenMM SQRT_PI = 1.77245385091; static const RealOpenMM SQRT_PI;
RealOpenMM _alphaEwald; RealOpenMM _alphaEwald;
RealOpenMM _cutoffDistance; RealOpenMM _cutoffDistance;
......
...@@ -91,7 +91,7 @@ State RPMDIntegrator::getState(int copy, int types, bool enforcePeriodicBox, int ...@@ -91,7 +91,7 @@ State RPMDIntegrator::getState(int copy, int types, bool enforcePeriodicBox, int
} }
double RPMDIntegrator::computeKineticEnergy() { double RPMDIntegrator::computeKineticEnergy() {
kernel.getAs<IntegrateRPMDStepKernel>().computeKineticEnergy(*context, *this); return kernel.getAs<IntegrateRPMDStepKernel>().computeKineticEnergy(*context, *this);
} }
void RPMDIntegrator::step(int steps) { void RPMDIntegrator::step(int steps) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment