git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@15979 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
40
src/fix.h
40
src/fix.h
@ -113,6 +113,7 @@ class Fix : protected Pointers {
|
||||
virtual void setup_pre_exchange() {}
|
||||
virtual void setup_pre_neighbor() {}
|
||||
virtual void setup_pre_force(int) {}
|
||||
virtual void setup_pre_reverse(int, int) {}
|
||||
virtual void min_setup(int) {}
|
||||
virtual void initial_integrate(int) {}
|
||||
virtual void post_integrate() {}
|
||||
@ -151,12 +152,10 @@ class Fix : protected Pointers {
|
||||
virtual void post_force_respa(int, int, int) {}
|
||||
virtual void final_integrate_respa(int, int) {}
|
||||
|
||||
virtual void min_setup_pre_exchange() {}
|
||||
virtual void min_setup_pre_neighbor() {}
|
||||
virtual void min_setup_pre_force(int) {}
|
||||
virtual void min_pre_exchange() {}
|
||||
virtual void min_pre_neighbor() {}
|
||||
virtual void min_pre_force(int) {}
|
||||
virtual void min_pre_reverse(int,int) {}
|
||||
virtual void min_post_force(int) {}
|
||||
|
||||
virtual double min_energy(double *) {return 0.0;}
|
||||
@ -241,23 +240,24 @@ namespace FixConst {
|
||||
static const int PRE_EXCHANGE = 1<<2;
|
||||
static const int PRE_NEIGHBOR = 1<<3;
|
||||
static const int PRE_FORCE = 1<<4;
|
||||
static const int POST_FORCE = 1<<5;
|
||||
static const int FINAL_INTEGRATE = 1<<6;
|
||||
static const int END_OF_STEP = 1<<7;
|
||||
static const int THERMO_ENERGY = 1<<8;
|
||||
static const int INITIAL_INTEGRATE_RESPA = 1<<9;
|
||||
static const int POST_INTEGRATE_RESPA = 1<<10;
|
||||
static const int PRE_FORCE_RESPA = 1<<11;
|
||||
static const int POST_FORCE_RESPA = 1<<12;
|
||||
static const int FINAL_INTEGRATE_RESPA = 1<<13;
|
||||
static const int MIN_PRE_EXCHANGE = 1<<14;
|
||||
static const int MIN_PRE_NEIGHBOR = 1<<15;
|
||||
static const int MIN_PRE_FORCE = 1<<16;
|
||||
static const int MIN_POST_FORCE = 1<<17;
|
||||
static const int MIN_ENERGY = 1<<18;
|
||||
static const int POST_RUN = 1<<19;
|
||||
static const int PRE_REVERSE = 1<<20;
|
||||
static const int FIX_CONST_LAST = 1<<21;
|
||||
static const int PRE_REVERSE = 1<<5;
|
||||
static const int POST_FORCE = 1<<6;
|
||||
static const int FINAL_INTEGRATE = 1<<7;
|
||||
static const int END_OF_STEP = 1<<8;
|
||||
static const int POST_RUN = 1<<9;
|
||||
static const int THERMO_ENERGY = 1<<10;
|
||||
static const int INITIAL_INTEGRATE_RESPA = 1<<11;
|
||||
static const int POST_INTEGRATE_RESPA = 1<<12;
|
||||
static const int PRE_FORCE_RESPA = 1<<13;
|
||||
static const int POST_FORCE_RESPA = 1<<14;
|
||||
static const int FINAL_INTEGRATE_RESPA = 1<<15;
|
||||
static const int MIN_PRE_EXCHANGE = 1<<16;
|
||||
static const int MIN_PRE_NEIGHBOR = 1<<17;
|
||||
static const int MIN_PRE_FORCE = 1<<18;
|
||||
static const int MIN_PRE_REVERSE = 1<<19;
|
||||
static const int MIN_POST_FORCE = 1<<20;
|
||||
static const int MIN_ENERGY = 1<<21;
|
||||
static const int FIX_CONST_LAST = 1<<22;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user