ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libBASS/MakeStamps.hpp
(Generate patch)

Comparing:
branches/mmeineke/OOPSE/libBASS/MakeStamps.hpp (file contents), Revision 377 by mmeineke, Fri Mar 21 17:42:12 2003 UTC vs.
trunk/OOPSE/libBASS/MakeStamps.hpp (file contents), Revision 981 by gezelter, Mon Jan 26 18:52:42 2004 UTC

# Line 1 | Line 1
1   #ifndef __MAKESTAMPS_H__
2   #define __MAKESTAMPS_H__
3  
4 < #include <cstdlib>
5 < #include <cstring>
4 > #include <stdlib.h>
5 > #include <string.h>
6  
7   #include "BASS_interface.h"
8   #include "MoleculeStamp.hpp"
# Line 10 | Line 10
10   #include "BondStamp.hpp"
11   #include "BendStamp.hpp"
12   #include "TorsionStamp.hpp"
13 + #include "RigidBodyStamp.hpp"
14  
15   class LinkedMolStamp{
16  
# Line 42 | Line 43 | class MakeStamps{ (public)
43    int moleculeAssign( event* the_event );
44    int moleculeEnd( event* the_event );
45  
46 <  int newAtom( event* the_event );
46 >  int newAtomInMolecule( event* the_event );
47 >  int newAtomInRigidBody( event* the_event );
48    int atomPosition( event* the_event );
49    int atomOrientation( event* the_event );
50    int atomAssign( event* the_event );
51    int atomEnd( event* the_event );
52  
53 +  int newRigidBody( event* the_event );
54 +  int rigidBodyPosition( event* the_event );
55 +  int rigidBodyOrientation( event* the_event );
56 +  int rigidBodyAssign( event* the_event );
57 +  int rigidBodyEnd( event* the_event );
58 +
59    int newBond( event* the_event );
60    int bondAssign( event* the_event );
61    int bondMember( event* the_event );
# Line 70 | Line 78 | class MakeStamps{ (public)
78  
79   private:
80  
81 <  static const int hash_size = 51;
82 <  static const int hash_shift = 4;
81 >  int hash_size;
82 >  int hash_shift;
83    int hash( char* text );
84    LinkedMolStamp** my_mols;
85    void addMolStamp( MoleculeStamp* the_stamp );
# Line 81 | Line 89 | class MakeStamps{ (public)
89    BondStamp* current_bond;
90    BendStamp* current_bend;
91    TorsionStamp* current_torsion;
92 +  RigidBodyStamp* current_rigidbody;
93  
85  
86  
87  
88
94   };
95  
96  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines