Line | |
---|
1 | #ifndef MARS_MHCalibrationRelTimeCam
|
---|
2 | #define MARS_MHCalibrationRelTimeCam
|
---|
3 |
|
---|
4 | #ifndef MARS_MHCalibrationCam
|
---|
5 | #include "MHCalibrationCam.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MGeomCam;
|
---|
9 | class MHCalibrationRelTimeCam : public MHCalibrationCam
|
---|
10 | {
|
---|
11 |
|
---|
12 | private:
|
---|
13 |
|
---|
14 | static const Float_t fgNumHiGainSaturationLimit; //! The default for fNumHiGainSaturationLimit (now at: 0.25)
|
---|
15 | static const UInt_t fgReferencePixel; //! Default for fReferencePixel (now set to: 1)
|
---|
16 | UInt_t fReferencePixel; // The reference pixel for rel. times
|
---|
17 |
|
---|
18 | Bool_t ReInitHists(MParList *pList);
|
---|
19 | Bool_t FillHists(const MParContainer *par, const Stat_t w=1);
|
---|
20 | Bool_t FinalizeHists();
|
---|
21 | void FinalizeBadPixels();
|
---|
22 |
|
---|
23 | public:
|
---|
24 |
|
---|
25 | MHCalibrationRelTimeCam(const char *name=NULL, const char *title=NULL);
|
---|
26 | ~MHCalibrationRelTimeCam() {}
|
---|
27 |
|
---|
28 | UInt_t GetReferencePixel() const { return fReferencePixel; }
|
---|
29 | void SetReferencePixel(const UInt_t i=fgReferencePixel) { fReferencePixel = i; }
|
---|
30 |
|
---|
31 |
|
---|
32 | Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const;
|
---|
33 | void DrawPixelContent(Int_t idx) const;
|
---|
34 |
|
---|
35 | ClassDef(MHCalibrationRelTimeCam, 1) // Histogram class for Relative Time Camera Calibration
|
---|
36 | };
|
---|
37 |
|
---|
38 | #endif
|
---|
39 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.