ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/UseTheForce/fSwitchingFunction.h
Revision: 2715
Committed: Sun Apr 16 02:51:16 2006 UTC (18 years, 2 months ago) by chrisfen
Content type: text/plain
File size: 522 byte(s)
Log Message:
added a cubic spline to switcheroo

File Contents

# Content
1 #ifdef __C
2 #ifndef __FSWITCHINGFUNCTION
3 #define __FSWITCHINGFUNCTION
4
5 #define NSWITCHTYPES 3
6 #define LJ_SWITCH 1
7 #define ELECTROSTATIC_SWITCH 2
8 #define GROUP_SWITCH 3
9 #define SPLINE_SEGMENTS 101
10
11 #endif
12 #endif /*__C*/
13
14 #ifdef __FORTRAN90
15
16 INTEGER, PARAMETER:: NSWITCHTYPES = 3
17 INTEGER, PARAMETER:: LJ_SWITCH = 1
18 INTEGER, PARAMETER:: ELECTROSTATIC_SWITCH = 2
19 INTEGER, PARAMETER:: GROUP_SWITCH = 3
20 INTEGER, PARAMETER:: SPLINE_SEGMENTS = 101
21
22 #endif