| 1 |
|
#ifndef __SIMINFO_H__ |
| 2 |
|
#define __SIMINFO_H__ |
| 3 |
|
|
| 4 |
– |
#include <map> |
| 5 |
– |
#include <string> |
| 6 |
– |
#include <vector> |
| 7 |
– |
|
| 4 |
|
#include "Atom.hpp" |
| 5 |
|
#include "Molecule.hpp" |
| 6 |
|
#include "AbstractClasses.hpp" |
| 169 |
|
|
| 170 |
|
SimState* getConfiguration( void ) { return myConfiguration; } |
| 171 |
|
|
| 172 |
< |
void addProperty(GenericData* prop); |
| 173 |
< |
GenericData* getProperty(const string& propName); |
| 178 |
< |
vector<GenericData*> getProperties(); |
| 172 |
> |
GenericData* getProperty(char* propName); |
| 173 |
> |
GenericData* getProperties() {return properties; } |
| 174 |
|
|
| 175 |
|
int getSeed(void) { return seed; } |
| 176 |
|
void setSeed(int theSeed) { seed = theSeed;} |
| 207 |
|
notifyFortranCutOff_TD notifyFortranCutOffs; |
| 208 |
|
|
| 209 |
|
//Addtional Properties of SimInfo |
| 210 |
< |
map<string, GenericData*> properties; |
| 210 |
> |
GenericData* properties; |
| 211 |
|
|
| 212 |
|
}; |
| 213 |
|
|