diff --git a/src/ASPHERE/compute_temp_asphere.h b/src/ASPHERE/compute_temp_asphere.h index 544d811355..4edfee325d 100755 --- a/src/ASPHERE/compute_temp_asphere.h +++ b/src/ASPHERE/compute_temp_asphere.h @@ -37,7 +37,7 @@ class ComputeTempAsphere : public Compute { void restore_bias(int, double *); private: - int fix_dof,mode; + int mode; double tfactor; char *id_bias; class Compute *tbias; // ptr to additional bias compute diff --git a/src/compute_temp_com.h b/src/compute_temp_com.h index f59a267d36..8b5b3f1e4b 100644 --- a/src/compute_temp_com.h +++ b/src/compute_temp_com.h @@ -39,7 +39,6 @@ class ComputeTempCOM : public Compute { void restore_bias_all(); private: - int fix_dof; double tfactor,masstotal; void dof_compute(); diff --git a/src/compute_temp_deform.h b/src/compute_temp_deform.h index 92052d986f..8faed4bfac 100644 --- a/src/compute_temp_deform.h +++ b/src/compute_temp_deform.h @@ -40,7 +40,6 @@ class ComputeTempDeform : public Compute { double memory_usage(); protected: - int fix_dof; double tfactor; virtual void dof_compute(); diff --git a/src/compute_temp_partial.h b/src/compute_temp_partial.h index a6178e4ae3..2fda76237d 100644 --- a/src/compute_temp_partial.h +++ b/src/compute_temp_partial.h @@ -42,7 +42,6 @@ class ComputeTempPartial : public Compute { protected: int xflag,yflag,zflag; - int fix_dof; double tfactor; void dof_compute(); diff --git a/src/compute_temp_profile.h b/src/compute_temp_profile.h index aad7a1f2c4..634090ea8d 100644 --- a/src/compute_temp_profile.h +++ b/src/compute_temp_profile.h @@ -44,7 +44,6 @@ class ComputeTempProfile : public Compute { int xflag,yflag,zflag,ncount,outflag; int nbinx,nbiny,nbinz,nbins; int ivx,ivy,ivz; - int fix_dof; double tfactor; int box_change,triclinic; diff --git a/src/compute_temp_ramp.h b/src/compute_temp_ramp.h index 4eaa21de50..3c1497e71d 100644 --- a/src/compute_temp_ramp.h +++ b/src/compute_temp_ramp.h @@ -44,7 +44,7 @@ class ComputeTempRamp : public Compute { double coord_lo,coord_hi; int v_dim; double v_lo,v_hi; - int scaleflag,fix_dof; + int scaleflag; double tfactor,xscale,yscale,zscale; void dof_compute(); diff --git a/src/compute_temp_sphere.h b/src/compute_temp_sphere.h index 7d4f34b8f4..505276f8e3 100644 --- a/src/compute_temp_sphere.h +++ b/src/compute_temp_sphere.h @@ -37,7 +37,7 @@ class ComputeTempSphere : public Compute { void restore_bias(int, double *); private: - int fix_dof,mode; + int mode; double tfactor; double *inertia; char *id_bias;