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

This commit is contained in:
sjplimp
2008-03-21 00:14:38 +00:00
parent a49e234a37
commit 2e8b9cf4b4
18 changed files with 188 additions and 447 deletions

View File

@ -26,7 +26,7 @@ class ComputeTempPartial : public Compute {
double compute_scalar();
void compute_vector();
double dof_remove(double &);
int dof_remove(int);
void remove_bias(int, double *);
void remove_bias_all();
void restore_bias(int, double *);
@ -37,11 +37,9 @@ class ComputeTempPartial : public Compute {
int xflag,yflag,zflag;
int fix_dof;
double tfactor;
double vbias[3]; // stored velocity bias for one atom
double **vbiasall; // stored velocity bias for all atoms
int maxbias; // size of vbiasall array
Compute *tbias; // ptr to additional bias compute
void dof_compute();
};