EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EicMaps.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EicMaps.h
1 //
2 // AYK (ayk@bnl.gov), 2013/06/12
3 //
4 // A trivial MAPS (silicon tracker) wrapper class
5 //
6 
7 #ifndef _EIC_MAPS_
8 #define _EIC_MAPS_
9 
10 #include <EicDetector.h>
11 
12 class EicMaps : public EicDetector {
13 public:
14  EicMaps() {};
15 
16  EicMaps(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 ~EicMaps() {};
23 
24  ClassDef(EicMaps,1)
25 };
26 
27 #endif