~ubuntu-branches/debian/sid/lammps/sid

« back to all changes in this revision

Viewing changes to src/USER-FEP/fix_adapt_fep.h

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2015-04-29 23:44:49 UTC
  • mfrom: (5.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20150429234449-mbhy9utku6hp6oq8
Tags: 0~20150313.gitfa668e1-1
Upload into unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* ----------------------------------------------------------------------
 
1
/* -*- c++ -*- ----------------------------------------------------------
2
2
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
3
3
   http://lammps.sandia.gov, Sandia National Laboratories
4
4
   Steve Plimpton, sjplimp@sandia.gov
32
32
  FixAdaptFEP(class LAMMPS *, int, char **);
33
33
  ~FixAdaptFEP();
34
34
  int setmask();
 
35
  void post_constructor();
35
36
  void init();
36
37
  void setup_pre_force(int);
37
38
  void pre_force(int);
38
39
  void post_run();
 
40
  void setup_pre_force_respa(int,int);
 
41
  void pre_force_respa(int,int,int);
 
42
  void set_arrays(int);
39
43
 
40
44
 private:
41
45
  int nadapt,resetflag,scaleflag,afterflag;
42
46
  int anypair;
 
47
  int nlevels_respa;
 
48
  char *id_fix_diam,*id_fix_chg;
 
49
  class FixStore *fix_diam,*fix_chg;
43
50
 
44
51
  struct Adapt {
45
52
    int which,ivar;