source: trunk/MagicSoft/Mars/mcalib/MHCalibrationCam.h@ 3839

Last change on this file since 3839 was 3731, checked in by gaug, 21 years ago
*** empty log message ***
File size: 5.5 KB
Line 
1#ifndef MARS_MHCalibrationCam
2#define MARS_MHCalibrationCam
3
4#ifndef ROOT_TObjArray
5#include <TObjArray.h>
6#endif
7
8#ifndef ROOT_TArrayI
9#include <TArrayI.h>
10#endif
11
12#ifndef ROOT_TArrayF
13#include <TArrayF.h>
14#endif
15
16#ifndef MARS_MH
17#include "MH.h"
18#endif
19#ifndef MARS_MCamEvent
20#include "MCamEvent.h"
21#endif
22
23#ifndef MARS_MBadPixelsPix
24#include "MBadPixelsPix.h"
25#endif
26
27class TText;
28class TArrayI;
29class TArrayF;
30class MHGausEvents;
31class MGeomCam;
32class MCalibrationCam;
33class MCalibrationPix;
34class MBadPixelsCam;
35class MBadPixelsPix;
36class MHCalibrationCam : public MH, public MCamEvent
37{
38
39private:
40
41 static const Int_t fgAverageNbins; //! The default for fAverageNbins (now set to: 2000)
42 static const Int_t fgPulserFrequency; //! The default for fPulserFrequency (now set to: 500)
43
44protected:
45
46 TArrayI fAverageAreaNum; // Number of pixels in average pixels per area
47 TArrayF fAverageAreaRelSigma; // Re-normalized relative sigmas in average pixels per area
48 TArrayF fAverageAreaRelSigmaVar; // Variance Re-normalized relative sigmas in average pixels per area
49 TArrayI fAverageAreaSat; // Number of saturated slices in average pixels per area
50 TArrayF fAverageAreaSigma; // Re-normalized sigmas in average pixels per area
51 TArrayF fAverageAreaSigmaVar; // Variance Re-normalized sigmas in average pixels per area
52 Int_t fAverageNbins; // Number of bins for the average histograms
53 TObjArray *fAverageHiGainAreas; //-> Array of calibration pixels, one per pixel area
54 TObjArray *fAverageHiGainSectors; //-> Array of calibration pixels, one per camera sector
55 TObjArray *fAverageLoGainAreas; //-> Array of calibration pixels, one per pixel area
56 TObjArray *fAverageLoGainSectors; //-> Array of calibration pixels, one per camera sector
57 TArrayI fAverageSectorNum; // Number of pixels in average pixels per sector
58
59 MBadPixelsCam *fBadPixels; //! Bad Pixels storage container
60 MCalibrationCam *fCam; //! Calibration Cam with the results
61 MGeomCam *fGeom; //! Camera geometry
62
63 TObjArray *fHiGainArray; //-> Array of calibration pixels, one per pixel
64 TObjArray *fLoGainArray; //-> Array of calibration pixels, one per pixel
65
66 Int_t fPulserFrequency; // Light pulser frequency
67
68 virtual Bool_t SetupHists(const MParList *pList);
69 virtual Bool_t ReInitHists(MParList *pList);
70 virtual Bool_t FillHists(const MParContainer *par, const Stat_t w=1);
71 virtual Bool_t FinalizeHists();
72 virtual void FinalizeBadPixels();
73
74 void CalcAverageSigma();
75
76 void DrawAverageSigma(Bool_t sat, Bool_t inner,
77 Float_t sigma, Float_t sigmaerr,
78 Float_t relsigma, Float_t relsigmaerr) const;
79
80 void FitHiGainArrays(MCalibrationCam &calcam, MBadPixelsCam &badcam,
81 MBadPixelsPix::UncalibratedType_t fittyp,
82 MBadPixelsPix::UncalibratedType_t osctyp);
83
84 void FitHiGainHists(MHGausEvents &hist,
85 MCalibrationPix &pix,
86 MBadPixelsPix &bad,
87 MBadPixelsPix::UncalibratedType_t fittyp,
88 MBadPixelsPix::UncalibratedType_t osctyp);
89
90 void FitLoGainArrays(MCalibrationCam &calcam, MBadPixelsCam &badcam,
91 MBadPixelsPix::UncalibratedType_t fittyp,
92 MBadPixelsPix::UncalibratedType_t osctyp);
93
94 void FitLoGainHists(MHGausEvents &hist,
95 MCalibrationPix &pix,
96 MBadPixelsPix &bad,
97 MBadPixelsPix::UncalibratedType_t fittyp,
98 MBadPixelsPix::UncalibratedType_t osctyp);
99
100 void InitHists(MHGausEvents &hist, MBadPixelsPix &bad, const Int_t i);
101
102public:
103
104 MHCalibrationCam(const char *name=NULL, const char *title=NULL);
105 ~MHCalibrationCam();
106
107 virtual Bool_t SetupFill(const MParList *pList);
108 virtual Bool_t ReInit ( MParList *pList);
109 virtual Bool_t Fill (const MParContainer *par, const Stat_t w=1);
110 virtual Bool_t Finalize ( );
111
112 // Clone
113 TObject *Clone(const char *) const;
114
115 // Draw
116 virtual void Draw(const Option_t *opt);
117
118 virtual Bool_t GetPixelContent ( Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const;
119 virtual void DrawPixelContent( Int_t num ) const;
120
121 const Int_t GetAverageAreas () const;
122 MHGausEvents &GetAverageHiGainArea (UInt_t i);
123 const MHGausEvents &GetAverageHiGainArea (UInt_t i) const;
124 MHGausEvents &GetAverageLoGainArea (UInt_t i);
125 const MHGausEvents &GetAverageLoGainArea (UInt_t i) const;
126 MHGausEvents &GetAverageHiGainSector(UInt_t i);
127 const MHGausEvents &GetAverageHiGainSector(UInt_t i) const;
128 MHGausEvents &GetAverageLoGainSector(UInt_t i);
129 const MHGausEvents &GetAverageLoGainSector(UInt_t i) const;
130 const Int_t GetAverageSectors () const;
131
132 MHGausEvents &operator[] (UInt_t i);
133 const MHGausEvents &operator[] (UInt_t i) const;
134 MHGausEvents &operator() (UInt_t i);
135 const MHGausEvents &operator() (UInt_t i) const;
136
137 void SetAverageNbins( const Int_t bins=fgAverageNbins ) { fAverageNbins = bins; }
138 void SetPulserFrequency(const Int_t f=fgPulserFrequency) { fPulserFrequency = f; }
139
140 ClassDef(MHCalibrationCam, 1) // Base Histogram class for Calibration Camera
141};
142
143#endif
144
145
146
147
148
149
150
151
152
Note: See TracBrowser for help on using the repository browser.