source: trunk/MagicSoft/Mars/mhist/MHHillas.cc@ 1522

Last change on this file since 1522 was 1504, checked in by tbretz, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 10.1 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 2001 <mailto:tbretz@uni-sw.gwdg.de>
19! Wolfgang Wittek 2002 <mailto:wittek@mppmu.mpg.de>
20!
21! Copyright: MAGIC Software Development, 2000-2002
22!
23!
24\* ======================================================================== */
25
26/////////////////////////////////////////////////////////////////////////////
27//
28// MHHillas
29//
30// This class contains histograms for the source independent image parameters
31//
32/////////////////////////////////////////////////////////////////////////////
33
34#include "MHHillas.h"
35
36#include <math.h>
37
38#include <TH1.h>
39#include <TH2.h>
40#include <TPad.h>
41#include <TStyle.h>
42#include <TCanvas.h>
43
44#include "MLog.h"
45#include "MLogManip.h"
46
47#include "MParList.h"
48
49#include "MHillas.h"
50#include "MGeomCam.h"
51#include "MBinning.h"
52
53
54ClassImp(MHHillas);
55
56// --------------------------------------------------------------------------
57//
58// Setup four histograms for Width, Length
59//
60MHHillas::MHHillas(const char *name, const char *title)
61 : fMm2Deg(1), fUseMmScale(kTRUE)
62{
63 //
64 // set the name and title of this object
65 //
66 fName = name ? name : "MHHillas";
67 fTitle = title ? title : "Source independent image parameters";
68
69 fLength = new TH1F("Length", "Length of Ellipse", 100, 0, 296.7);
70 fWidth = new TH1F("Width", "Width of Ellipse", 100, 0, 296.7);
71 fDistC = new TH1F("DistC", "Distance from center of camera", 100, 0, 445);
72 fDelta = new TH1F("Delta", "Angle (Main axis - x-axis)", 101, -90, 90);
73 fUsedPix = new TH1F("UsedPix", "Number of used pixels", 150, 0, 150);
74 fCorePix = new TH1F("CorePix", "Number of core pixels", 150, 0, 150);
75
76 fLength->SetLineColor(kBlue);
77 fCorePix->SetLineColor(kRed);
78 fUsedPix->SetLineColor(kGreen);
79
80 fLength->SetDirectory(NULL);
81 fWidth->SetDirectory(NULL);
82 fDistC->SetDirectory(NULL);
83 fDelta->SetDirectory(NULL);
84 fUsedPix->SetDirectory(NULL);
85 fCorePix->SetDirectory(NULL);
86
87 fLength->SetXTitle("Length [mm]");
88 fWidth->SetXTitle("Width [mm]");
89 fDistC->SetXTitle("Distance [mm]");
90 fDelta->SetXTitle("Delta [\\circ]");
91 fUsedPix->SetXTitle("Number of Pixels");
92 fCorePix->SetXTitle("Number of Pixels");
93
94 fLength->SetYTitle("Counts");
95 fWidth->SetYTitle("Counts");
96 fDistC->SetYTitle("Counts");
97 fDelta->SetYTitle("Counts");
98 fUsedPix->SetYTitle("Counts");
99 fCorePix->SetYTitle("Counts");
100
101 MBinning bins;
102 bins.SetEdgesLog(50, 1, 1e7);
103
104 fSize = new TH1F;
105 fSize->SetName("Size");
106 fSize->SetTitle("Number of Photons");
107 fSize->SetDirectory(NULL);
108 fSize->SetXTitle("Size");
109 fSize->SetYTitle("Counts");
110 fSize->GetXaxis()->SetTitleOffset(1.2);
111 fSize->GetXaxis()->SetLabelOffset(-0.015);
112
113 bins.Apply(*fSize);
114
115 fCenter = new TH2F("Center", "Center of Ellipse", 51, -445, 445, 51, -445, 445);
116 fCenter->SetDirectory(NULL);
117 fCenter->SetXTitle("x [mm]");
118 fCenter->SetYTitle("y [mm]");
119 fCenter->SetZTitle("Counts");
120}
121
122// --------------------------------------------------------------------------
123//
124// Delete the histograms
125//
126MHHillas::~MHHillas()
127{
128 delete fLength;
129 delete fWidth;
130
131 delete fDistC;
132 delete fDelta;
133
134 delete fSize;
135 delete fCenter;
136
137 delete fUsedPix;
138 delete fCorePix;
139}
140
141// --------------------------------------------------------------------------
142//
143// Setup the Binning for the histograms automatically if the correct
144// instances of MBinning (with the names 'BinningWidth' and 'BinningLength')
145// are found in the parameter list
146// Use this function if you want to set the conversion factor which
147// is used to convert the mm-scale in the camera plain into the deg-scale
148// used for histogram presentations. The conversion factor is part of
149// the camera geometry. Please create a corresponding MGeomCam container.
150//
151Bool_t MHHillas::SetupFill(const MParList *plist)
152{
153 const MGeomCam *geom = (MGeomCam*)plist->FindObject("MGeomCam");
154 if (!geom)
155 *fLog << warn << GetDescriptor() << ": No Camera Geometry available. Using mm-scale for histograms." << endl;
156 else
157 {
158 fMm2Deg = geom->GetConvMm2Deg();
159 SetMmScale(kFALSE);
160 }
161
162 ApplyBinning(*plist, "Width", fWidth);
163 ApplyBinning(*plist, "Length", fLength);
164 ApplyBinning(*plist, "Dist", fDistC);
165 ApplyBinning(*plist, "Delta", fDelta);
166 ApplyBinning(*plist, "Size", fSize);
167 ApplyBinning(*plist, "Pixels", fUsedPix);
168 ApplyBinning(*plist, "Pixels", fCorePix);
169
170 const MBinning *bins = (MBinning*)plist->FindObject("BinningCamera");
171 if (!bins)
172 *fLog << warn << "Object 'BinningCamera' [MBinning] not found... no binning applied." << endl;
173 else
174 SetBinning(fCenter, bins, bins);
175
176 return kTRUE;
177}
178
179// --------------------------------------------------------------------------
180//
181// Use this function to setup your own conversion factor between degrees
182// and millimeters. The conversion factor should be the one calculated in
183// MGeomCam. Use this function with Caution: You could create wrong values
184// by setting up your own scale factor.
185//
186void MHHillas::SetMm2Deg(Float_t mmdeg)
187{
188 if (mmdeg<0)
189 {
190 *fLog << warn << dbginf << "Warning - Conversion factor < 0 - nonsense. Ignored." << endl;
191 return;
192 }
193
194 if (fMm2Deg>=0)
195 *fLog << warn << dbginf << "Warning - Conversion factor already set. Overwriting" << endl;
196
197 fMm2Deg = mmdeg;
198}
199
200// --------------------------------------------------------------------------
201//
202// With this function you can convert the histogram ('on the fly') between
203// degrees and millimeters.
204//
205void MHHillas::SetMmScale(Bool_t mmscale)
206{
207 if (fUseMmScale == mmscale)
208 return;
209
210 if (fMm2Deg<0)
211 {
212 *fLog << warn << dbginf << "Warning - Sorry, no conversion factor for conversion available." << endl;
213 return;
214 }
215
216 const Double_t scale = mmscale ? 1./fMm2Deg : fMm2Deg;
217 MH::ScaleAxis(fLength, scale);
218 MH::ScaleAxis(fWidth, scale);
219 MH::ScaleAxis(fDistC, scale);
220 MH::ScaleAxis(fCenter, scale, scale);
221
222 if (mmscale)
223 {
224 fLength->SetXTitle("Length [mm]");
225 fWidth->SetXTitle("Width [mm]");
226 fDistC->SetXTitle("Distance [mm]");
227 fCenter->SetXTitle("x [mm]");
228 fCenter->SetYTitle("y [mm]");
229 }
230 else
231 {
232 fLength->SetXTitle("Length [\\circ]");
233 fWidth->SetXTitle("Width [\\circ]");
234 fDistC->SetXTitle("Distance [\\circ]");
235 fCenter->SetXTitle("x [\\circ]");
236 fCenter->SetYTitle("y [\\circ]");
237 }
238
239 fUseMmScale = mmscale;
240}
241
242// --------------------------------------------------------------------------
243//
244// Fill the histograms with data from a MHillas-Container.
245// Be careful: Only call this with an object of type MHillas
246//
247Bool_t MHHillas::Fill(const MParContainer *par)
248{
249 const MHillas &h = *(MHillas*)par;
250
251 const Double_t d = sqrt(h.GetMeanX()*h.GetMeanX() + h.GetMeanY()*h.GetMeanY());
252 const Double_t scale = fUseMmScale ? 1 : fMm2Deg;
253
254 fLength ->Fill(scale*h.GetLength());
255 fWidth ->Fill(scale*h.GetWidth());
256 fDistC ->Fill(scale*d);
257 fCenter ->Fill(scale*h.GetMeanX(), scale*h.GetMeanY());
258 fDelta ->Fill(kRad2Deg*h.GetDelta());
259 fSize ->Fill(h.GetSize());
260 fUsedPix->Fill(h.GetNumUsedPixels());
261 fCorePix->Fill(h.GetNumCorePixels());
262
263 return kTRUE;
264}
265
266// --------------------------------------------------------------------------
267//
268// Setup a inversed deep blue sea palette for the fCenter histogram.
269//
270void MHHillas::SetColors() const
271{
272 // FIXME: This must be redone each time the canvas is repainted....
273 gStyle->SetPalette(51, NULL);
274 Int_t c[50];
275 for (int i=0; i<50; i++)
276 c[49-i] = gStyle->GetColorPalette(i);
277 gStyle->SetPalette(50, c);
278}
279
280// --------------------------------------------------------------------------
281//
282// Draw clones of four histograms. So that the object can be deleted
283// and the histograms are still visible in the canvas.
284// The cloned object are deleted together with the canvas if the canvas is
285// destroyed. If you want to handle dostroying the canvas you can get a
286// pointer to it from this function
287//
288TObject *MHHillas::DrawClone(Option_t *opt) const
289{
290 TCanvas *c = MakeDefCanvas(this, 720, 810);
291 c->Divide(2,3);
292
293 gROOT->SetSelectedPad(NULL);
294
295 c->cd(1);
296 DrawCopy(*fWidth, *fLength, "Width / Length");
297
298 c->cd(2);
299 gPad->SetLogx();
300 fSize->DrawCopy();
301
302 c->cd(3);
303 DrawCopy(*fCorePix, *fUsedPix, "Number of core/used Pixels");
304
305 c->cd(4);
306 fDelta->DrawCopy();
307
308 c->cd(5);
309 fDistC->DrawCopy();
310
311 c->cd(6);
312 SetColors();
313 fCenter->DrawCopy("colz");
314
315 c->Modified();
316 c->Update();
317
318 return c;
319}
320
321// --------------------------------------------------------------------------
322//
323// Creates a new canvas and draws the four histograms into it.
324// Be careful: The histograms belongs to this object and won't get deleted
325// together with the canvas.
326//
327void MHHillas::Draw(Option_t *)
328{
329 if (!gPad)
330 MakeDefCanvas(this, 720, 810);
331
332 gPad->Divide(2,3);
333
334 gPad->cd(1);
335 MH::Draw(*fWidth, *fLength, "Width / Length");
336
337 gPad->cd(2);
338 gPad->SetLogx();
339 fSize->Draw();
340
341 gPad->cd(3);
342 MH::Draw(*fCorePix, *fUsedPix, "Number of core/used Pixels");
343
344 gPad->cd(4);
345 fDelta->Draw();
346
347 gPad->cd(5);
348 fDistC->Draw();
349
350 gPad->cd(6);
351 SetColors();
352 fCenter->Draw("colz");
353
354 gPad->Modified();
355 gPad->Update();
356}
Note: See TracBrowser for help on using the repository browser.