ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/shapes/VDWAtom.cpp
Revision: 1184
Committed: Fri May 21 18:34:52 2004 UTC (20 years, 1 month ago) by gezelter
File size: 272 byte(s)
Log Message:
Got PDB reading working, and matching atom types too!

File Contents

# Content
1 #include "VDWAtom.hpp"
2
3 VDWAtom::VDWAtom() {
4 c_mass = 0.0;
5 pos[0] = 0.0;
6 pos[1] = 0.0;
7 pos[2] = 0.0;
8 r_par = 0.0;
9 eps = 0.0;
10 resID = -1;
11 memset(aType, 0, 5 * sizeof(char));
12 memset(aBase, 0, 2 * sizeof(char));
13 memset(resName, 0, 11 * sizeof(char));
14 }
15
16