20 |
|
#include "GenericData.hpp" |
21 |
|
//#include "Minimizer.hpp" |
22 |
|
//#include "OOPSEMinimizer.hpp" |
23 |
< |
|
23 |
> |
double roundMe( double x ); |
24 |
|
class OOPSEMinimizer; |
25 |
|
class SimInfo{ |
26 |
|
|
91 |
|
int useReactionField; |
92 |
|
int useGB; |
93 |
|
int useEAM; |
94 |
+ |
int useMolecularCutoffs; |
95 |
|
|
96 |
|
bool useInitXSstate; |
97 |
|
double orthoTolerance; |
124 |
|
char statusName[300]; // the name of the stat file to be written |
125 |
|
|
126 |
|
int seed; //seed for random number generator |
127 |
+ |
|
128 |
+ |
|
129 |
+ |
vector<double> mfact; |
130 |
+ |
int ngroup; |
131 |
+ |
vector<int> groupList; |
132 |
+ |
vector<int> groupStart; |
133 |
+ |
|
134 |
|
// refreshes the sim if things get changed (load balanceing, volume |
135 |
|
// adjustment, etc.) |
136 |
|
|
150 |
|
int getNDF(); |
151 |
|
int getNDFraw(); |
152 |
|
int getNDFtranslational(); |
153 |
< |
|
153 |
> |
int getTotIntegrableObjects(); |
154 |
|
void setBox( double newBox[3] ); |
155 |
|
void setBoxM( double newBox[3][3] ); |
156 |
|
void getBoxM( double theBox[3][3] ); |
178 |
|
|
179 |
|
void addProperty(GenericData* prop); |
180 |
|
GenericData* getProperty(const string& propName); |
181 |
< |
vector<GenericData*> getProperties(); |
181 |
> |
//vector<GenericData*>& getProperties() {return properties;} |
182 |
|
|
183 |
|
int getSeed(void) { return seed; } |
184 |
|
void setSeed(int theSeed) { seed = theSeed;} |
214 |
|
|
215 |
|
}; |
216 |
|
|
217 |
+ |
void getFortranGroupArray(SimInfo* info, vector<double>& mfact, int& ngroup, |
218 |
+ |
vector<int>& groupList, vector<int>& groupStart); |
219 |
+ |
|
220 |
|
#endif |