EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EicEventManager.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EicEventManager.h
1 //
2 // AYK (ayk@bnl.gov), 2013/06/13
3 //
4 // Need this nonsense derived class only to be able to split
5 // FairEventManager::Init() method into two (Init() & Run())
6 // and be able to access gGeoManager from within eventDisplay.C;
7 //
8 
9 #include <FairEventManager.h>
10 
11 #ifndef _EIC_EVENT_MANAGER_
12 #define _EIC_EVENT_MANAGER_
13 
15 {
16  public:
19 
20  void SetInputFile(TString fname);
21 
22  //
23  // Prefer to keep Init() -> Run() splitting, even that in default mode
24  // both calls should happen one after the other; user may still want to
25  // modify graphics settings in eventDisplay.C scripts (say change
26  // transparency or visibility of some of the volumes);
27  //
28 
29  void Init();
30  // NB: default behaviour of TEveGeoTopNode() is (1,3); choose (0,6)
31  // and allow for full configurability in this call if needed;
32  void Run(Int_t visopt = 0, Int_t vislvl = 6, Int_t maxvisnds = 10000);
33 
34  private:
36 
38 };
39 
40 #endif