git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@2967 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2009-07-02 20:53:24 +00:00
parent f4cc5550f7
commit 6346e48601
5 changed files with 7 additions and 62 deletions

View File

@ -242,10 +242,7 @@ double ComputeTempSphere::compute_scalar()
invoked_scalar = update->ntimestep;
if (tempbias) {
if (!(tbias->invoked_flag & INVOKED_SCALAR)) {
tbias->compute_scalar();
tbias->invoked_flag |= INVOKED_SCALAR;
}
if (tbias->invoked_scalar != update->ntimestep) tbias->compute_scalar();
tbias->remove_bias_all();
}
@ -329,10 +326,7 @@ void ComputeTempSphere::compute_vector()
invoked_vector = update->ntimestep;
if (tempbias) {
if (!(tbias->invoked_flag & INVOKED_VECTOR)) {
tbias->compute_vector();
tbias->invoked_flag |= INVOKED_VECTOR;
}
if (tbias->invoked_vector != update->ntimestep) tbias->compute_vector();
tbias->remove_bias_all();
}