forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9546 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
6ecbe94ce5
commit
2e1dd0f24b
|
@ -109,6 +109,7 @@ int FixQEQComb::setmask()
|
|||
int mask = 0;
|
||||
mask |= POST_FORCE;
|
||||
mask |= POST_FORCE_RESPA;
|
||||
mask |= MIN_POST_FORCE;
|
||||
return mask;
|
||||
}
|
||||
|
||||
|
@ -153,6 +154,13 @@ void FixQEQComb::setup(int vflag)
|
|||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void FixQEQComb::min_post_force(int vflag)
|
||||
{
|
||||
post_force(vflag);
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void FixQEQComb::post_force(int vflag)
|
||||
{
|
||||
int i,ii,iloop,loopmax,inum,*ilist;
|
||||
|
|
|
@ -38,6 +38,8 @@ class FixQEQComb : public Fix {
|
|||
int pack_comm(int , int *, double *, int, int *);
|
||||
void unpack_comm(int , int , double *);
|
||||
|
||||
void min_post_force(int);
|
||||
|
||||
protected:
|
||||
int me,firstflag;
|
||||
double precision;
|
||||
|
|
Loading…
Reference in New Issue