00001 #ifndef _MQELEMENT_H_
00002 #define _MQELEMENT_H_
00003
00004
00005
00006
00007
00008
00018 #define NO_OF_ELEMENTS 5
00019
00025 struct Element
00026 {
00027 char* symbol;
00028 const float mass;
00029 };
00030
00031 typedef struct Element Element;
00032
00033
00034 extern const Element H;
00035 extern const Element C;
00036 extern const Element N;
00037 extern const Element O;
00038 extern const Element S;
00039
00040 extern const Element C12;
00041 extern const Element C13;
00042 extern const Element H1;
00043 extern const Element N14;
00044 extern const Element O16;
00045 extern const Element S32;
00046
00047 extern const float electron_mass;
00048
00049 #endif