Line | |
---|
1 | #ifndef MARS_MHCalibrationChargeHiGainPix
|
---|
2 | #define MARS_MHCalibrationChargeHiGainPix
|
---|
3 |
|
---|
4 |
|
---|
5 | #ifndef MARS_MHCalibrationChargePix
|
---|
6 | #include "MHCalibrationChargePix.h"
|
---|
7 | #endif
|
---|
8 |
|
---|
9 | class TH1F;
|
---|
10 | class MHCalibrationChargeHiGainPix : public MHCalibrationChargePix
|
---|
11 | {
|
---|
12 | private:
|
---|
13 |
|
---|
14 | static const Int_t fgChargeNbins; // Default for fChargeNBins (now set to: 2000 )
|
---|
15 | static const Axis_t fgChargeFirst; // Default for fChargeFirst (now set to: -0.5 )
|
---|
16 | static const Axis_t fgChargeLast; // Default for fChargeLast (now set to: 1999.5)
|
---|
17 | static const Int_t fgAbsTimeNbins; // Default for fAbsTimeNbins (now set to: 20 )
|
---|
18 | static const Axis_t fgAbsTimeFirst; // Default for fAbsTimeFirst (now set to: -0.5 )
|
---|
19 | static const Axis_t fgAbsTimeLast; // Default for fAbsTimeLast (now set to: 19.5 )
|
---|
20 |
|
---|
21 | public:
|
---|
22 |
|
---|
23 | MHCalibrationChargeHiGainPix(const char *name=NULL, const char *title=NULL);
|
---|
24 | ~MHCalibrationChargeHiGainPix(){}
|
---|
25 |
|
---|
26 | // Setters
|
---|
27 | void SetChargeNbins(const Int_t bins =fgChargeNbins) { fChargeNbins = bins; }
|
---|
28 | void SetChargeFirst(const Axis_t first=fgChargeFirst) { fChargeFirst = first; }
|
---|
29 | void SetChargeLast (const Axis_t last =fgChargeLast) { fChargeLast = last; }
|
---|
30 |
|
---|
31 | void SetAbsTimeNbins(const Int_t bins =fgAbsTimeNbins) { fAbsTimeNbins = bins; }
|
---|
32 | void SetAbsTimeFirst(const Axis_t first=fgAbsTimeFirst) { fAbsTimeFirst = first; }
|
---|
33 | void SetAbsTimeLast (const Axis_t last =fgAbsTimeLast) { fAbsTimeLast = last; }
|
---|
34 |
|
---|
35 | ClassDef(MHCalibrationChargeHiGainPix, 1) // Histogram class for High Gain part of Calibration Pixel
|
---|
36 | };
|
---|
37 |
|
---|
38 | #endif
|
---|
39 |
|
---|
40 |
|
---|
41 |
|
---|
42 |
|
---|
43 |
|
---|
44 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.