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

Last change on this file since 2812 was 2624, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 10.4 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 <fstream>
63
64#include <TArrayF.h>
65#include <TEllipse.h>
66
67#include "MGeomPix.h"
68#include "MGeomCam.h"
69
70#include "MCerPhotPix.h"
71#include "MCerPhotEvt.h"
72
73#include "MLog.h"
74#include "MLogManip.h"
75
76ClassImp(MHillas);
77
78using namespace std;
79
80// --------------------------------------------------------------------------
81//
82// Default constructor.
83//
84MHillas::MHillas(const char *name, const char *title)
85{
86 fName = name ? name : "MHillas";
87 fTitle = title ? title : "Storage container for image parameters of one event";
88
89 Reset();
90}
91
92// --------------------------------------------------------------------------
93//
94// Destructor. Deletes the TEllipse if one exists.
95//
96MHillas::~MHillas()
97{
98}
99
100// --------------------------------------------------------------------------
101//
102// Initializes the values with defaults. For the default values see the
103// source code.
104//
105void MHillas::Reset()
106{
107 fLength = -1;
108 fWidth = -1;
109 fDelta = 0;
110
111 fSize = -1;
112 fMeanX = 0;
113 fMeanY = 0;
114}
115
116// --------------------------------------------------------------------------
117//
118// Print the hillas Parameters to *fLog
119//
120void MHillas::Print(Option_t *) const
121{
122 Double_t atg = atan2(fMeanY, fMeanX)*kRad2Deg;
123
124 if (atg<0)
125 atg += 180;
126
127 *fLog << all;
128 *fLog << "Basic Image Parameters (" << GetName() << ")" << endl;
129 *fLog << " - Length [mm] = " << fLength << endl;
130 *fLog << " - Width [mm] = " << fWidth << endl;
131 *fLog << " - Delta [deg] = " << fDelta*kRad2Deg << endl;
132 *fLog << " - Size [1] = " << fSize << " #CherPhot" << endl;
133 *fLog << " - Meanx [mm] = " << fMeanX << endl;
134 *fLog << " - Meany [mm] = " << fMeanY << endl;
135 *fLog << " - atg(y/x) [deg] = " << atg << endl;
136}
137
138// --------------------------------------------------------------------------
139//
140// Print the hillas Parameters to *fLog, depending on the geometry in
141// units of deg
142//
143void MHillas::Print(const MGeomCam &geom) const
144{
145 Double_t atg = atan2(fMeanY, fMeanX)*kRad2Deg;
146
147 if (atg<0)
148 atg += 180;
149
150 *fLog << all;
151 *fLog << "Basic Image Parameters (" << GetName() << ")" << endl;
152 *fLog << " - Length [deg] = " << fLength*geom.GetConvMm2Deg() << endl;
153 *fLog << " - Width [deg] = " << fWidth *geom.GetConvMm2Deg() << endl;
154 *fLog << " - Delta [deg] = " << fDelta*kRad2Deg << endl;
155 *fLog << " - Size [1] = " << fSize << " #CherPhot" << endl;
156 *fLog << " - Meanx [deg] = " << fMeanX *geom.GetConvMm2Deg() << endl;
157 *fLog << " - Meany [deg] = " << fMeanY *geom.GetConvMm2Deg() << endl;
158 *fLog << " - atg(y/x) [deg] = " << atg << endl;
159}
160
161// --------------------------------------------------------------------------
162//
163// Paint the ellipse corresponding to the parameters
164//
165void MHillas::Paint(Option_t *opt)
166{
167 if (fLength<0 || fWidth<0)
168 return;
169
170 TEllipse e(fMeanX, fMeanY, fLength, fWidth, 0, 360, fDelta*kRad2Deg+180);
171 e.SetLineWidth(2);
172 e.Paint();
173}
174
175// --------------------------------------------------------------------------
176//
177// Calculate the image parameters from a Cherenkov photon event
178// assuming Cher.photons/pixel and pixel coordinates are given
179// In case you don't call Calc from within an eventloop make sure, that
180// you call the Reset member function before.
181// Returns:
182// 0 no error
183// 1 number of pixels < 3
184// 2 size==0
185// 3 number of used pixel < 3
186// 4 CorrXY == 0
187//
188Int_t MHillas::Calc(const MGeomCam &geom, const MCerPhotEvt &evt)
189{
190 const UInt_t npixevt = evt.GetNumPixels();
191
192 //
193 // sanity check
194 //
195 if (npixevt < 3)
196 return 1;
197
198 //
199 // calculate mean value of pixel coordinates and fSize
200 // -----------------------------------------------------
201 //
202 // Because this are only simple sums of roughly 600 values
203 // with an accuracy less than three digits there should not
204 // be any need to use double precision (Double_t) for the
205 // calculation of fMeanX, fMeanY and fSize.
206 //
207 fMeanX = 0;
208 fMeanY = 0;
209 fSize = 0;
210
211 Int_t numused = 0;
212
213 for (UInt_t i=0; i<npixevt; i++)
214 {
215 const MCerPhotPix &pix = evt[i];
216
217 if (!pix.IsPixelUsed())
218 continue;
219
220 const MGeomPix &gpix = geom[pix.GetPixId()];
221
222 const Float_t nphot = pix.GetNumPhotons();
223
224 fSize += nphot; // [counter]
225 fMeanX += nphot * gpix.GetX(); // [mm]
226 fMeanY += nphot * gpix.GetY(); // [mm]
227
228 numused++;
229 }
230
231 //
232 // sanity checks
233 //
234 if (fSize==0)
235 return 2;
236
237 fMeanX /= fSize; // [mm]
238 fMeanY /= fSize; // [mm]
239
240 if (numused<3)
241 return 3;
242
243 //
244 // calculate 2nd moments
245 // ---------------------
246 //
247 // To make sure that the more complicated sum is evaluated as
248 // accurate as possible (because it is needed for more
249 // complicated calculations (see below) we calculate it using
250 // double prcision.
251 //
252 Double_t corrxx=0; // [m^2]
253 Double_t corrxy=0; // [m^2]
254 Double_t corryy=0; // [m^2]
255
256 for (UInt_t i=0; i<npixevt; i++)
257 {
258 const MCerPhotPix &pix = evt[i];
259
260 if (!pix.IsPixelUsed())
261 continue;
262
263 const MGeomPix &gpix = geom[pix.GetPixId()];
264
265 const Float_t dx = gpix.GetX() - fMeanX; // [mm]
266 const Float_t dy = gpix.GetY() - fMeanY; // [mm]
267
268 const Float_t nphot = pix.GetNumPhotons(); // [#phot]
269
270 corrxx += nphot * dx*dx; // [mm^2]
271 corrxy += nphot * dx*dy; // [mm^2]
272 corryy += nphot * dy*dy; // [mm^2]
273 }
274
275 //
276 // If corrxy=0 (which should happen not very often, because fSize>0)
277 // we cannot calculate Length and Width.
278 // In reallity it is almost impossible to have a distribution of
279 // cerenkov photons in the used pixels which is exactly symmetric
280 // along one of the axis.
281 // It seems to be less than 0.1% of all events.
282 //
283 if (corrxy==0)
284 return 4;
285
286 //
287 // calculate the basic Hillas parameters: orientation and size of axes
288 // -------------------------------------------------------------------
289 //
290 // fDelta is the angle between the major axis of the ellipse and
291 // the x axis. It is independent of the position of the ellipse
292 // in the camera it has values between -pi/2 and pi/2 degrees
293 //
294 // Rem: I tested replacing sqrt() by hypot() but they exactly
295 // consume the same amount of time
296 //
297 const Double_t d0 = corryy - corrxx;
298 const Double_t d1 = corrxy*2;
299 const Double_t d2 = d0 + sqrt(d0*d0 + d1*d1);
300 const Double_t tand = d2 / d1;
301 const Double_t tand2 = tand*tand;
302
303 fDelta = atan(tand);
304
305 const Double_t s2 = tand2+1;
306 const Double_t s = sqrt(s2);
307
308 fCosDelta = 1.0/s; // need these in derived classes
309 fSinDelta = tand/s; // like MHillasExt
310
311 Double_t axis1 = (tand2*corryy + d2 + corrxx)/s2/fSize;
312 Double_t axis2 = (tand2*corrxx - d2 + corryy)/s2/fSize;
313
314 //
315 // fLength^2 is the second moment along the major axis of the ellipse
316 // fWidth^2 is the second moment along the minor axis of the ellipse
317 //
318 // From the algorithm we get: fWidth <= fLength is always true
319 //
320 // very small numbers can get negative by rounding
321 //
322 fLength = axis1<0 ? 0 : sqrt(axis1); // [mm]
323 fWidth = axis2<0 ? 0 : sqrt(axis2); // [mm]
324
325 SetReadyToSave();
326
327 return 0;
328}
329
330// --------------------------------------------------------------------------
331//
332// This function is ment for special usage, please never try to set
333// values via this function
334//
335void MHillas::Set(const TArrayF &arr)
336{
337 if (arr.GetSize() != 6)
338 return;
339
340 fLength = arr.At(0); // [mm] major axis of ellipse
341 fWidth = arr.At(1); // [mm] minor axis of ellipse
342 fDelta = arr.At(2); // [rad] angle of major axis with x-axis
343 fSize = arr.At(3); // [#CerPhot] sum of content of all pixels (number of Cherenkov photons)
344 fMeanX = arr.At(4); // [mm] x-coordinate of center of ellipse
345 fMeanY = arr.At(5); // [mm] y-coordinate of center of ellipse
346}
Note: See TracBrowser for help on using the repository browser.