EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CemcGeoParData.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file CemcGeoParData.h
1 //
2 // AYK (ayk@bnl.gov), 2013/06/12
3 //
4 // CEMC (Central rapidity EMC) specific data definitions
5 //
6 
7 #include <BarrelGeoParData.h>
8 #include <FiberParData.h>
9 
10 #ifndef _CEMC_GEO_PAR_DATA_
11 #define _CEMC_GEO_PAR_DATA_
12 
14 {
15  public:
16  CemcGeoParData(int version = -1, int subVersion = 0):
17  BarrelGeoParData("CEMC", version, subVersion), mFiber(0) {};
18  ~CemcGeoParData() { if (mFiber) delete mFiber; };
19 
20  FiberParData *mFiber; // fiber geometry; if NULL, active material is smeared
21 
23 };
24 
25 #endif