ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/UseTheForce/DarkSide/fElectrostaticSummationMethod.h
Revision: 2409
Committed: Wed Nov 2 20:36:25 2005 UTC (18 years, 8 months ago) by chrisfen
Content type: text/plain
File size: 875 byte(s)
Log Message:
changing how we deal with summation and screening methods

File Contents

# Content
1 #ifdef __C
2 #ifndef __FELECTROSTATICSUMMATIONMETHOD
3 #define __FELECTROSTATICSUMMATIONMETHOD
4
5 #define NONE 1
6 #define SWITCHING_FUNCTION 2
7 #define SHIFTED_POTENTIAL 3
8 #define SHIFTED_FORCE 4
9 #define REACTION_FIELD 5
10 /* Ewald methods aren't supported yet */
11 #define EWALD_FULL 6
12 #define EWALD_PME 7
13 #define EWALD_SPME 8
14
15 #endif
16 #endif /*__C*/
17
18 #ifdef __FORTRAN90
19
20 INTEGER, PARAMETER:: NONE = 1
21 INTEGER, PARAMETER:: SWITCHING_FUNCTION = 2
22 INTEGER, PARAMETER:: SHIFTED_POTENTIAL = 3
23 INTEGER, PARAMETER:: SHIFTED_FORCE = 4
24 INTEGER, PARAMETER:: REACTION_FIELD = 5
25 INTEGER, PARAMETER:: EWALD_FULL = 6
26 INTEGER, PARAMETER:: EWALD_PME = 7
27 INTEGER, PARAMETER:: EWALD_SPME = 8
28
29 #endif