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 UInt_t fgReferencePixel; // Default for fReferencePixel (now set to: 1)
|
---|
15 | UInt_t fReferencePixel; // The reference pixel for rel. times
|
---|
16 |
|
---|
17 | Bool_t ReInitHists(MParList *pList);
|
---|
18 | Bool_t FillHists(const MParContainer *par, const Stat_t w=1);
|
---|
19 | Bool_t FinalizeHists();
|
---|
20 | void FinalizeBadPixels();
|
---|
21 |
|
---|
22 | public:
|
---|
23 |
|
---|
24 | MHCalibrationRelTimeCam(const char *name=NULL, const char *title=NULL);
|
---|
25 | ~MHCalibrationRelTimeCam() {}
|
---|
26 |
|
---|
27 | UInt_t GetReferencePixel() const { return fReferencePixel; }
|
---|
28 | void SetReferencePixel(const UInt_t i=fgReferencePixel) { fReferencePixel = i; }
|
---|
29 |
|
---|
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(MHCalibrationRelTimeCam, 1) // Histogram class for Relative Time Camera Calibration
|
---|
35 | };
|
---|
36 |
|
---|
37 | #endif
|
---|
38 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.