ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/Molecule.hpp
Revision: 435
Committed: Fri Mar 28 19:33:37 2003 UTC (21 years, 3 months ago) by mmeineke
File size: 2368 byte(s)
Log Message:
fixed a bug where the Excludes were not being created properly

File Contents

# Content
1 #ifndef _MOLECULE_H_
2 #define _MOLECULE_H_
3
4 #include "Atom.hpp"
5 #include "SRI.hpp"
6 #include "MoleculeStamp.hpp"
7 #include "Exclude.hpp"
8
9 typedef struct{
10
11 int stampID; // the ID in the BASS component stamp array
12 int nAtoms; // the number of atoms in the molecule
13 int nBonds; // ... .. .. . .bonds .. .. . . . .
14 int nBends; // . . . . .. . .bends . . . . .. .
15 int nTorsions; // .. . . .. . . torsions . . .. . .
16 int nOriented; // .. . . . .. . oriented atoms . . .
17 int nExcludes; // . . .. . . . .exclude pairs.. . . .
18
19 Atom** myAtoms; // the array of atoms
20 Exclude** myExcludes;// the array of Excluded pairs
21 Bond** myBonds; // arrays of all the short range interactions
22 Bend** myBends;
23 Torsion** myTorsions;
24
25
26 } molInit;
27
28 class Molecule{
29
30 public:
31
32 Molecule( void );
33 ~Molecule( void );
34
35 void initialize( molInit &theInit );
36
37 int getNAtoms ( void ) {return nAtoms;}
38 int getNBonds ( void ) {return nBonds;}
39 int getNBends ( void ) {return nBends;}
40 int getNTorsions( void ) {return nTorsions;}
41 int getNOriented( void ) {return nOriented;}
42 int getNExcludes( void ) {return nExcludes;}
43 int getNMembers ( void ) {return nMembers;}
44 int getStampID ( void ) {return stampID;}
45
46 Atom** getMyAtoms ( void ) {return myAtoms;}
47 Bond** getMyBonds ( void ) {return myBonds;}
48 Bend** getMyBends ( void ) {return myBends;}
49 Torsion** getMyTorsions( void ) {return myTorsions;}
50 Exclude** getMyExcludes( void ) {return myExcludes;}
51
52 void setStampID( int info ) {stampID = info;}
53
54 void calcForces( void );
55 double getPotential( void );
56
57 void printMe( void );
58
59
60 private:
61
62 int stampID; // the ID in the BASS component stamp array
63 int nAtoms; // the number of atoms in the molecule
64 int nBonds; // ... .. .. . .bonds .. .. . . . .
65 int nBends; // . . . . .. . .bends . . . . .. .
66 int nTorsions; // .. . . .. . . torsions . . .. . .
67 int nOriented; // .. . . . .. . oriented atoms . . .
68 int nMembers; // .. . . . . . .atoms (legacy code) . . .
69 int nExcludes; // . . . . .. .. excludes .. . .
70
71 Atom** myAtoms; // the array of atoms
72 Bond** myBonds; // arrays of all the short range interactions
73 Bend** myBends;
74 Torsion** myTorsions;
75 Exclude** myExcludes; // array of the excluded pairs of long range forces
76
77 };
78
79 #endif