EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EicCalorimeter.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EicCalorimeter.h
1 //
2 // AYK (ayk@bnl.gov), 2013/06/12
3 //
4 // A trivial calorimeter wrapper class
5 //
6 
7 #ifndef _EIC_CALORIMETER_
8 #define _EIC_CALORIMETER_
9 
10 #include <EicDetector.h>
11 
12 class EicCalorimeter : public EicDetector {
13 public:
15 
16  EicCalorimeter(const char *Name, const char *geometryName, EicDetectorId dType, Bool_t Active = kTRUE):
17  // Well, use qOneStepOneHit here; this should cost some CPU time, but is perhaps
18  // more "clean"; actually there should not be much of a problem to merge
19  // steps for a calorimeter device;
20  EicDetector(Name, geometryName, dType, qOneStepOneHit, Active) {};
21 
22  virtual ~EicCalorimeter() {};
23 
24  ClassDef(EicCalorimeter,1)
25 };
26 
27 #endif