ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/madProps/headers/madProps.h
Revision: 44
Committed: Fri Jul 19 19:06:32 2002 UTC (21 years, 11 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

File Contents

# Content
1 #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