| 1 |
|
#ifndef __SIMSETUP_H__ |
| 2 |
|
#define __SIMSETUP_H__ |
| 3 |
|
#include <string> |
| 4 |
< |
#include "StringUtils.hpp" |
| 5 |
< |
#include "MakeStamps.hpp" |
| 6 |
< |
#include "Globals.hpp" |
| 7 |
< |
#include "ForceFields.hpp" |
| 8 |
< |
#include "SimInfo.hpp" |
| 9 |
< |
#include "ReadWrite.hpp" |
| 10 |
< |
#include "AllIntegrator.hpp" |
| 4 |
> |
#include "utils/StringUtils.hpp" |
| 5 |
> |
#include "types/MakeStamps.hpp" |
| 6 |
> |
#include "io/Globals.hpp" |
| 7 |
> |
#include "UseTheForce/ForceFields.hpp" |
| 8 |
> |
#include "brains/SimInfo.hpp" |
| 9 |
> |
#include "io/ReadWrite.hpp" |
| 10 |
> |
#include "integrators/AllIntegrator.hpp" |
| 11 |
|
|
| 12 |
|
using namespace std; |
| 13 |
+ |
using namespace oopse; |
| 14 |
|
// this routine is defined in BASS_interface.cpp |
| 15 |
|
extern void set_interface_stamps( MakeStamps* ms, Globals* g ); |
| 16 |
|
|
| 79 |
|
int globalMolCounter; |
| 80 |
|
|
| 81 |
|
char force_field[100]; |
| 82 |
< |
char forcefield_variant[100]; |
| 82 |
> |
string forcefield_variant; |
| 83 |
|
char ensemble[100]; |
| 84 |
|
Component** the_components; |
| 85 |
|
|