ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-3.0/src/types/AtomTypeProperties.h
Revision: 2220
Committed: Thu May 5 14:47:35 2005 UTC (19 years, 2 months ago) by chrisfen
Content type: text/plain
File size: 1036 byte(s)
Log Message:
OOPSE setup for TAP water.  It's not parametrized, but OOPSE will now let me run it...

File Contents

# Content
1 #ifdef __C
2 #ifndef TYPES_ATOMTYPEPROPERTIES_H
3 #define TYPES_ATOMTYPEPROPERTIES_H
4
5 /**
6 * This header provides dual access for the AtomTypeProperties between
7 * fortran and C. NOTE: The sequence of struct components MUST match
8 * between C and Fortran and in general be packed double,int,char.
9 */
10 typedef struct{
11 int ident;
12 int is_Directional;
13 int is_LennardJones;
14 int is_Charge;
15 int is_Dipole;
16 int is_SplitDipole;
17 int is_Quadrupole;
18 int is_Sticky;
19 int is_StickyPower;
20 int is_GayBerne;
21 int is_EAM;
22 int is_Shape;
23 int is_FLARB;
24 } AtomTypeProperties;
25 #endif
26 #endif
27
28 #ifdef __FORTRAN90
29
30 type :: AtomTypeProperties
31 SEQUENCE
32 integer :: ident
33 integer :: is_Directional
34 integer :: is_LennardJones
35 integer :: is_Charge
36 integer :: is_Dipole
37 integer :: is_SplitDipole
38 integer :: is_Quadrupole
39 integer :: is_Sticky
40 integer :: is_StickyPower
41 integer :: is_GayBerne
42 integer :: is_EAM
43 integer :: is_Shape
44 integer :: is_FLARB
45 end type AtomTypeProperties
46 #endif