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

This commit is contained in:
sjplimp
2007-02-21 00:15:29 +00:00
parent e85be07e18
commit 64b10074dc
14 changed files with 455 additions and 202 deletions

View File

@ -23,15 +23,15 @@ class Compute : protected Pointers {
char *id,*style;
int igroup,groupbit;
double scalar; // computed scalar
double *vector; // computed vector
double scalar; // computed global scalar
double *vector; // computed global vector
double *scalar_atom; // computed per-atom scalar
double **vector_atom; // computed per-atom vector
int scalar_flag; // 0/1 if compute_scalar() function exists
int vector_flag; // 0/1 if compute_vector() function exists
int peratom_flag; // 0/1 if compute_peratom() function exists
int size_vector; // N = size of vector
int size_vector; // N = size of global vector
int size_peratom; // 0 = just scalar_atom, N = size of vector_atom
int extensive; // 0/1 if scalar,vector are intensive/extensive values