source: trunk/MagicSoft/Mars/mimage/MHillas.cc@ 7243

Last change on this file since 7243 was 7224, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 12.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): Thomas Bretz 12/2000 <mailto:tbretz@uni-sw.gwdg.de>
19! Author(s): Harald Kornmayer 1/2001
20! Author(s): Rudolf Bock 10/2001 <mailto:Rudolf.Bock@cern.ch>
21! Author(s): Wolfgang Wittek 6/2002 <mailto:wittek@mppmu.mpg.de>
22!
23! Copyright: MAGIC Software Development, 2000-2003
24!
25!
26\* ======================================================================== */
27
28/////////////////////////////////////////////////////////////////////////////
29//
30// MHillas
31//
32// Storage Container for image parameters
33//
34// basic image parameters
35//
36// Version 1:
37// ----------
38// fLength [mm] major axis of ellipse
39// fWidth [mm] minor axis
40// fDelta [rad] angle of major axis with x-axis
41// by definition the major axis is pointing into
42// the hemisphere x>0, thus -pi/2 < delta < pi/2
43// fSize [#CerPhot] total sum of pixels
44// fMeanX [mm] x of center of ellipse
45// fMeanY [mm] y of center of ellipse
46//
47// Version 2:
48// ----------
49// fNumCorePixels number of pixels called core
50// fNumUsedPixels number of pixels which survived the cleaning
51//
52// Version 3:
53// ----------
54// fNumCorePixels moved to MNewImagePar
55// fNumUsedPixels moved to MNewImagePar
56// fCosDelta added
57// fSinDelte added
58//
59/////////////////////////////////////////////////////////////////////////////
60#include "MHillas.h"
61
62#include <TArrayF.h>
63
64#include <TLine.h>
65#include <TEllipse.h>
66#include <TVector2.h>
67
68#include "MGeomPix.h"
69#include "MGeomCam.h"
70
71#include "MSignalPix.h"
72#include "MSignalCam.h"
73
74#include "MLog.h"
75#include "MLogManip.h"
76
77ClassImp(MHillas);
78
79using namespace std;
80
81// --------------------------------------------------------------------------
82//
83// Default constructor.
84//
85MHillas::MHillas(const char *name, const char *title)
86{
87 fName = name ? name : "MHillas";
88 fTitle = title ? title : "Storage container for image parameters of one event";
89
90 Reset();
91}
92
93// --------------------------------------------------------------------------
94//
95// Initializes the values with defaults. For the default values see the
96// source code.
97//
98void MHillas::Reset()
99{
100 fLength = -1;
101 fWidth = -1;
102 fDelta = 0;
103
104 fSize = -1;
105 fMeanX = 0;
106 fMeanY = 0;
107}
108
109// --------------------------------------------------------------------------
110//
111// return the mean position as TVector2(meanx, meany)
112//
113TVector2 MHillas::GetMean() const
114{
115 return TVector2(fMeanX, fMeanY);
116}
117
118// --------------------------------------------------------------------------
119//
120// return the direction of the main axis (normalized). The main axis
121// always has the direction --> x>0
122//
123TVector2 MHillas::GetNormAxis() const
124{
125 return TVector2(fCosDelta, fSinDelta);
126}
127
128// --------------------------------------------------------------------------
129//
130// Analytical estimation of length of border line:
131// U = pi*(a+b - sqrt(a*b))
132//
133// GetBorderLine() [mm]
134//
135Double_t MHillas::GetBorderLine() const
136{
137 const Double_t a = fWidth+fLength;
138 const Double_t s = fWidth*fLength;
139
140 return TMath::Pi()*(1.5*a - TMath::Sqrt(s));
141}
142
143// --------------------------------------------------------------------------
144//
145// Analytical estimation of length of border line:
146// A = pi*a*b
147//
148// GetArea() [mm^2]
149//
150Double_t MHillas::GetArea() const
151{
152 return TMath::Pi()*fWidth*fLength;
153}
154
155// --------------------------------------------------------------------------
156//
157// Print the hillas Parameters to *fLog
158//
159void MHillas::Print(Option_t *) const
160{
161 Double_t atg = atan2(fMeanY, fMeanX)*kRad2Deg;
162
163 if (atg<0)
164 atg += 180;
165
166 *fLog << all;
167 *fLog << GetDescriptor() << endl;
168 *fLog << " - Length [mm] = " << fLength << endl;
169 *fLog << " - Width [mm] = " << fWidth << endl;
170 *fLog << " - Delta [deg] = " << fDelta*kRad2Deg << endl;
171 *fLog << " - Size [phe] = " << fSize << endl;
172 *fLog << " - Meanx [mm] = " << fMeanX << endl;
173 *fLog << " - Meany [mm] = " << fMeanY << endl;
174 *fLog << " - atg(y/x) [deg] = " << atg << endl;
175}
176
177// --------------------------------------------------------------------------
178//
179// Print the hillas Parameters to *fLog, depending on the geometry in
180// units of deg
181//
182void MHillas::Print(const MGeomCam &geom) const
183{
184 Double_t atg = atan2(fMeanY, fMeanX)*kRad2Deg;
185
186 if (atg<0)
187 atg += 180;
188
189 *fLog << all;
190 *fLog << GetDescriptor() << endl;
191 *fLog << " - Length [deg] = " << fLength*geom.GetConvMm2Deg() << endl;
192 *fLog << " - Width [deg] = " << fWidth *geom.GetConvMm2Deg() << endl;
193 *fLog << " - Delta [deg] = " << fDelta*kRad2Deg << endl;
194 *fLog << " - Size [phe] = " << fSize << endl;
195 *fLog << " - Meanx [deg] = " << fMeanX *geom.GetConvMm2Deg() << endl;
196 *fLog << " - Meany [deg] = " << fMeanY *geom.GetConvMm2Deg() << endl;
197 *fLog << " - atg(y/x) [deg] = " << atg << endl;
198}
199
200// --------------------------------------------------------------------------
201//
202// Paint the ellipse corresponding to the parameters
203//
204void MHillas::Paint(Option_t *opt)
205{
206 static const Float_t sOffsetW=40.0;
207 static const Float_t sOffsetL=266.0;
208
209 if (fLength<0 || fWidth<0)
210 return;
211
212 const Float_t l = fLength+sOffsetL;
213 const Float_t w = fWidth +sOffsetW;
214
215 TLine line;
216 line.SetLineWidth(1);
217 line.SetLineColor(kRed);
218
219 // Length line
220 line.PaintLine(-l*fCosDelta+fMeanX, -l*fSinDelta+fMeanY,
221 +l*fCosDelta+fMeanX, +l*fSinDelta+fMeanY);
222
223
224 // Width line
225 line.PaintLine(+w*fSinDelta+fMeanX, -w*fCosDelta+fMeanY,
226 -w*fSinDelta+fMeanX, +w*fCosDelta+fMeanY);
227
228 // Rough estimate for disp
229 const Double_t p = 362*(1-fWidth/fLength);
230
231 // Disp line
232 line.PaintLine( p*fCosDelta+20*fSinDelta+fMeanX, p*fSinDelta-20*fCosDelta+fMeanY,
233 p*fCosDelta-20*fSinDelta+fMeanX, p*fSinDelta+20*fCosDelta+fMeanY);
234 line.PaintLine(-p*fCosDelta+20*fSinDelta+fMeanX, -p*fSinDelta-20*fCosDelta+fMeanY,
235 -p*fCosDelta-20*fSinDelta+fMeanX, -p*fSinDelta+20*fCosDelta+fMeanY);
236
237 TEllipse e(fMeanX, fMeanY, fLength, fWidth, 0, 360, fDelta*kRad2Deg+180);
238 e.SetLineWidth(2);
239 e.SetLineColor(kGreen);
240 e.Paint();
241}
242
243// --------------------------------------------------------------------------
244//
245// Calculate the image parameters from a Cherenkov photon event
246// assuming Cher.photons/pixel and pixel coordinates are given
247// In case you don't call Calc from within an eventloop make sure, that
248// you call the Reset member function before.
249// Returns:
250// 0 no error
251// 1 number of pixels in event == 0 (special MC events)
252// 2 size==0
253// 3 number of used pixel < 3
254// 4 CorrXY == 0
255//
256Int_t MHillas::Calc(const MGeomCam &geom, const MSignalCam &evt, Int_t island)
257{
258 const UInt_t numpix = evt.GetNumPixels();
259
260 //
261 // sanity check 1 (special MC events)
262 //
263 if (numpix==0)
264 return 1;
265
266 //
267 // calculate mean value of pixel coordinates and fSize
268 // -----------------------------------------------------
269 //
270 // Because this are only simple sums of roughly 600 values
271 // with an accuracy less than three digits there should not
272 // be any need to use double precision (Double_t) for the
273 // calculation of fMeanX, fMeanY and fSize.
274 //
275 fMeanX = 0;
276 fMeanY = 0;
277 fSize = 0;
278
279 UInt_t numused = 0;
280
281 for (UInt_t i=0; i<numpix; i++)
282 {
283 MSignalPix &pix = evt[i];
284 if (!pix.IsPixelUsed())
285 continue;
286
287 if (island>=0 && pix.GetIdxIsland()!=island)
288 continue;
289
290 const MGeomPix &gpix = geom[i];
291
292 const Float_t nphot = pix.GetNumPhotons();
293
294 fSize += nphot; // [counter]
295 fMeanX += nphot * gpix.GetX(); // [mm]
296 fMeanY += nphot * gpix.GetY(); // [mm]
297
298 numused++;
299 }
300
301 //
302 // sanity check 2
303 //
304 if (fSize==0)
305 return 2;
306
307 fMeanX /= fSize; // [mm]
308 fMeanY /= fSize; // [mm]
309
310 //
311 // sanity check 3
312 //
313 if (numused<3)
314 return 3;
315
316 //
317 // calculate 2nd moments
318 // ---------------------
319 //
320 // To make sure that the more complicated sum is evaluated as
321 // accurate as possible (because it is needed for more
322 // complicated calculations (see below) we calculate it using
323 // double prcision.
324 //
325 Double_t corrxx=0; // [m^2]
326 Double_t corrxy=0; // [m^2]
327 Double_t corryy=0; // [m^2]
328
329 for (UInt_t i=0; i<numpix; i++)
330 {
331 const MSignalPix &pix = evt[i];
332 if (!pix.IsPixelUsed())
333 continue;
334
335 if (island>=0 && pix.GetIdxIsland()!=island)
336 continue;
337
338 const MGeomPix &gpix = geom[i];
339
340 const Float_t dx = gpix.GetX() - fMeanX; // [mm]
341 const Float_t dy = gpix.GetY() - fMeanY; // [mm]
342
343 const Float_t nphot = pix.GetNumPhotons(); // [#phot]
344
345 corrxx += nphot * dx*dx; // [mm^2]
346 corrxy += nphot * dx*dy; // [mm^2]
347 corryy += nphot * dy*dy; // [mm^2]
348 }
349
350 //
351 // calculate the basic Hillas parameters: orientation and size of axes
352 // -------------------------------------------------------------------
353 //
354 // fDelta is the angle between the major axis of the ellipse and
355 // the x axis. It is independent of the position of the ellipse
356 // in the camera it has values between -pi/2 and pi/2 degrees
357 //
358 // Rem: I tested replacing sqrt() by hypot() but they exactly
359 // consume the same amount of time
360 //
361 const Double_t d0 = corryy - corrxx;
362 const Double_t d1 = corrxy*2;
363 const Double_t d2 = TMath::Sqrt(d0*d0 + d1*d1) + d0; // [0
364
365 const Double_t tand = d2==0 ? 0 : d2 / d1; // Force 0 also if d1==0
366 const Double_t tand2 = tand*tand;
367
368 const Double_t s2 = tand2+1;
369 const Double_t s = TMath::Sqrt(s2);
370
371 // Set default for the case in which the image is symmetric on the y-axis
372 fDelta = TMath::Pi()/2;
373 fCosDelta = 0;
374 fSinDelta = 1;
375
376 Double_t axis1 = corryy;
377 Double_t axis2 = corrxx;
378
379 // This are all cases in which the image is not symmetric on the y-axis
380 if (d1!=0 || d2==0)
381 {
382 fDelta = TMath::ATan(tand);
383
384 fCosDelta = 1.0 /s; // need these in derived classes
385 fSinDelta = tand/s; // like MHillasExt
386
387 axis1 = (tand2*corryy + d2 + corrxx)/s2;
388 axis2 = (tand2*corrxx - d2 + corryy)/s2;
389 }
390
391 //
392 // fLength^2 is the second moment along the major axis of the distribution
393 // fWidth^2 is the second moment along the minor axis of the distribution
394 //
395 // From the algorithm we get: fWidth <= fLength is always true
396 //
397 // very small numbers can get negative by rounding
398 //
399 fLength = axis1<0 ? 0 : TMath::Sqrt(axis1/fSize); // [mm]
400 fWidth = axis2<0 ? 0 : TMath::Sqrt(axis2/fSize); // [mm]
401
402 SetReadyToSave();
403
404 return 0;
405}
406
407// --------------------------------------------------------------------------
408//
409// This function is ment for special usage, please never try to set
410// values via this function
411//
412void MHillas::Set(const TArrayF &arr)
413{
414 if (arr.GetSize() != 6)
415 return;
416
417 fLength = arr.At(0); // [mm] major axis of ellipse
418 fWidth = arr.At(1); // [mm] minor axis of ellipse
419 fDelta = arr.At(2); // [rad] angle of major axis with x-axis
420 fSize = arr.At(3); // [#CerPhot] sum of content of all pixels (number of Cherenkov photons)
421 fMeanX = arr.At(4); // [mm] x-coordinate of center of ellipse
422 fMeanY = arr.At(5); // [mm] y-coordinate of center of ellipse
423}
Note: See TracBrowser for help on using the repository browser.