Line | |
---|
1 | #ifndef MARS_MCalibrationRelTimeCam
|
---|
2 | #define MARS_MCalibrationRelTimeCam
|
---|
3 |
|
---|
4 | #ifndef MARS_MCalibrationCam
|
---|
5 | #include "MCalibrationCam.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | #ifndef ROOT_TArrayI
|
---|
9 | #include "TArrayI.h"
|
---|
10 | #endif
|
---|
11 |
|
---|
12 |
|
---|
13 | class MCalibrationRelTimeCam : public MCalibrationCam
|
---|
14 | {
|
---|
15 | private:
|
---|
16 |
|
---|
17 | TArrayI fNumUncalibrated;
|
---|
18 | TArrayI fNumUnreliable;
|
---|
19 |
|
---|
20 | public:
|
---|
21 |
|
---|
22 | MCalibrationRelTimeCam(const char *name=NULL, const char *title=NULL);
|
---|
23 | ~MCalibrationRelTimeCam() {}
|
---|
24 |
|
---|
25 | Int_t GetNumUncalibrated ( const Int_t aidx) const { return fNumUncalibrated[aidx]; }
|
---|
26 | Int_t GetNumUnreliable ( const Int_t aidx) const { return fNumUnreliable [aidx]; }
|
---|
27 |
|
---|
28 | // Prints
|
---|
29 | void Print(Option_t *o="") const;
|
---|
30 |
|
---|
31 | // Others
|
---|
32 | Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const;
|
---|
33 | void DrawPixelContent(Int_t num) const;
|
---|
34 |
|
---|
35 | void SetNumUncalibrated ( const Int_t i, const Int_t aidx) { fNumUncalibrated[aidx] = i; }
|
---|
36 | void SetNumUnreliable ( const Int_t i, const Int_t aidx) { fNumUnreliable [aidx] = i; }
|
---|
37 |
|
---|
38 | ClassDef(MCalibrationRelTimeCam, 1) // Container Rel. Arrival Time Calibration Results Camera
|
---|
39 | };
|
---|
40 |
|
---|
41 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.