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 957 by gezelter, Mon Jan 19 16:08:21 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 48 | Line 49 | class MakeStamps{ (public)
49    int atomAssign( event* the_event );
50    int atomEnd( event* the_event );
51  
52 +  int newRigidBody( event* the_event );
53 +  int rigidBodyPosition( event* the_event );
54 +  int rigidBodyOrientation( event* the_event );
55 +  int rigidBodyAssign( event* the_event );
56 +  int rigidBodyEnd( event* the_event );
57 +
58    int newBond( event* the_event );
59    int bondAssign( event* the_event );
60    int bondMember( event* the_event );
# Line 70 | Line 77 | class MakeStamps{ (public)
77  
78   private:
79  
80 <  static const int hash_size = 51;
81 <  static const int hash_shift = 4;
80 >  int hash_size;
81 >  int hash_shift;
82    int hash( char* text );
83    LinkedMolStamp** my_mols;
84    void addMolStamp( MoleculeStamp* the_stamp );
# Line 81 | Line 88 | class MakeStamps{ (public)
88    BondStamp* current_bond;
89    BendStamp* current_bend;
90    TorsionStamp* current_torsion;
91 +  RigidBodyStamp* current_rigidbody;
92  
85  
86  
87  
88
93   };
94  
95  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines