Merge remote-tracking branch 'lammps-ro/master' into lammps-icms

This commit is contained in:
Axel Kohlmeyer
2013-06-08 12:21:38 +02:00
3 changed files with 10 additions and 1 deletions

View File

@ -63,6 +63,14 @@ FixLangevinEff::~FixLangevinEff()
/* ---------------------------------------------------------------------- */
void FixLangevinEff::post_force(int vflag)
{
if (tallyflag) post_force_tally();
else post_force_no_tally();
}
/* ---------------------------------------------------------------------- */
void FixLangevinEff::post_force_no_tally()
{
double gamma1,gamma2,t_target;

View File

@ -30,6 +30,7 @@ class FixLangevinEff : public FixLangevin {
~FixLangevinEff();
void end_of_step();
double compute_scalar();
void post_force(int);
private:
double *erforcelangevin;

View File

@ -31,7 +31,7 @@ class FixLangevin : public Fix {
int setmask();
void init();
void setup(int);
void post_force(int);
virtual void post_force(int);
void post_force_respa(int, int, int);
virtual void end_of_step();
void reset_target(double);