ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
group
/
trunk
/
tcProps
/
tcProps.h
Revision:
1073
Committed:
Sat Feb 28 16:45:57 2004 UTC
(21 years, 2 months ago) by
mmeineke
Content type:
text/plain
File size:
230 byte(s)
Log Message:
finished the rmsd coding. hasn't been debugged
File Contents
#
Content
1
#ifndef __TCPROPS_H__
2
#define __TCPROPS_H__
3
4
5
enum atomNames { HEAD, CH, CH2, CH3, SSD, COM };
6
7
struct atomCoord{
8
enum atomNames type;
9
double pos[3];
10
double vel[3];
11
double u[3];
12
double mass;
13
};
14
15
16
#endif // __TCPROPS_H__