Marlin  1.17.1
 All Classes Namespaces Functions Variables Enumerations Friends Pages
Global.h
1 #ifndef Global_h
2 #define Global_h 1
3 
4 //#ifdef USE_GEAR
5 #include "gear/GearMgr.h"
6 //#endif
7 
8 //#include "marlin/ProcessorEventSeeder.h"
9 
10 
11 
12 namespace marlin{
13 
14  class ProcessorEventSeeder;
15  class StringParameters ;
16 
23  class Global{
24 
25  public:
26 
27  static StringParameters* parameters ;
28 
29 
30 //#ifdef USE_GEAR
31  static gear::GearMgr* GEAR ;
32 //#endif
33 
34  static ProcessorEventSeeder* EVENTSEEDER ;
35 
36 
37  };
38 
39 
40 } // end namespace marlin
41 #endif
Simple global class for Marlin.
Definition: Global.h:23
Processor event seeder - provides independent pseudo-randomly generated seeds for registered processo...
Definition: ProcessorEventSeeder.h:57
Simple parameters class for Marlin.
Definition: StringParameters.h:34