forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6166 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
c41b9fa472
commit
7bef76d7f2
|
@ -27,7 +27,7 @@ namespace LAMMPS_NS {
|
|||
class PairBornCoulLong : public Pair {
|
||||
public:
|
||||
PairBornCoulLong(class LAMMPS *);
|
||||
~PairBornCoulLong();
|
||||
virtual ~PairBornCoulLong();
|
||||
void compute(int, int);
|
||||
void settings(int, char **);
|
||||
void coeff(int, char **);
|
||||
|
@ -40,7 +40,7 @@ class PairBornCoulLong : public Pair {
|
|||
double single(int, int, int, int, double, double, double, double &);
|
||||
void *extract(char *, int &);
|
||||
|
||||
private:
|
||||
protected:
|
||||
double cut_lj_global;
|
||||
double **cut_lj,**cut_ljsq;
|
||||
double cut_coul,cut_coulsq;
|
||||
|
|
|
@ -27,7 +27,7 @@ namespace LAMMPS_NS {
|
|||
class PairBuckCoulLong : public Pair {
|
||||
public:
|
||||
PairBuckCoulLong(class LAMMPS *);
|
||||
~PairBuckCoulLong();
|
||||
virtual ~PairBuckCoulLong();
|
||||
void compute(int, int);
|
||||
void settings(int, char **);
|
||||
void coeff(int, char **);
|
||||
|
@ -40,7 +40,7 @@ class PairBuckCoulLong : public Pair {
|
|||
double single(int, int, int, int, double, double, double, double &);
|
||||
void *extract(char *, int &);
|
||||
|
||||
private:
|
||||
protected:
|
||||
double cut_lj_global;
|
||||
double **cut_lj,**cut_ljsq;
|
||||
double cut_coul,cut_coulsq;
|
||||
|
|
Loading…
Reference in New Issue