CosmoGRaPH v0.0
cosmo_globals.h
1 #ifndef COSMO_GLOBALS_H
2 #define COSMO_GLOBALS_H
3 
4 #include "cosmo_types.h"
5 #include "cosmo_macros.h"
6 
7 #ifndef dt
8  extern cosmo::real_t dt;
9 #endif
10 #ifndef dx
11  extern cosmo::real_t dx;
12 #endif
13 
14 #include "utils/Timer.h"
15 #include "utils/ConfigParser.h"
16 
17 extern cosmo::TimerManager _timer;
18 extern cosmo::ConfigParser _config;
19 
20 #endif
Definition: ConfigParser.h:10
TimerManager class containing multiple timers; access individual timers via, eg, TM["my_timer"].start()
Definition: Timer.h:38