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

Comparing trunk/OOPSE/libmdtools/SimInfo.hpp (file contents):
Revision 644 by mmeineke, Tue Jul 22 16:41:08 2003 UTC vs.
Revision 658 by tim, Thu Jul 31 15:35:07 2003 UTC

# Line 1 | Line 1
1   #ifndef __SIMINFO_H__
2   #define __SIMINFO_H__
3  
4 + #include <map>
5 + #include <string>
6 + #include <vector>
7  
5
8   #include "Atom.hpp"
9   #include "Molecule.hpp"
10   #include "AbstractClasses.hpp"
# Line 11 | Line 13
13   #define __C
14   #include "fSimulation.h"
15   #include "fortranWrapDefines.hpp"
16 + #include "GenericData.hpp"
17  
18  
19  
# Line 152 | Line 155 | class SimInfo{ (private)
155    void printMat9(double A[9]);
156    double matDet3(double m[3][3]);
157    
158 +  
159 +  void addProperty(GenericData* prop);
160 +  GenericData* getProperty(const string& propName);
161 +  vector<GenericData*> getProperties();      
162 +  
163   private:
164  
165    double origRcut, origEcr;
# Line 175 | Line 183 | class SimInfo{ (private)
183    void (*setFortranBoxSize) setFortranBoxList;
184    
185    void (*notifyFortranCutOffs) notifyFortranCutOffList;
186 +  
187 +  //Addtional Properties of SimInfo
188 +  map<string, GenericData*> properties;
189  
190   };
191  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines