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

This commit is contained in:
sjplimp
2015-01-05 16:50:37 +00:00
parent 1b31895cee
commit eb8a7d8d97
2 changed files with 23 additions and 13 deletions

View File

@ -40,7 +40,10 @@ class FixVector : public Fix {
int *which,*argindex,*value2index;
char **ids;
bigint nextstep,initialstep;
int ncount; // # of values currently in growing vector or array
int ncountmax; // max # of values vector/array can hold
double *vector;
double **array;
};