EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EicTpc.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EicTpc.h
1 //
2 // AYK (ayk@bnl.gov), 2013/06/12
3 //
4 // EIC TPC detector definition wrapper
5 //
6 
7 #ifndef _EIC_TPC_
8 #define _EIC_TPC_
9 
10 #include <EicDetector.h>
11 
12 class EicTpc : public EicDetector {
13 public:
14  EicTpc() {};
15  EicTpc(const char *geometryName, Bool_t Active = kTRUE):
16  // NB: want hits for every step;
17  EicDetector("TPC", geometryName, qTPC, qOneStepOneHit, Active) {};
18  //EicDetector("TPC", geometryName, kTRUE, qTPC, Active) {};
19 
20  virtual ~EicTpc() {};
21 
22  ClassDef(EicTpc,4)
23 };
24 
25 #endif