forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@2852 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
b5f579d0fb
commit
0ddeb592a1
|
@ -7,6 +7,7 @@ if ($1 == 1) then
|
|||
cp ewald.cpp ..
|
||||
cp pppm.cpp ..
|
||||
cp pppm_tip4p.cpp ..
|
||||
cp pair_born_coul_long.cpp ..
|
||||
cp pair_buck_coul_long.cpp ..
|
||||
cp pair_coul_long.cpp ..
|
||||
cp pair_lj_cut_coul_long.cpp ..
|
||||
|
@ -20,6 +21,7 @@ if ($1 == 1) then
|
|||
cp ewald.h ..
|
||||
cp pppm.h ..
|
||||
cp pppm_tip4p.h ..
|
||||
cp pair_born_coul_long.h ..
|
||||
cp pair_buck_coul_long.h ..
|
||||
cp pair_coul_long.h ..
|
||||
cp pair_lj_cut_coul_long.h ..
|
||||
|
@ -38,6 +40,7 @@ else if ($1 == 0) then
|
|||
rm ../ewald.cpp
|
||||
rm ../pppm.cpp
|
||||
rm ../pppm_tip4p.cpp
|
||||
rm ../pair_born_coul_long.cpp
|
||||
rm ../pair_buck_coul_long.cpp
|
||||
rm ../pair_coul_long.cpp
|
||||
rm ../pair_lj_cut_coul_long.cpp
|
||||
|
@ -51,6 +54,7 @@ else if ($1 == 0) then
|
|||
rm ../ewald.h
|
||||
rm ../pppm.h
|
||||
rm ../pppm_tip4p.h
|
||||
rm ../pair_born_coul_long.h
|
||||
rm ../pair_buck_coul_long.h
|
||||
rm ../pair_coul_long.h
|
||||
rm ../pair_lj_cut_coul_long.h
|
||||
|
|
|
@ -24,6 +24,7 @@ KSpaceStyle(pppm/tip4p,PPPMTIP4P)
|
|||
#endif
|
||||
|
||||
#ifdef PairInclude
|
||||
#include "pair_born_coul_long.h"
|
||||
#include "pair_buck_coul_long.h"
|
||||
#include "pair_coul_long.h"
|
||||
#include "pair_lj_cut_coul_long.h"
|
||||
|
@ -32,6 +33,7 @@ KSpaceStyle(pppm/tip4p,PPPMTIP4P)
|
|||
#endif
|
||||
|
||||
#ifdef PairClass
|
||||
PairStyle(born/coul/long,PairBuckCoulLong)
|
||||
PairStyle(buck/coul/long,PairBuckCoulLong)
|
||||
PairStyle(coul/long,PairCoulLong)
|
||||
PairStyle(lj/cut/coul/long,PairLJCutCoulLong)
|
||||
|
|
Loading…
Reference in New Issue