1 | #ifndef MARS_MCalibrationCam
|
---|
2 | #define MARS_MCalibrationCam
|
---|
3 |
|
---|
4 | #ifndef MARS_MParContainer
|
---|
5 | #include "MParContainer.h"
|
---|
6 | #endif
|
---|
7 | #ifndef MARS_MCamEvent
|
---|
8 | #include "MCamEvent.h"
|
---|
9 | #endif
|
---|
10 | #ifndef ROOT_TArrayI
|
---|
11 | #include <TArrayI.h>
|
---|
12 | #endif
|
---|
13 | #ifndef ROOT_TArrayF
|
---|
14 | #include <TArrayF.h>
|
---|
15 | #endif
|
---|
16 |
|
---|
17 | class TObjArray;
|
---|
18 |
|
---|
19 | class MCalibrationPix;
|
---|
20 | class MBadPixelsPix;
|
---|
21 | class MBadPixelsCam;
|
---|
22 | class MGeomCam;
|
---|
23 | class MCalibrationCam : public MParContainer, public MCamEvent
|
---|
24 | {
|
---|
25 | public:
|
---|
26 |
|
---|
27 | enum PulserColor_t {
|
---|
28 | kCT1 =0,
|
---|
29 | kGREEN=1,
|
---|
30 | kBLUE =2,
|
---|
31 | kUV =3,
|
---|
32 | kNONE =4
|
---|
33 | }; //! Possible Pulser colours
|
---|
34 | static const Int_t gkNumPulserColors; //! Number of Pulser colours (now set to: 4)
|
---|
35 |
|
---|
36 | protected:
|
---|
37 |
|
---|
38 | TArrayI fNumUnsuitable; // Number uncalibrated Pixels per area index
|
---|
39 | TArrayI fNumUnreliable; // Number unreliable Pixels per area index
|
---|
40 |
|
---|
41 | TArrayF fNumHiGainFADCSlices; // Number High-Gain FADC slices used by extractor
|
---|
42 | TArrayF fNumLoGainFADCSlices; // Number Low -Gain FADC slices used by extractor
|
---|
43 |
|
---|
44 | PulserColor_t fPulserColor; // Colour of the pulsed LEDs
|
---|
45 |
|
---|
46 | TObjArray *fPixels; //-> Array of MCalibrationPix, one per pixel
|
---|
47 | TObjArray *fAverageAreas; //-> Array of MCalibrationPix, one per pixel area
|
---|
48 | TObjArray *fAverageSectors; //-> Array of MCalibrationPix, one per camera sector
|
---|
49 | TObjArray *fAverageBadAreas; //-> Array of MBadPixelsPix, one per pixel area
|
---|
50 | TObjArray *fAverageBadSectors; //-> Array of MBadPixelsPix, one per camera sector
|
---|
51 |
|
---|
52 | virtual void Add(const UInt_t a, const UInt_t b);
|
---|
53 | virtual void AddArea(const UInt_t a, const UInt_t b);
|
---|
54 | virtual void AddSector(const UInt_t a, const UInt_t b);
|
---|
55 |
|
---|
56 | public:
|
---|
57 |
|
---|
58 | MCalibrationCam(const char *name=NULL, const char *title=NULL);
|
---|
59 | ~MCalibrationCam();
|
---|
60 |
|
---|
61 | void Clear ( Option_t *o="");
|
---|
62 | void Copy(TObject& object) const;
|
---|
63 |
|
---|
64 | void DrawPixelContent( Int_t num) const;
|
---|
65 |
|
---|
66 | // Getters
|
---|
67 | const Int_t GetAverageAreas () const;
|
---|
68 | MCalibrationPix &GetAverageArea ( const UInt_t i );
|
---|
69 | const MCalibrationPix &GetAverageArea ( const UInt_t i ) const;
|
---|
70 | MBadPixelsPix &GetAverageBadArea ( const UInt_t i );
|
---|
71 | const MBadPixelsPix &GetAverageBadArea ( const UInt_t i ) const;
|
---|
72 | const Int_t GetAverageSectors () const;
|
---|
73 | MCalibrationPix &GetAverageSector ( const UInt_t i );
|
---|
74 | const MCalibrationPix &GetAverageSector ( const UInt_t i ) const;
|
---|
75 | MBadPixelsPix &GetAverageBadSector ( const UInt_t i );
|
---|
76 | const MBadPixelsPix &GetAverageBadSector ( const UInt_t i ) const;
|
---|
77 | const Float_t GetNumHiGainFADCSlices ( const Int_t aidx=0 ) const;
|
---|
78 | const Float_t GetNumLoGainFADCSlices ( const Int_t aidx=0 ) const;
|
---|
79 | const Int_t GetNumUnsuitable ( const Int_t aidx=-1) const;
|
---|
80 | const Int_t GetNumUnreliable ( const Int_t aidx=-1) const;
|
---|
81 |
|
---|
82 | Bool_t GetPixelContent ( Double_t &val, Int_t idx, const MGeomCam &cam,
|
---|
83 | Int_t type=0 ) const;
|
---|
84 | const PulserColor_t GetPulserColor () const { return fPulserColor; }
|
---|
85 | const Int_t GetSize () const;
|
---|
86 |
|
---|
87 | MCalibrationPix &operator[] ( UInt_t i );
|
---|
88 | const MCalibrationPix &operator[] ( UInt_t i ) const;
|
---|
89 |
|
---|
90 | // Inits
|
---|
91 | void Init ( const MGeomCam &geom );
|
---|
92 | void InitSize ( const UInt_t i );
|
---|
93 | void InitAverageAreas ( const UInt_t i );
|
---|
94 | void InitAverageSectors ( const UInt_t i );
|
---|
95 |
|
---|
96 | // Setters
|
---|
97 | void SetNumHiGainFADCSlices ( const Float_t f, const Int_t aidx=0 );
|
---|
98 | void SetNumLoGainFADCSlices ( const Float_t f, const Int_t aidx=0 );
|
---|
99 | void SetNumUnsuitable ( const UInt_t i, const Int_t aidx );
|
---|
100 | void SetNumUnreliable ( const UInt_t i, const Int_t aidx );
|
---|
101 | void SetPulserColor ( const PulserColor_t col=kCT1 ) { fPulserColor = col; }
|
---|
102 |
|
---|
103 | ClassDef(MCalibrationCam, 5) // Base class Container for Calibration Results Camera
|
---|
104 | };
|
---|
105 |
|
---|
106 | #endif
|
---|