| Revision: | 46 |
| Committed: | Tue Jul 23 20:10:49 2002 UTC (23 years, 3 months ago) by mmeineke |
| Content type: | text/plain |
| File size: | 418 byte(s) |
| Log Message: | added the cos correlation function |
| # | Content |
|---|---|
| 1 | #ifndef __MADPROPS_H__ |
| 2 | #define __MADPROPS_H__ |
| 3 | |
| 4 | struct coords{ |
| 5 | double x; |
| 6 | double y; |
| 7 | double z; |
| 8 | }; |
| 9 | |
| 10 | typedef char atomID[30]; |
| 11 | |
| 12 | struct vect{ |
| 13 | double x; |
| 14 | double y; |
| 15 | double z; |
| 16 | }; |
| 17 | |
| 18 | |
| 19 | struct xyz_frame{ |
| 20 | int nAtoms; |
| 21 | double time; |
| 22 | double boxX, boxY, boxZ; |
| 23 | struct coords *r; |
| 24 | struct vect *v; |
| 25 | atomID *names; |
| 26 | }; |
| 27 | |
| 28 | extern void map( double *x, double *y, double *z, |
| 29 | double boxX, double boxY, double boxZ ); |
| 30 | |
| 31 | #endif |