EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EicMuMegas.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EicMuMegas.h
1 //
2 // AYK (ayk@bnl.gov), 2015/01/28
3 //
4 // EIC MuMegas detector definition wrapper
5 //
6 
7 #ifndef _EIC_MUMEGAS_
8 #define _EIC_MUMEGAS_
9 
10 #include <EicDetector.h>
11 
12 class EicMuMegas : public EicDetector {
13 public:
14  EicMuMegas() {};
15 
16  EicMuMegas(const char *Name, char *geometryName, EicDetectorId dType, Bool_t Active = kTRUE):
17  // Yes, want to merge all steps in one hit, otherwise
18  // tracking code will get much more hits and screw up all resolutions;
19  EicDetector(Name, geometryName, dType, qMergeStepsInOneHit, Active) {};
20 
21  virtual ~EicMuMegas() {};
22 
23  ClassDef(EicMuMegas,1)
24 };
25 
26 #endif