forked from lijiext/lammps
make nlocal_bonus accessible
This commit is contained in:
parent
d890848412
commit
7d0c0bc984
|
@ -92,6 +92,8 @@ class AtomVecBody : public AtomVec {
|
|||
double radius_body(int, int, int *, double *);
|
||||
void set_quat(int, double *);
|
||||
|
||||
int nlocal_bonus;
|
||||
|
||||
private:
|
||||
tagint *tag;
|
||||
int *type,*mask;
|
||||
|
@ -102,7 +104,7 @@ class AtomVecBody : public AtomVec {
|
|||
double **angmom,**torque;
|
||||
int *body;
|
||||
|
||||
int nlocal_bonus,nghost_bonus,nmax_bonus;
|
||||
int nghost_bonus,nmax_bonus;
|
||||
int intdoubleratio; // sizeof(double) / sizeof(int)
|
||||
|
||||
MyPoolChunk<int> *icp;
|
||||
|
|
|
@ -83,6 +83,8 @@ class AtomVecEllipsoid : public AtomVec {
|
|||
|
||||
void set_shape(int, double, double, double);
|
||||
|
||||
int nlocal_bonus;
|
||||
|
||||
private:
|
||||
tagint *tag;
|
||||
int *type,*mask;
|
||||
|
@ -92,7 +94,7 @@ class AtomVecEllipsoid : public AtomVec {
|
|||
double **angmom,**torque;
|
||||
int *ellipsoid;
|
||||
|
||||
int nlocal_bonus,nghost_bonus,nmax_bonus;
|
||||
int nghost_bonus,nmax_bonus;
|
||||
|
||||
void grow_bonus();
|
||||
void copy_bonus(int, int);
|
||||
|
|
|
@ -83,6 +83,8 @@ class AtomVecLine : public AtomVec {
|
|||
|
||||
void set_length(int, double);
|
||||
|
||||
int nlocal_bonus;
|
||||
|
||||
private:
|
||||
tagint *tag;
|
||||
int *type,*mask;
|
||||
|
@ -93,7 +95,7 @@ class AtomVecLine : public AtomVec {
|
|||
double **omega,**torque;
|
||||
int *line;
|
||||
|
||||
int nlocal_bonus,nghost_bonus,nmax_bonus;
|
||||
int nghost_bonus,nmax_bonus;
|
||||
|
||||
void grow_bonus();
|
||||
void copy_bonus(int, int);
|
||||
|
|
|
@ -85,6 +85,8 @@ class AtomVecTri : public AtomVec {
|
|||
|
||||
void set_equilateral(int, double);
|
||||
|
||||
int nlocal_bonus;
|
||||
|
||||
private:
|
||||
tagint *tag;
|
||||
int *type,*mask;
|
||||
|
@ -95,7 +97,7 @@ class AtomVecTri : public AtomVec {
|
|||
double **omega,**angmom,**torque;
|
||||
int *tri;
|
||||
|
||||
int nlocal_bonus,nghost_bonus,nmax_bonus;
|
||||
int nghost_bonus,nmax_bonus;
|
||||
|
||||
void grow_bonus();
|
||||
void copy_bonus(int, int);
|
||||
|
|
Loading…
Reference in New Issue