source: trunk/MagicSoft/Mars/mgeom/MGeomCam.cc@ 9029

Last change on this file since 9029 was 8921, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 16.7 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): Thomas Bretz 12/2000 <mailto:tbretz@astro.uni-wuerzburg.de>
19! Author(s): Harald Kornmayer 01/2001
20! Author(s): Markus Gaug 03/2004 <mailto:markus@ifae.es>
21!
22! Copyright: MAGIC Software Development, 2000-2008
23!
24\* ======================================================================== */
25
26/////////////////////////////////////////////////////////////////////////////
27//
28// MGeomCam
29//
30// This is the base class of different camera geometries. It creates
31// a pixel object for a given number of pixels and defines the
32// interface of how to acccess the geometry information.
33//
34// We use a TObjArray for possible future usage (it is much more flexible
35// than a TClonesArray so that it can store more types of pixels (eg
36// fake pixels which are not really existing)
37//
38// Version 1:
39// ----------
40// - first implementation
41//
42// Version 2:
43// ----------
44// - added fPixRatio
45// - added fPixRatioSqrt
46//
47// Version 3:
48// ----------
49// - added fNumAreas
50// - added fNumSectors
51//
52// Version 4:
53// ----------
54// - added fMaxRadius
55// - added fMinRadius
56//
57// Version 5:
58// ----------
59// - added fNumPixInSector
60// - added fNumPixWithAidx
61// - removed fNumSectors
62// - removed fNumAreas
63//
64/////////////////////////////////////////////////////////////////////////////
65#include "MGeomCam.h"
66
67#include <TMath.h> // TMath
68#include <TClass.h> // IsA()->New()
69#include <TArrayI.h> // TArrayI
70#include <TVector2.h> // TVector2
71
72#include "MLog.h"
73#include "MLogManip.h"
74
75#include "MGeomPix.h"
76
77ClassImp(MGeomCam);
78
79using namespace std;
80
81// --------------------------------------------------------------------------
82//
83// Default Constructor. Initializes a Camera Geometry with npix pixels. All
84// pixels are deleted when the corresponding array is deleted.
85//
86MGeomCam::MGeomCam(UInt_t npix, Float_t dist, const char *name, const char *title)
87 : fNumPixels(npix), fCamDist(dist), fConvMm2Deg(kRad2Deg/(dist*1000)),
88 fPixels(npix), fMaxRadius(1), fMinRadius(1), fPixRatio(npix), fPixRatioSqrt(npix)
89{
90 fName = name ? name : "MGeomCam";
91 fTitle = title ? title : "Storage container for a camera geometry";
92
93 //
94 // make sure that the destructor delete all contained objects
95 //
96 fPixels.SetOwner();
97
98 // For root versions <5.18 AddAt is mandatory, for newer
99 // root-version the []-operator can be used safely
100 for (UInt_t i=0; i<npix; i++)
101 fPixels.AddAt(new MGeomPix, i);
102}
103
104// --------------------------------------------------------------------------
105//
106// Copy function. It does intentionally (see workaround in Streamer)
107// not copy name and title.
108//
109void MGeomCam::Copy(TObject &o) const
110{
111 MGeomCam &c = (MGeomCam&)o;
112
113 c.fNumPixels = fNumPixels;
114 c.fCamDist = fCamDist;
115 c.fConvMm2Deg = fConvMm2Deg;
116
117 c.fMaxRadius = fMaxRadius;
118 c.fMinRadius = fMinRadius;
119 c.fPixRatio = fPixRatio;
120 c.fPixRatioSqrt = fPixRatioSqrt;
121
122 c.fNumPixInSector = fNumPixInSector;
123 c.fNumPixWithAidx = fNumPixWithAidx;
124
125 Int_t n = fPixels.GetEntriesFast();
126 Int_t m = c.fPixels.GetEntriesFast();
127
128 c.fPixels.Expand(n);
129
130 for (int i=m; i<n; i++)
131 c.fPixels.AddAt(new MGeomPix, i);
132
133 for (int i=0; i<n; i++)
134 fPixels[i]->Copy(c[i]);
135}
136
137// --------------------------------------------------------------------------
138//
139// Returns a reference of the i-th entry (the pixel with the software idx i)
140// The access is unchecked (for speed reasons!) accesing non existing
141// entries may crash the program!
142//
143MGeomPix &MGeomCam::operator[](Int_t i)
144{
145 return *static_cast<MGeomPix*>(fPixels.UncheckedAt(i));
146}
147
148// --------------------------------------------------------------------------
149//
150// Returns a reference of the i-th entry (the pixel with the software idx i)
151// The access is unchecked (for speed reasons!) accesing non existing
152// entries may crash the program!
153//
154MGeomPix &MGeomCam::operator[](Int_t i) const
155{
156 return *static_cast<MGeomPix*>(fPixels.UncheckedAt(i));
157}
158
159// --------------------------------------------------------------------------
160//
161// Calculate and fill the arrays storing the ratio of the area of a pixel
162// i to the pixel 0 and its square root.
163// The precalculation is done for speed reasons. Having an event the
164// ratio would be calculated at least once for each pixel which is
165// an enormous amount of numerical calculations, which are time
166// consuming and which can be avoided doing the precalculation.
167//
168void MGeomCam::CalcPixRatio()
169{
170 const Double_t a0 = (*this)[0].GetA();
171
172 for (UInt_t i=0; i<fNumPixels; i++)
173 {
174 fPixRatio[i] = a0/(*this)[i].GetA();
175 fPixRatioSqrt[i] = TMath::Sqrt(fPixRatio[i]);
176 }
177}
178
179// --------------------------------------------------------------------------
180//
181// Set the kIsOuterRing flag for all pixels which have a outermost pixel
182// as Next Neighbor and don't have the kIsOutermostRing flag itself.
183//
184void MGeomCam::InitOuterRing()
185{
186 fPixels.R__FOR_EACH(MGeomPix, CheckOuterRing)(*this);
187}
188
189// --------------------------------------------------------------------------
190//
191// Calculate the highest sector index+1 of all pixels, please make sure
192// the the sector numbers are continous.
193//
194void MGeomCam::CalcNumSectors()
195{
196 for (UInt_t i=0; i<fNumPixels; i++)
197 {
198 const Int_t s = (*this)[i].GetSector();
199
200 if (s>=fNumPixInSector.GetSize())
201 fNumPixInSector.Set(s+1);
202
203 fNumPixInSector[s]++;
204 }
205}
206
207// --------------------------------------------------------------------------
208//
209// Calculate the highest area index+1 of all pixels, please make sure
210// the the area indices are continous.
211//
212void MGeomCam::CalcNumAreas()
213{
214 for (UInt_t i=0; i<fNumPixels; i++)
215 {
216 const Int_t s = (*this)[i].GetAidx();
217
218 if (s>=fNumPixWithAidx.GetSize())
219 fNumPixWithAidx.Set(s+1);
220
221 fNumPixWithAidx[s]++;
222 }
223}
224
225// --------------------------------------------------------------------------
226//
227// Calculate the maximum radius of the camera. This is ment for GUI layout.
228//
229void MGeomCam::CalcMaxRadius()
230{
231 fMaxRadius.Set(GetNumAreas()+1);
232 fMinRadius.Set(GetNumAreas()+1);
233
234 for (UInt_t i=0; i<GetNumAreas()+1; i++)
235 {
236 fMaxRadius[i] = 0.;
237 fMinRadius[i] = FLT_MAX;
238 }
239
240 for (UInt_t i=0; i<fNumPixels; i++)
241 {
242 const MGeomPix &pix = (*this)[i];
243
244 const UInt_t s = pix.GetAidx();
245
246 const Float_t d = pix.GetD();
247 const Float_t r = pix.GetDist();
248
249 const Float_t maxr = r + d;
250 const Float_t minr = r>d ? r-d : 0;
251
252 if (maxr>fMaxRadius[s+1])
253 fMaxRadius[s+1] = maxr;
254
255 if (minr<fMinRadius[s+1])
256 fMinRadius[s+1] = minr;
257
258 if (minr<fMinRadius[0])
259 fMinRadius[0] = minr;
260
261 if (maxr>fMaxRadius[0])
262 fMaxRadius[0] = maxr;
263 }
264}
265
266// --------------------------------------------------------------------------
267//
268// sort neighbours from angle of -180 degree to -180 degree
269//
270// where right side of main pixel contains negative degrees
271// and left side positive degrees
272//
273// angle measured from top (0 degree) to bottom (180 degree)
274// ^ - | + //
275// | _ | _ //
276// | / \|/ \ //
277// 30 degree -+- | | | //
278// | / \ / \ / \ //
279// 90 degree -+- | | X | | //
280// | \ / \ / \ / //
281// 150 degree -+- | | | //
282// | \_/|\_/ //
283// | | //
284// | - | + //
285// ------------------> //
286// //
287void MGeomCam::SortNeighbors()
288{
289 for (unsigned int i=0; i<fNumPixels; i++)
290 {
291 MGeomPix &gpix = (*this)[i];
292
293 Double_t phi[6];
294 Int_t idx[7] = { 0, 0, 0, 0, 0, 0, -1 };
295
296 const Int_t n2 = gpix.GetNumNeighbors();
297 for (int j=0; j<n2; j++)
298 {
299 idx[j] = gpix.GetNeighbor(j);
300 phi[j] = (*this)[idx[j]].GetAngle(gpix);
301 }
302
303 Int_t sort[6] = { 6, 6, 6, 6, 6, 6 };
304
305 TMath::Sort(n2, phi, sort, kFALSE);
306
307 gpix.SetNeighbors(idx[sort[0]], idx[sort[1]], idx[sort[2]],
308 idx[sort[3]], idx[sort[4]], idx[sort[5]]);
309 }
310}
311
312// --------------------------------------------------------------------------
313//
314// Returns the distance between the pixels i and j. -1 if an index
315// doesn't exist. The default for j is 0. Assuming that 0 is the index
316// for a central pixel you can get the distance to the camera center.
317//
318Float_t MGeomCam::GetDist(UShort_t i, UShort_t j) const
319{
320 if (i>=fNumPixels || j>=fNumPixels)
321 return -1;
322
323 return (*this)[i].GetDist((*this)[j]);
324}
325
326// --------------------------------------------------------------------------
327//
328// Returns the angle between of pixels i wrt pixel j (default=0). The angle
329// is returned in the range between -pi and pi (atan2) and 2*pi if i or j
330// is out of range.
331//
332Float_t MGeomCam::GetAngle(UShort_t i, UShort_t j) const
333{
334 if (i>=fNumPixels || j>=fNumPixels)
335 return TMath::TwoPi();
336
337 return (*this)[i].GetAngle((*this)[j]);
338}
339
340// --------------------------------------------------------------------------
341//
342// Have to call the radii of the subcameras starting to count from 1
343//
344Float_t MGeomCam::GetMaxRadius(const Int_t i) const
345{
346 return i<-1 || i>=(Int_t)GetNumAreas() ? -1 : fMaxRadius[i+1];
347}
348
349// --------------------------------------------------------------------------
350//
351// Have to call the radii of the subcameras starting to count from 1
352//
353Float_t MGeomCam::GetMinRadius(const Int_t i) const
354{
355 return i<-1 || i>=(Int_t)GetNumAreas() ? -1 : fMinRadius[i+1];
356}
357
358// --------------------------------------------------------------------------
359//
360// returns the ratio of the area of the pixel with index 0 to the pixel
361// with the specified index i. 0 Is returned if the index argument is
362// out of range.
363//
364Float_t MGeomCam::GetPixRatio(UInt_t i) const
365{
366 // Former: (*this)[0].GetA()/(*this)[i].GetA();
367 // The const_cast is necessary to support older root version
368 return i<fNumPixels ? const_cast<TArrayF&>(fPixRatio)[i] : 0;
369}
370
371// --------------------------------------------------------------------------
372//
373// returns the square root of the ratio of the area of the pixel with
374// index 0 to the pixel with the specified index i. 0 Is returned if
375// the index argument is out of range.
376//
377Float_t MGeomCam::GetPixRatioSqrt(UInt_t i) const
378{
379 // The const_cast is necessary to support older root version
380 return i<fNumPixels ? const_cast<TArrayF&>(fPixRatioSqrt)[i] : 0;
381}
382
383// --------------------------------------------------------------------------
384//
385// Prints the Geometry information of all pixels in the camera.
386// With the option "simple" you can suppress the output of the contents
387// of the individual pixels.
388//
389void MGeomCam::Print(Option_t *o) const
390{
391 //
392 // Print Information about the Geometry of the camera
393 //
394 *fLog << all << " Number of Pixels (" << GetTitle() << "): " << fNumPixels << endl;
395 *fLog << " Number of Sectors: " << GetNumSectors() << " Area-Indices: " << GetNumAreas() << endl;
396 *fLog << " Min.Radius: " << GetMinRadius() << " Max.Radius: " << GetMaxRadius() << endl;
397
398 if (!TString(o).Contains("simple", TString::kIgnoreCase))
399 fPixels.Print();
400}
401
402// --------------------------------------------------------------------------
403//
404// Return the pixel index corresponding to the coordinates given in x, y.
405// The coordinates are given in pixel units (millimeters)
406// If no pixel exists return -1;
407//
408Int_t MGeomCam::GetPixelIdxXY(Float_t x, Float_t y) const
409{
410 for (unsigned int i=0; i<fNumPixels; i++)
411 if ((*this)[i].IsInside(x, y))
412 return i;
413
414 return -1;
415}
416
417Int_t MGeomCam::GetPixelIdx(const TVector2 &v) const
418{
419 return GetPixelIdxXY(v.X(), v.Y());
420}
421
422Int_t MGeomCam::GetPixelIdxDeg(const TVector2 &v) const
423{
424 return GetPixelIdxXYdeg(v.X(), v.Y());
425}
426
427// --------------------------------------------------------------------------
428//
429// Add all indices to arr of all neighbors around pix in a radius r.
430// The center pixel is also returned.
431//
432void MGeomCam::GetNeighbors(TArrayI &arr, const MGeomPix &pix, Float_t r) const
433{
434 arr.Set(GetNumPixels());
435
436 Int_t n = 0;
437
438 for (unsigned int i=0; i<GetNumPixels(); i++)
439 {
440 if (r>TMath::Hypot(pix.GetX()-(*this)[i].GetX(), pix.GetY()-(*this)[i].GetY()))
441 arr[n++] = i;
442 }
443
444 arr.Set(n);
445}
446
447// --------------------------------------------------------------------------
448//
449// Add all indices to arr of all neighbors around idx in a radius r.
450// The center pixel is also returned.
451//
452void MGeomCam::GetNeighbors(TArrayI &arr, UInt_t idx, Float_t r) const
453{
454 if (idx>=GetNumPixels())
455 {
456 arr.Set(0);
457 return;
458 }
459
460 const MGeomPix &pix = (*this)[idx];
461 GetNeighbors(arr, pix, r);
462}
463
464// --------------------------------------------------------------------------
465//
466// Add all pixels to list of all neighbors around pix in a radius r.
467// The center pixel is also returned.
468//
469void MGeomCam::GetNeighbors(TList &arr, const MGeomPix &pix, Float_t r) const
470{
471 for (unsigned int i=0; i<GetNumPixels(); i++)
472 {
473 if (r>TMath::Hypot(pix.GetX()-(*this)[i].GetX(), pix.GetY()-(*this)[i].GetY()))
474 arr.Add(fPixels.UncheckedAt(i));
475 }
476}
477
478// --------------------------------------------------------------------------
479//
480// Add all pixels to list of all neighbors around idx in a radius r.
481// The center pixel is also returned.
482//
483void MGeomCam::GetNeighbors(TList &arr, UInt_t idx, Float_t r) const
484{
485 if (idx>=GetNumPixels())
486 return;
487
488 const MGeomPix &pix = (*this)[idx];
489 GetNeighbors(arr, pix, r);
490}
491
492// --------------------------------------------------------------------------
493//
494// Return direction of p2 w.r.t. p1. For more details
495// see MGeomPix::GetDirection
496//
497Int_t MGeomCam::GetDirection(UInt_t p1, UInt_t p2) const
498{
499 if (p1>fNumPixels || p2>fNumPixels)
500 return -1;
501
502 return operator[](p1).GetDirection(operator[](p2));
503}
504
505// --------------------------------------------------------------------------
506//
507// Get index of neighbor of pixel idx in direction dir, if existing.
508//
509Int_t MGeomCam::GetNeighbor(UInt_t idx, Int_t dir) const
510{
511 if (idx>fNumPixels)
512 return -1;
513
514 const MGeomPix &pix=operator[](idx);
515
516 //
517 // search for the neighbor in the given direction
518 //
519 int i;
520 for (i=0; i<pix.GetNumNeighbors(); i++)
521 if (GetDirection(idx, pix.GetNeighbor(i))==dir)
522 return pix.GetNeighbor(i);
523
524 return -1;
525}
526
527// --------------------------------------------------------------------------
528//
529// This workaround reproduces (as much as possible) the contents
530// of fPixels which got lost writing MGeomCam in which the
531// fPixels were filles with the []-operator instead of AddAt
532// and a root version previous to 5.18.
533// You try to read broken contents from file if fNumPixels is empty
534// but fNumPixels>0.
535// If you ever read broken contents from a split branch you
536// MUST call this function after reading.
537//
538void MGeomCam::StreamerWorkaround()
539{
540 if (fNumPixels==0 || !fPixels.IsEmpty())
541 return;
542
543 TObject *cam = (TObject*)IsA()->New();
544 cam->Copy(*this);
545 delete cam;
546}
547
548// --------------------------------------------------------------------------
549//
550// This is a custom made streamer. Due to a bug in TObjArray::operator[]
551// old root-versions didn't correctly store the contents of the TObjArray.
552// If such a file is detected (TObjArray empty) a new MGeomCam is created
553// with IsA()->New() and its contents is copied to this. Unfortunately
554// this won't work for all MGeomCam derivatives which need arguments
555// in the constructor and MGeomCam itself (no derivative). Fortunately
556// in prodoction we have never stored anything else than MGeomCamMagic yet.
557// The bug in root can be worked around using AddAt instead of operator[].
558//
559void MGeomCam::Streamer(TBuffer &b)
560{
561 if (b.IsReading())
562 {
563 MGeomCam::Class()->ReadBuffer(b, this);
564 StreamerWorkaround();
565 }
566 else
567 MGeomCam::Class()->WriteBuffer(b, this);
568}
Note: See TracBrowser for help on using the repository browser.