Line | |
---|
1 | #ifndef MARS_MHPedestalCam
|
---|
2 | #define MARS_MHPedestalCam
|
---|
3 |
|
---|
4 | #ifndef MARS_MHCalibrationCam
|
---|
5 | #include "MHCalibrationCam.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MGeomCam;
|
---|
9 | class MPedestalCam;
|
---|
10 | class MHPedestalPix;
|
---|
11 | class MHPedestalCam : public MHCalibrationCam
|
---|
12 | {
|
---|
13 |
|
---|
14 | private:
|
---|
15 |
|
---|
16 | void InitPedHists(MHPedestalPix &hist, const Int_t i, const Float_t nslices);
|
---|
17 |
|
---|
18 | Bool_t ReInitHists(MParList *pList);
|
---|
19 | Bool_t FillHists(const MParContainer *par, const Stat_t w=1);
|
---|
20 | Bool_t FinalizeHists();
|
---|
21 |
|
---|
22 | Float_t fExtractHiGainSlices; // Number of FADC slices used for high gain signal extraction
|
---|
23 | Float_t fExtractLoGainSlices; // Number of FADC slices used for low gain signal extraction
|
---|
24 |
|
---|
25 | MPedestalCam *fPedestals; //! Pedestal Cam filled by MPedCalcPedRun
|
---|
26 |
|
---|
27 | public:
|
---|
28 | MHPedestalCam(const char *name=NULL, const char *title=NULL);
|
---|
29 | ~MHPedestalCam() {}
|
---|
30 |
|
---|
31 | Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const;
|
---|
32 | void DrawPixelContent(Int_t idx) const;
|
---|
33 |
|
---|
34 | ClassDef(MHPedestalCam, 1) // Histogram class for Charge Camera Pedestals
|
---|
35 | };
|
---|
36 |
|
---|
37 | #endif
|
---|
38 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.