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

This commit is contained in:
sjplimp 2013-02-22 14:55:59 +00:00
parent 6ecbe94ce5
commit 2e1dd0f24b
2 changed files with 10 additions and 0 deletions

View File

@ -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;

View File

@ -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;