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

Last change on this file since 3636 was 3636, checked in by gaug, 20 years ago
*** empty log message ***
File size: 1.4 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 MHGausEvents::fNbins (now set to: 200 )
14 static const Axis_t fgChargeFirst; // Default for MHGausEvents::fFirst (now set to: -0.5 )
15 static const Axis_t fgChargeLast; // Default for MHGausEvents::fLast (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 SetAbsTimeNbins(const Int_t bins =fgAbsTimeNbins) { fAbsTimeNbins = bins; }
27 void SetAbsTimeFirst(const Axis_t first=fgAbsTimeFirst) { fAbsTimeFirst = first; }
28 void SetAbsTimeLast (const Axis_t last =fgAbsTimeLast) { fAbsTimeLast = last; }
29
30 ClassDef(MHCalibrationChargeLoGainPix, 1) // Histogram class for Low Gain Part of Calibration Pixel
31};
32
33#endif
34
35
36
37
38
39
40
41
Note: See TracBrowser for help on using the repository browser.