EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EicGem.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EicGem.h
1 //
2 // AYK (ayk@bnl.gov), 2013/06/12
3 //
4 // EIC GEM detector definition wrapper
5 //
6 
7 #ifndef _EIC_GEM_
8 #define _EIC_GEM_
9 
10 #include <EicDetector.h>
11 
12 class EicGem : public EicDetector {
13 public:
14  EicGem() {};
15 
16  EicGem(const char *Name, const 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, kFALSE, dType, Active) {};
20  EicDetector(Name, geometryName, dType, qMergeStepsInOneHit, Active) {};
21 
22  virtual ~EicGem() {};
23 
24  ClassDef(EicGem,1)
25 };
26 
27 #endif