EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EicMCApplication.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EicMCApplication.h
1 //
2 // AYK (ayk@bnl.gov), 2015/08/04
3 //
4 // A derived class with the only purpose to expand functionality
5 // of FairMCApplication::Stepping() call;
6 //
7 
8 #include <FairMCApplication.h>
9 
10 #ifndef _EIC_MC_APPLICATION_
11 #define _EIC_MC_APPLICATION_
12 
14 {
15  public:
17  EicMCApplication(const char* name, const char* title, TObjArray* ModList, const char* MatName):
18  FairMCApplication(name, title, ModList, MatName) {};
20 
21  void Stepping();
22 
23  ClassDef(EicMCApplication,1)
24 };
25 
26 #endif