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

This commit is contained in:
sjplimp 2010-10-22 21:27:21 +00:00
parent 6ec332feea
commit fe9bbc0737
2 changed files with 3 additions and 0 deletions

View File

@ -87,6 +87,7 @@ Fix::Fix(LAMMPS *lmp, int narg, char **arg) : Pointers(lmp)
MIN_PRE_FORCE = 32768;
MIN_POST_FORCE = 65536;
MIN_ENERGY = 131072;
POST_RUN = 262144;
}
/* ---------------------------------------------------------------------- */

View File

@ -81,6 +81,7 @@ class Fix : protected Pointers {
int INITIAL_INTEGRATE_RESPA,POST_INTEGRATE_RESPA;
int PRE_FORCE_RESPA,POST_FORCE_RESPA,FINAL_INTEGRATE_RESPA;
int MIN_PRE_EXCHANGE,MIN_PRE_FORCE,MIN_POST_FORCE,MIN_ENERGY;
int POST_RUN;
Fix(class LAMMPS *, int, char **);
virtual ~Fix();
@ -101,6 +102,7 @@ class Fix : protected Pointers {
virtual void post_force(int) {}
virtual void final_integrate() {}
virtual void end_of_step() {}
virtual void post_run() {}
virtual void write_restart(FILE *) {}
virtual void restart(char *) {}