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

This commit is contained in:
sjplimp
2012-06-25 22:03:31 +00:00
parent 8f6a8d13d5
commit 66c5617afb
83 changed files with 10821 additions and 639 deletions

View File

@ -47,11 +47,12 @@ class AtomVecAtomic : public AtomVec {
int pack_restart(int, double *);
int unpack_restart(double *);
void create_atom(int, double *);
void data_atom(double *, int, char **);
void data_atom(double *, tagint, char **);
bigint memory_usage();
protected:
int *tag,*type,*mask,*image;
int *tag,*type,*mask;
tagint *image;
double **x,**v,**f;
};