Line | |
---|
1 | #ifndef MARS_MHPedestalPix
|
---|
2 | #define MARS_MHPedestalPix
|
---|
3 |
|
---|
4 | #ifndef MARS_MHCalibrationPix
|
---|
5 | #include "MHCalibrationPix.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MHPedestalPix : public MHCalibrationPix
|
---|
9 | {
|
---|
10 |
|
---|
11 | private:
|
---|
12 |
|
---|
13 | static const Int_t fgChargeNbins; // Default for fNbins (now set to: 450 )
|
---|
14 | static const Axis_t fgChargeFirst; // Default for fFirst (now set to: -0.5 )
|
---|
15 | static const Axis_t fgChargeLast; // Default for fLast (now set to: 449.5)
|
---|
16 |
|
---|
17 | Float_t fNSlices; // Number of FADC slices summed in extraction
|
---|
18 |
|
---|
19 | public:
|
---|
20 |
|
---|
21 | MHPedestalPix(const char *name=NULL, const char *title=NULL);
|
---|
22 | ~MHPedestalPix() {}
|
---|
23 |
|
---|
24 | // Setters
|
---|
25 | void SetNSlices( const Float_t n) { fNSlices = n ; }
|
---|
26 |
|
---|
27 | // Getters
|
---|
28 | Float_t GetNSlices() const { return fNSlices; }
|
---|
29 |
|
---|
30 | // Others
|
---|
31 | void Renorm();
|
---|
32 |
|
---|
33 | ClassDef(MHPedestalPix, 1) // Histogram class for Charge Pedestal Pixel
|
---|
34 | };
|
---|
35 |
|
---|
36 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.