source: trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeLoGainPix.h@ 3614

Last change on this file since 3614 was 3614, checked in by gaug, 21 years ago
*** empty log message ***
File size: 1.6 KB
Line 
1#ifndef MARS_MHCalibrationChargeLoGainPix
2#define MARS_MHCalibrationChargeLoGainPix
3
4
5#ifndef MARS_MHCalibrationChargePix
6#include "MHCalibrationChargePix.h"
7#endif
8
9class MHCalibrationChargeLoGainPix : public MHCalibrationChargePix
10{
11private:
12
13 static const Int_t fgChargeNbins; // Default for fChargeNBins (now set to: 200 )
14 static const Axis_t fgChargeFirst; // Default for fChargeFirst (now set to: -0.5 )
15 static const Axis_t fgChargeLast; // Default for fChargeLast (now set to: 199.5 )
16 static const Int_t fgAbsTimeNbins; // Default for fAbsTimeNbins (now set to: 15 )
17 static const Axis_t fgAbsTimeFirst; // Default for fAbsTimeFirst (now set to: -0.5 )
18 static const Axis_t fgAbsTimeLast; // Default for fAbsTimeLast (now set to: 14.5 )
19
20public:
21
22 MHCalibrationChargeLoGainPix(const char *name=NULL, const char *title=NULL);
23 ~MHCalibrationChargeLoGainPix(){}
24
25 // Setters
26 void SetChargeNbins(const Int_t bins =fgChargeNbins) { fChargeNbins = bins; }
27 void SetChargeFirst(const Axis_t first=fgChargeFirst) { fChargeFirst = first; }
28 void SetChargeLast (const Axis_t last =fgChargeLast) { fChargeLast = last; }
29
30 void SetAbsTimeNbins(const Int_t bins =fgAbsTimeNbins) { fAbsTimeNbins = bins; }
31 void SetAbsTimeFirst(const Axis_t first=fgAbsTimeFirst) { fAbsTimeFirst = first; }
32 void SetAbsTimeLast (const Axis_t last =fgAbsTimeLast) { fAbsTimeLast = last; }
33
34 ClassDef(MHCalibrationChargeLoGainPix, 1) // Histogram class for Low Gain Part of Calibration Pixel
35};
36
37#endif
38
39
40
41
42
43
44
45
Note: See TracBrowser for help on using the repository browser.