source: trunk/MagicSoft/Mars/manalysis/MHPedestalCam.h@ 4200

Last change on this file since 4200 was 3643, checked in by gaug, 20 years ago
*** empty log message ***
File size: 1.1 KB
Line 
1#ifndef MARS_MHPedestalCam
2#define MARS_MHPedestalCam
3
4#ifndef MARS_MHCalibrationCam
5#include "MHCalibrationCam.h"
6#endif
7
8class MGeomCam;
9class MPedestalCam;
10class MHPedestalPix;
11class MHPedestalCam : public MHCalibrationCam
12{
13
14private:
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
27public:
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.