| 1 |
|
#ifndef __GLOBALS_H__ |
| 2 |
|
#define __GLOBALS_H__ |
| 3 |
|
|
| 4 |
+ |
#include <iostream> |
| 5 |
+ |
|
| 6 |
|
#include <cstdlib> |
| 7 |
|
#include <vector> |
| 8 |
|
|
| 20 |
|
|
| 21 |
|
Globals(); |
| 22 |
|
~Globals(); |
| 23 |
+ |
|
| 24 |
+ |
void printIC( void ) { std::cerr << "initialConfig = " << initial_config << "\n"; } |
| 25 |
|
|
| 26 |
|
int newComponent( event* the_event ); |
| 27 |
|
int componentAssign( event* the_event ); |
| 47 |
|
|
| 48 |
|
|
| 49 |
|
int getNzConstraints( void ) { return n_zConstraints; } |
| 50 |
< |
char* getInitialConfig( void ) { return initial_config; } |
| 50 |
> |
char* getInitialConfig( void ) { std::cerr << "giving away " << initial_config << "\n"; return initial_config; } |
| 51 |
|
char* getFinalConfig( void ) { return final_config; } |
| 52 |
|
int getNMol( void ) { return n_mol; } |
| 53 |
|
double getDensity( void ) { return density; } |