Revision: | 44 |
Committed: | Fri Jul 19 19:06:32 2002 UTC (22 years, 9 months ago) by mmeineke |
Content type: | text/plain |
File size: | 284 byte(s) |
Log Message: | finished working on the command line options, and started working on the GofR added the GofR header, and moved the strructure definitions to the madProps.h |
# | User | Rev | Content |
---|---|---|---|
1 | mmeineke | 44 | #ifndef __MADPROPS_H__ |
2 | #define __MADPROPS_H__ | ||
3 | |||
4 | struct coords{ | ||
5 | double x; | ||
6 | double y; | ||
7 | double z; | ||
8 | char name[30]; | ||
9 | }; | ||
10 | |||
11 | struct vect{ | ||
12 | double x; | ||
13 | double y; | ||
14 | double z; | ||
15 | }; | ||
16 | |||
17 | |||
18 | struct xyz_frame{ | ||
19 | int nAtoms; | ||
20 | double time; | ||
21 | double boxX, boxY, boxZ; | ||
22 | struct coords *r; | ||
23 | struct vect *v; | ||
24 | }; | ||
25 | |||
26 | #endif |