ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/types/AtomTypeProperties.h
Revision: 3172
Committed: Fri Jul 13 17:37:25 2007 UTC (17 years ago) by gezelter
Content type: text/plain
File size: 1072 byte(s)
Log Message:
removed MWM as an atom type property

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 RealType,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 int is_SC;
25 } AtomTypeProperties;
26 #endif
27 #endif
28
29 #ifdef __FORTRAN90
30
31 type :: AtomTypeProperties
32 SEQUENCE
33 integer :: ident
34 integer :: is_Directional
35 integer :: is_LennardJones
36 integer :: is_Charge
37 integer :: is_Dipole
38 integer :: is_SplitDipole
39 integer :: is_Quadrupole
40 integer :: is_Sticky
41 integer :: is_StickyPower
42 integer :: is_GayBerne
43 integer :: is_EAM
44 integer :: is_Shape
45 integer :: is_FLARB
46 integer :: is_SC
47 end type AtomTypeProperties
48 #endif