source: trunk/MagicSoft/Mars/mcalib/MCalibrationCam.cc@ 4882

Last change on this file since 4882 was 4855, checked in by gaug, 20 years ago
*** empty log message ***
File size: 13.5 KB
Line 
1/* ======================================================================== *\
2!
3! *
4! * This file is part of MARS, the MAGIC Analysis and Reconstruction
5! * Software. It is distributed to you in the hope that it can be a useful
6! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
7! * It is distributed WITHOUT ANY WARRANTY.
8! *
9! * Permission to use, copy, modify and distribute this software and its
10! * documentation for any purpose is hereby granted without fee,
11! * provided that the above copyright notice appear in all copies and
12! * that both that copyright notice and this permission notice appear
13! * in supporting documentation. It is provided "as is" without express
14! * or implied warranty.
15! *
16!
17!
18! Author(s): Markus Gaug 11/2003 <mailto:markus@ifae.es>
19!
20! Copyright: MAGIC Software Development, 2000-2004
21!
22!
23\* ======================================================================== */
24
25/////////////////////////////////////////////////////////////////////////////
26//
27// MCalibrationCam
28//
29// Base class for Camera Calibration results.
30//
31// Contains TClonesArrays for the following objects:
32// - fPixels: Array of classes derived from MCalibrationPix, one entry
33// per pixel. Has to be created
34// - fAverageAreas: Array of classes derived from MCalibrationPix, one entry
35// per pixel AREA. Has to be created
36// - fAverageSectors: Array of classes derived from MCalibrationPix, one entry
37// per camera SECTOR. Has to be created
38//
39// - fAverageBadAreas: Array of classes derived from MBadPixelsPix, one entry
40// per pixel AREA. Is created automatically.
41// - fAverageBadSectors: Array of classes derived from MBadPixelsPix, one entry
42// per camera SECTOR. Is created automatically.
43//
44// All TClonesArrays have to enlarged by the corresponding calls to (e.g. in MGeomApply):
45// - InitSize()
46// - InitAverageAreas()
47// - InitAverageSectors()
48//
49/////////////////////////////////////////////////////////////////////////////
50#include "MCalibrationCam.h"
51
52#include <TClonesArray.h>
53
54#include "MGeomCam.h"
55#include "MGeomPix.h"
56
57#include "MBadPixelsCam.h"
58#include "MBadPixelsPix.h"
59
60#include "MCalibrationPix.h"
61
62ClassImp(MCalibrationCam);
63
64using namespace std;
65
66const Int_t MCalibrationCam::gkNumPulserColors = 4;
67// --------------------------------------------------------------------------
68//
69// Default constructor.
70//
71// Set the following pointer to NULL:
72// - fPixels
73// - fAverageAreas
74// - fAverageSectors
75//
76// Initializes:
77// - fPulserColor to kNONE
78// - fNumHiGainFADCSlices to 0.
79// - fNumLoGainFADCSlices to 0.
80//
81// Creates a TClonesArray of MBadPixelsPix containers for the TClonesArray's:
82// - fAverageBadAreas
83// - fAverageBadSectors
84// all initialized to 1 entry
85//
86// Later, a call to InitAverageAreas() and InitAverageSectors() (or Init())
87// has to be performed in order to get the dimension correctly.
88//
89MCalibrationCam::MCalibrationCam(const char *name, const char *title)
90 : fPulserColor(kNONE),
91 fPixels(NULL), fAverageAreas(NULL), fAverageSectors(NULL)
92{
93
94 fAverageBadAreas = new TClonesArray("MBadPixelsPix",1);
95 fAverageBadSectors = new TClonesArray("MBadPixelsPix",1);
96
97 fNumHiGainFADCSlices.Set(1);
98 fNumLoGainFADCSlices.Set(1);
99}
100
101// --------------------------------------------------------------------------
102//
103// Deletes the following TClonesArray's of MCalibrationPix containers (if exist):
104// - fPixels
105// - fAverageAreas
106// - fAverageSectors
107//
108// Deletes the following TClonesArray's of MBadPixelsPix containers (if exist):
109// - fAverageBadAreas
110// - fAverageBadSectors
111//
112MCalibrationCam::~MCalibrationCam()
113{
114
115 //
116 // delete fPixels should delete all Objects stored inside
117 //
118 if (fPixels)
119 delete fPixels;
120
121 if (fAverageAreas)
122 delete fAverageAreas;
123
124 if (fAverageSectors)
125 delete fAverageSectors;
126
127 delete fAverageBadAreas;
128 delete fAverageBadSectors;
129
130}
131
132// --------------------------------------
133//
134// Calls the ForEach macro for the TClonesArray fPixels with the argument Clear()
135//
136// Loops over the fAverageAreas, calling the function Clear() for
137// every entry in:
138// - fAverageAreas
139// - fAverageBadAreas
140//
141// Loops over the fAverageSectors, calling the function Clear() for
142// every entry in:
143// - fAverageSectors
144// - fAverageBadSectors
145//
146void MCalibrationCam::Clear(Option_t *o)
147{
148
149 { fPixels ->ForEach(TObject, Clear)(); }
150 { fAverageAreas ->ForEach(TObject, Clear)(); }
151 { fAverageSectors->ForEach(TObject, Clear)(); }
152
153 return;
154}
155
156// --------------------------------------------------------------------------
157//
158// Copy 'constructor'
159//
160void MCalibrationCam::Copy(TObject& object) const
161{
162
163 MCalibrationCam &calib = (MCalibrationCam&)object;
164
165 MParContainer::Copy(calib);
166
167 calib.fPulserColor = fPulserColor;
168
169 const Int_t n3 = GetSize();
170 if (n3 != 0)
171 {
172 calib.InitSize(n3);
173 for (int i=0; i<n3; i++)
174 (*this)[i].Copy(calib[i]);
175 }
176
177 const Int_t n4 = GetAverageAreas();
178 if (n4 != 0)
179 {
180 calib.InitAverageAreas(n4);
181 for (int i=0; i<n4; i++)
182 {
183 GetAverageArea (i).Copy(calib.GetAverageArea(i));
184 GetAverageBadArea(i).Copy(calib.GetAverageBadArea(i));
185 calib.fNumUnsuitable [i] = fNumUnsuitable[i];
186 calib.fNumUnreliable [i] = fNumUnreliable[i];
187 calib.fNumHiGainFADCSlices[i] = fNumHiGainFADCSlices[i];
188 calib.fNumLoGainFADCSlices[i] = fNumLoGainFADCSlices[i];
189 }
190 }
191
192 const Int_t n5 = GetAverageSectors();
193 if (n5 != 0)
194 {
195 calib.InitAverageSectors(n5);
196 for (int i=0; i<n5; i++)
197 {
198 GetAverageSector (i).Copy(calib.GetAverageSector(i));
199 GetAverageBadSector(i).Copy(calib.GetAverageBadSector(i));
200 }
201 }
202}
203
204// -------------------------------------------------------------------
205//
206// Calls TClonesArray::ExpandCreate() for fPixels
207//
208void MCalibrationCam::InitSize(const UInt_t i)
209{
210 fPixels->ExpandCreate(i);
211}
212
213// -------------------------------------------------------------------
214//
215// Calls TClonesArray::ExpandCreate() for:
216// - fAverageAreas
217// - fAverageBadAreas
218//
219void MCalibrationCam::InitAverageAreas(const UInt_t i)
220{
221 fAverageAreas->ExpandCreate(i);
222 fAverageBadAreas->ExpandCreate(i);
223
224 for (UInt_t j=0; j<i; j++)
225 GetAverageArea(j).SetPixId(j);
226
227 fNumUnsuitable.Set(i);
228 fNumUnreliable.Set(i);
229 fNumHiGainFADCSlices.Set(i);
230 fNumLoGainFADCSlices.Set(i);
231}
232
233// -------------------------------------------------------------------
234//
235// Calls TClonesArray::ExpandCreate() for:
236// - fAverageSectors
237// - fAverageBadSectors
238//
239void MCalibrationCam::InitAverageSectors(const UInt_t i)
240{
241 fAverageSectors->ExpandCreate(i);
242 fAverageBadSectors->ExpandCreate(i);
243
244 for (UInt_t j=0; j<i; j++)
245 GetAverageSector(j).SetPixId(j);
246
247}
248
249// -------------------------------------------------------------------
250//
251// Calls:
252// - InitSize()
253// - InitAverageAreas()
254// - InitAverageSectors()
255//
256void MCalibrationCam::Init(const MGeomCam &geom)
257{
258 InitSize (geom.GetNumPixels() );
259 InitAverageAreas (geom.GetNumAreas() );
260 InitAverageSectors(geom.GetNumSectors());
261}
262
263// --------------------------------------------------------------------------
264//
265// Returns the number of un-suitable pixels per area index and -1 if
266// the area index exceeds the initialized array.
267//
268const Int_t MCalibrationCam::GetNumUnsuitable( Int_t aidx ) const
269{
270 if (aidx < 0)
271 return -1;
272
273 return aidx > fNumUnsuitable.GetSize() ? -1 : fNumUnsuitable[aidx];
274}
275
276// --------------------------------------------------------------------------
277//
278// Returns the number of un-reliable pixels per area index and -1 if
279// the area index exceeds the initialized array.
280//
281const Int_t MCalibrationCam::GetNumUnreliable( Int_t aidx ) const
282{
283 if (aidx < 0)
284 return -1;
285
286 return aidx > fNumUnreliable.GetSize() ? -1 : fNumUnreliable[aidx];
287}
288
289// --------------------------------------------------------------------------
290//
291// Returns the mean number of High-Gain FADC slices per area index and -1 if
292// the area index exceeds the initialized array.
293//
294const Float_t MCalibrationCam::GetNumHiGainFADCSlices( Int_t aidx ) const
295{
296 if (aidx < 0)
297 return -1;
298
299 return aidx > fNumHiGainFADCSlices.GetSize() ? -1 : fNumHiGainFADCSlices[aidx];
300}
301
302// --------------------------------------------------------------------------
303//
304// Returns the mean number of Low-Gain FADC slices per area index and -1 if
305// the area index exceeds the initialized array.
306//
307const Float_t MCalibrationCam::GetNumLoGainFADCSlices( Int_t aidx ) const
308{
309 if (aidx < 0)
310 return -1;
311
312 return aidx > fNumLoGainFADCSlices.GetSize() ? -1 : fNumLoGainFADCSlices[aidx];
313}
314
315
316
317// --------------------------------------------------------------------------
318//
319// Returns the current size of the TClonesArray fAverageAreas
320// independently if the MCalibrationPix is filled with values or not.
321//
322const Int_t MCalibrationCam::GetAverageAreas() const
323{
324 return fAverageAreas->GetEntriesFast();
325}
326
327// --------------------------------------------------------------------------
328//
329// Returns the current size of the TClonesArray fAverageSectors
330// independently if the MCalibrationPix is filled with values or not.
331//
332const Int_t MCalibrationCam::GetAverageSectors() const
333{
334 return fAverageSectors->GetEntriesFast();
335}
336
337
338// --------------------------------------------------------------------------
339//
340// Get i-th pixel (pixel number)
341//
342MCalibrationPix &MCalibrationCam::operator[](UInt_t i)
343{
344 return *static_cast<MCalibrationPix*>(fPixels->UncheckedAt(i));
345}
346
347// --------------------------------------------------------------------------
348//
349// Get i-th pixel (pixel number)
350//
351const MCalibrationPix &MCalibrationCam::operator[](UInt_t i) const
352{
353 return *static_cast<MCalibrationPix*>(fPixels->UncheckedAt(i));
354}
355
356// --------------------------------------------------------------------------
357//
358// Returns the current size of the TClonesArray fPixels
359// independently if the MCalibrationPix is filled with values or not.
360//
361const Int_t MCalibrationCam::GetSize() const
362{
363 return fPixels->GetEntriesFast();
364}
365
366// --------------------------------------------------------------------------
367//
368// Get i-th average pixel (area number)
369//
370MCalibrationPix &MCalibrationCam::GetAverageArea(UInt_t i)
371{
372 return *static_cast<MCalibrationPix*>(fAverageAreas->UncheckedAt(i));
373}
374
375// --------------------------------------------------------------------------
376//
377// Get i-th average pixel (area number)
378//
379const MCalibrationPix &MCalibrationCam::GetAverageArea(UInt_t i) const
380{
381 return *static_cast<MCalibrationPix*>(fAverageAreas->UncheckedAt(i));
382}
383
384// --------------------------------------------------------------------------
385//
386// Get i-th average pixel (sector number)
387//
388MCalibrationPix &MCalibrationCam::GetAverageSector(UInt_t i)
389{
390 return *static_cast<MCalibrationPix*>(fAverageSectors->UncheckedAt(i));
391}
392
393// --------------------------------------------------------------------------
394//
395// Get i-th average pixel (sector number)
396//
397const MCalibrationPix &MCalibrationCam::GetAverageSector(UInt_t i) const
398{
399 return *static_cast<MCalibrationPix*>(fAverageSectors->UncheckedAt(i));
400}
401
402// --------------------------------------------------------------------------
403//
404// Get i-th average pixel (area number)
405//
406MBadPixelsPix &MCalibrationCam::GetAverageBadArea(UInt_t i)
407{
408 return *static_cast<MBadPixelsPix*>(fAverageBadAreas->UncheckedAt(i));
409}
410
411// --------------------------------------------------------------------------
412//
413// Get i-th average pixel (area number)
414//
415const MBadPixelsPix &MCalibrationCam::GetAverageBadArea(UInt_t i) const
416{
417 return *static_cast<MBadPixelsPix*>(fAverageBadAreas->UncheckedAt(i));
418}
419
420// --------------------------------------------------------------------------
421//
422// Get i-th average pixel (sector number)
423//
424MBadPixelsPix &MCalibrationCam::GetAverageBadSector(UInt_t i)
425{
426 return *static_cast<MBadPixelsPix*>(fAverageBadSectors->UncheckedAt(i));
427}
428
429// --------------------------------------------------------------------------
430//
431// Get i-th average pixel (sector number)
432//
433const MBadPixelsPix &MCalibrationCam::GetAverageBadSector(UInt_t i) const
434{
435 return *static_cast<MBadPixelsPix*>(fAverageBadSectors->UncheckedAt(i));
436}
437
438
439
440// --------------------------------------------------------------------------
441//
442// Dummy needed for compilation with MCamEvent
443//
444Bool_t MCalibrationCam::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const
445{
446 return kTRUE;
447}
448
449
450
451// --------------------------------------------------------------------------
452//
453// Calls MCalibrationPix::DrawClone()
454//
455void MCalibrationCam::DrawPixelContent(Int_t idx) const
456{
457 (*this)[idx].DrawClone();
458}
459
460void MCalibrationCam::SetNumHiGainFADCSlices( const Float_t i, const Int_t aidx)
461{
462 if (aidx < 0)
463 return;
464
465 if (aidx < fNumHiGainFADCSlices.GetSize())
466 fNumHiGainFADCSlices[aidx] = i;
467}
468
469void MCalibrationCam::SetNumLoGainFADCSlices( const Float_t i, const Int_t aidx)
470{
471 if (aidx < 0)
472 return;
473 if (aidx < fNumLoGainFADCSlices.GetSize())
474 fNumLoGainFADCSlices[aidx] = i;
475}
476
477void MCalibrationCam::SetNumUnsuitable( const UInt_t i, const Int_t aidx)
478{
479 if (aidx < 0)
480 return;
481
482 if (aidx < fNumUnsuitable.GetSize())
483 fNumUnsuitable[aidx] = i;
484}
485
486void MCalibrationCam::SetNumUnreliable( const UInt_t i, const Int_t aidx)
487{
488 if (aidx < 0)
489 return;
490 if (aidx < fNumUnreliable.GetSize())
491 fNumUnreliable[aidx] = i;
492}
Note: See TracBrowser for help on using the repository browser.