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 2002 <mailto:tbretz@astro.uni-wuerzburg.de>
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2002
|
---|
21 | !
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 |
|
---|
25 | /////////////////////////////////////////////////////////////////////////////
|
---|
26 | //
|
---|
27 | // MH3
|
---|
28 | //
|
---|
29 | // With this histogram you can fill a histogram with up to three
|
---|
30 | // variables from Mars parameter containers in an eventloop.
|
---|
31 | //
|
---|
32 | // In the constructor you can give up to three variables which should be
|
---|
33 | // filled in the histogram. Dependend on the number of given variables
|
---|
34 | // (data members) a TH1F, TH2F or TH3F is created.
|
---|
35 | // Specify the data mamber like the following:
|
---|
36 | // "MHillas.fLength"
|
---|
37 | // Where MHillas is the name of the parameter container in the parameter
|
---|
38 | // list and fLength is the name of the data member which should be filled
|
---|
39 | // in the histogram. Assuming that your MHillas container has a different
|
---|
40 | // name (MyHillas) the name to give would be:
|
---|
41 | // "MyHillas.fLength"
|
---|
42 | //
|
---|
43 | // The axis binning is retrieved from the parameter list, too. Create a
|
---|
44 | // MBinning with the name "Binning" plus the name of your MH3 container
|
---|
45 | // plus the axis name ("X", "Y" or "Z") and add it to the parameter list.
|
---|
46 | //
|
---|
47 | // If you want to use a different unit for histogramming use SetScaleX,
|
---|
48 | // SetScaleY and SetScaleZ.
|
---|
49 | //
|
---|
50 | // For example:
|
---|
51 | // MH3 myhist("MHillas.fLength");
|
---|
52 | // myhist.SetName("MyHist");
|
---|
53 | // myhist.SetScaleX(geomcam.GetConvMm2Deg()); //convert length to degree
|
---|
54 | // MBinning bins("BinningMyHistX");
|
---|
55 | // bins.SetEdges(10, 0, 150);
|
---|
56 | // plist.AddToList(&myhist);
|
---|
57 | // plist.AddToList(&bins);
|
---|
58 | //
|
---|
59 | /////////////////////////////////////////////////////////////////////////////
|
---|
60 | #include "MH3.h"
|
---|
61 |
|
---|
62 | #include <ctype.h> // tolower
|
---|
63 | #include <fstream>
|
---|
64 |
|
---|
65 | #include <TPad.h>
|
---|
66 | #include <TStyle.h>
|
---|
67 | #include <TCanvas.h>
|
---|
68 |
|
---|
69 | #include <TH2.h>
|
---|
70 | #include <TH3.h>
|
---|
71 | #include <TProfile.h>
|
---|
72 | #include <TProfile2D.h>
|
---|
73 |
|
---|
74 | #include "MLog.h"
|
---|
75 | #include "MLogManip.h"
|
---|
76 |
|
---|
77 | #include "MParList.h"
|
---|
78 | #include "MBinning.h"
|
---|
79 | #include "MDataChain.h"
|
---|
80 |
|
---|
81 | ClassImp(MH3);
|
---|
82 |
|
---|
83 | using namespace std;
|
---|
84 |
|
---|
85 | static const TString gsDefName = "MH3";
|
---|
86 | static const TString gsDefTitle = "Container for a %dD Mars Histogram";
|
---|
87 |
|
---|
88 | // --------------------------------------------------------------------------
|
---|
89 | //
|
---|
90 | // Default constructor.
|
---|
91 | //
|
---|
92 | MH3::MH3(const unsigned int dim)
|
---|
93 | : fDimension(dim>3?3:dim), fHist(NULL)
|
---|
94 | {
|
---|
95 | switch (fDimension)
|
---|
96 | {
|
---|
97 | case 1:
|
---|
98 | fHist = new TH1F;
|
---|
99 | fHist->SetYTitle("Counts");
|
---|
100 | break;
|
---|
101 | case 2:
|
---|
102 | fHist = new TH2F;
|
---|
103 | fHist->SetZTitle("Counts");
|
---|
104 | break;
|
---|
105 | case 3:
|
---|
106 | fHist = new TH3F;
|
---|
107 | break;
|
---|
108 | }
|
---|
109 |
|
---|
110 | fData[0] = NULL;
|
---|
111 | fData[1] = NULL;
|
---|
112 | fData[2] = NULL;
|
---|
113 |
|
---|
114 | fName = gsDefName;
|
---|
115 | fTitle = Form(gsDefTitle.Data(), fDimension);
|
---|
116 |
|
---|
117 | if (fHist)
|
---|
118 | {
|
---|
119 | fHist->SetDirectory(NULL);
|
---|
120 | fHist->UseCurrentStyle();
|
---|
121 | }
|
---|
122 |
|
---|
123 | fScale[0] = 1;
|
---|
124 | fScale[1] = 1;
|
---|
125 | fScale[2] = 1;
|
---|
126 | }
|
---|
127 |
|
---|
128 | // --------------------------------------------------------------------------
|
---|
129 | //
|
---|
130 | // Creates an TH1F. memberx is filled into the X-bins. For a more detailed
|
---|
131 | // description see the class description above.
|
---|
132 | //
|
---|
133 | MH3::MH3(const char *memberx)
|
---|
134 | : fDimension(1)
|
---|
135 | {
|
---|
136 | fHist = new TH1F;
|
---|
137 |
|
---|
138 | fData[0] = new MDataChain(memberx);
|
---|
139 | fData[1] = NULL;
|
---|
140 | fData[2] = NULL;
|
---|
141 |
|
---|
142 | fName = gsDefName;
|
---|
143 | fTitle = Form(gsDefTitle.Data(), 1);
|
---|
144 |
|
---|
145 | fHist->UseCurrentStyle();
|
---|
146 | fHist->SetDirectory(NULL);
|
---|
147 | fHist->SetYTitle("Counts");
|
---|
148 |
|
---|
149 | fScale[0] = 1;
|
---|
150 | fScale[1] = 1;
|
---|
151 | fScale[2] = 1;
|
---|
152 | }
|
---|
153 |
|
---|
154 | // --------------------------------------------------------------------------
|
---|
155 | //
|
---|
156 | // Creates an TH2F. memberx is filled into the X-bins. membery is filled
|
---|
157 | // into the Y-bins. For a more detailed description see the class
|
---|
158 | // description above.
|
---|
159 | //
|
---|
160 | MH3::MH3(const char *memberx, const char *membery)
|
---|
161 | : fDimension(2)
|
---|
162 | {
|
---|
163 | fHist = new TH2F;
|
---|
164 |
|
---|
165 | fData[0] = new MDataChain(memberx);
|
---|
166 | fData[1] = new MDataChain(membery);
|
---|
167 | fData[2] = NULL;
|
---|
168 |
|
---|
169 | fName = gsDefName;
|
---|
170 | fTitle = Form(gsDefTitle.Data(), 2);
|
---|
171 |
|
---|
172 | fHist->UseCurrentStyle();
|
---|
173 | fHist->SetDirectory(NULL);
|
---|
174 | fHist->SetZTitle("Counts");
|
---|
175 |
|
---|
176 | fScale[0] = 1;
|
---|
177 | fScale[1] = 1;
|
---|
178 | fScale[2] = 1;
|
---|
179 | }
|
---|
180 |
|
---|
181 | // --------------------------------------------------------------------------
|
---|
182 | //
|
---|
183 | // Creates an TH3F. memberx is filled into the X-bins. membery is filled
|
---|
184 | // into the Y-bins. membery is filled into the Z-bins. For a more detailed
|
---|
185 | // description see the class description above.
|
---|
186 | //
|
---|
187 | MH3::MH3(const char *memberx, const char *membery, const char *memberz)
|
---|
188 | : fDimension(3)
|
---|
189 | {
|
---|
190 | fHist = new TH3F;
|
---|
191 |
|
---|
192 | fData[0] = new MDataChain(memberx);
|
---|
193 | fData[1] = new MDataChain(membery);
|
---|
194 | fData[2] = new MDataChain(memberz);
|
---|
195 |
|
---|
196 | fName = gsDefName;
|
---|
197 | fTitle = Form(gsDefTitle.Data(), 3);
|
---|
198 |
|
---|
199 | fHist->UseCurrentStyle();
|
---|
200 | fHist->SetDirectory(NULL);
|
---|
201 |
|
---|
202 | fScale[0] = 1;
|
---|
203 | fScale[1] = 1;
|
---|
204 | fScale[2] = 1;
|
---|
205 | }
|
---|
206 |
|
---|
207 | // --------------------------------------------------------------------------
|
---|
208 | //
|
---|
209 | // Deletes the histogram
|
---|
210 | //
|
---|
211 | MH3::~MH3()
|
---|
212 | {
|
---|
213 | delete fHist;
|
---|
214 |
|
---|
215 | for (int i=0; i<3; i++)
|
---|
216 | if (fData[i])
|
---|
217 | delete fData[i];
|
---|
218 | }
|
---|
219 |
|
---|
220 | // --------------------------------------------------------------------------
|
---|
221 | //
|
---|
222 | // Return the data members used by the data chain to be used in
|
---|
223 | // MTask::AddBranchToList
|
---|
224 | //
|
---|
225 | TString MH3::GetDataMember() const
|
---|
226 | {
|
---|
227 | TString str=fData[0]->GetDataMember();
|
---|
228 | if (fData[1])
|
---|
229 | {
|
---|
230 | str += ";";
|
---|
231 | str += fData[1]->GetDataMember();
|
---|
232 | }
|
---|
233 | if (fData[2])
|
---|
234 | {
|
---|
235 | str += ";";
|
---|
236 | str += fData[2]->GetDataMember();
|
---|
237 | }
|
---|
238 | return str;
|
---|
239 | }
|
---|
240 |
|
---|
241 | // --------------------------------------------------------------------------
|
---|
242 | //
|
---|
243 | // Setup the Binning for the histograms automatically if the correct
|
---|
244 | // instances of MBinning are found in the parameter list
|
---|
245 | // For a more detailed description see class description above.
|
---|
246 | //
|
---|
247 | Bool_t MH3::SetupFill(const MParList *plist)
|
---|
248 | {
|
---|
249 | // reset histogram (necessary if the same eventloop is run more than once)
|
---|
250 | fHist->Reset();
|
---|
251 |
|
---|
252 | TString bname("Binning");
|
---|
253 | bname += fName;
|
---|
254 |
|
---|
255 | MBinning *binsx = NULL;
|
---|
256 | MBinning *binsy = NULL;
|
---|
257 | MBinning *binsz = NULL;
|
---|
258 |
|
---|
259 | switch (fDimension)
|
---|
260 | {
|
---|
261 | case 3:
|
---|
262 | binsz = (MBinning*)plist->FindObject(bname+"Z", "MBinning");
|
---|
263 | if (!binsz)
|
---|
264 | {
|
---|
265 | *fLog << err << dbginf << "MBinning '" << bname << "X' not found... aborting." << endl;
|
---|
266 | return kFALSE;
|
---|
267 | }
|
---|
268 | if (binsz->IsLogarithmic())
|
---|
269 | fHist->SetBit(kIsLogz);
|
---|
270 | if (fData[2]) fHist->SetZTitle(fData[2]->GetTitle());
|
---|
271 | if (fData[2] && !fData[2]->PreProcess(plist))
|
---|
272 | return kFALSE;
|
---|
273 | case 2:
|
---|
274 | binsy = (MBinning*)plist->FindObject(bname+"Y", "MBinning");
|
---|
275 | if (!binsy)
|
---|
276 | {
|
---|
277 | *fLog << err << dbginf << "MBinning '" << bname << "Y' not found... aborting." << endl;
|
---|
278 | return kFALSE;
|
---|
279 | }
|
---|
280 | if (binsy->IsLogarithmic())
|
---|
281 | fHist->SetBit(kIsLogy);
|
---|
282 | if (fData[1]) fHist->SetYTitle(fData[1]->GetTitle());
|
---|
283 | if (fData[1] && !fData[1]->PreProcess(plist))
|
---|
284 | return kFALSE;
|
---|
285 | case 1:
|
---|
286 | binsx = (MBinning*)plist->FindObject(bname+"X", "MBinning");
|
---|
287 | if (!binsx)
|
---|
288 | {
|
---|
289 | if (fDimension==1)
|
---|
290 | binsx = (MBinning*)plist->FindObject(bname, "MBinning");
|
---|
291 |
|
---|
292 | if (!binsx)
|
---|
293 | {
|
---|
294 | *fLog << err << dbginf << "Neither MBinning '" << bname << "X' nor '" << bname << "' found... aborting." << endl;
|
---|
295 | return kFALSE;
|
---|
296 | }
|
---|
297 |
|
---|
298 | }
|
---|
299 | if (binsx->IsLogarithmic())
|
---|
300 | fHist->SetBit(kIsLogx);
|
---|
301 |
|
---|
302 | if (fData[0]!=NULL) fHist->SetXTitle(fData[0]->GetTitle());
|
---|
303 | if (fData[0] && !fData[0]->PreProcess(plist))
|
---|
304 | return kFALSE;
|
---|
305 | }
|
---|
306 |
|
---|
307 | fHist->SetName(fName);
|
---|
308 |
|
---|
309 | TString title("Histogram for ");
|
---|
310 | title += fName;
|
---|
311 |
|
---|
312 | switch (fDimension)
|
---|
313 | {
|
---|
314 | case 1:
|
---|
315 | fHist->SetTitle(title+" (1D)");
|
---|
316 | SetBinning(fHist, binsx);
|
---|
317 | return kTRUE;
|
---|
318 | case 2:
|
---|
319 | fHist->SetTitle(title+" (2D)");
|
---|
320 | SetBinning((TH2*)fHist, binsx, binsy);
|
---|
321 | return kTRUE;
|
---|
322 | case 3:
|
---|
323 | fHist->SetTitle(title+" (3D)");
|
---|
324 | SetBinning((TH3*)fHist, binsx, binsy, binsz);
|
---|
325 | return kTRUE;
|
---|
326 | }
|
---|
327 | cout << "Still alive...?" << endl;
|
---|
328 | return kTRUE;
|
---|
329 | }
|
---|
330 |
|
---|
331 | // --------------------------------------------------------------------------
|
---|
332 | //
|
---|
333 | // Set the name of the histogram ant the MH3 container
|
---|
334 | //
|
---|
335 | void MH3::SetName(const char *name)
|
---|
336 | {
|
---|
337 | fHist->SetName(name);
|
---|
338 | MParContainer::SetName(name);
|
---|
339 | }
|
---|
340 |
|
---|
341 | // --------------------------------------------------------------------------
|
---|
342 | //
|
---|
343 | // Set the title of the histogram ant the MH3 container
|
---|
344 | //
|
---|
345 | void MH3::SetTitle(const char *title)
|
---|
346 | {
|
---|
347 | fHist->SetTitle(title);
|
---|
348 | MParContainer::SetTitle(title);
|
---|
349 | }
|
---|
350 |
|
---|
351 | // --------------------------------------------------------------------------
|
---|
352 | //
|
---|
353 | // Fills the one, two or three data members into our histogram
|
---|
354 | //
|
---|
355 | Bool_t MH3::Fill(const MParContainer *par, const Stat_t w)
|
---|
356 | {
|
---|
357 | Double_t x=0;
|
---|
358 | Double_t y=0;
|
---|
359 | Double_t z=0;
|
---|
360 |
|
---|
361 | switch (fDimension)
|
---|
362 | {
|
---|
363 | case 3:
|
---|
364 | z = fData[2]->GetValue()*fScale[2];
|
---|
365 | case 2:
|
---|
366 | y = fData[1]->GetValue()*fScale[1];
|
---|
367 | case 1:
|
---|
368 | x = fData[0]->GetValue()*fScale[0];
|
---|
369 | }
|
---|
370 |
|
---|
371 | switch (fDimension)
|
---|
372 | {
|
---|
373 | case 3:
|
---|
374 | ((TH3*)fHist)->Fill(x, y, z, w);
|
---|
375 | return kTRUE;
|
---|
376 | case 2:
|
---|
377 | ((TH2*)fHist)->Fill(x, y, w);
|
---|
378 | return kTRUE;
|
---|
379 | case 1:
|
---|
380 | fHist->Fill(x, w);
|
---|
381 | return kTRUE;
|
---|
382 | }
|
---|
383 |
|
---|
384 | return kFALSE;
|
---|
385 | }
|
---|
386 | /*
|
---|
387 | // --------------------------------------------------------------------------
|
---|
388 | //
|
---|
389 | // Set the palette you wanna use:
|
---|
390 | // - you could set the root "Pretty Palette Violet->Red" by
|
---|
391 | // gStyle->SetPalette(1, 0), but in some cases this may look
|
---|
392 | // confusing
|
---|
393 | // - The maximum colors root allowes us to set by ourself
|
---|
394 | // is 50 (idx: 51-100). This colors are set to a grayscaled
|
---|
395 | // palette
|
---|
396 | // - the number of contours must be two less than the number
|
---|
397 | // of palette entries
|
---|
398 | //
|
---|
399 | void MHStarMap::PrepareDrawing() const
|
---|
400 | {
|
---|
401 | const Int_t numg = 32; // number of gray scaled colors
|
---|
402 | const Int_t numw = 32; // number of white
|
---|
403 |
|
---|
404 | Int_t palette[numg+numw];
|
---|
405 |
|
---|
406 | //
|
---|
407 | // The first half of the colors are white.
|
---|
408 | // This is some kind of optical background supression
|
---|
409 | //
|
---|
410 | gROOT->GetColor(51)->SetRGB(1, 1, 1);
|
---|
411 |
|
---|
412 | Int_t i;
|
---|
413 | for (i=0; i<numw; i++)
|
---|
414 | palette[i] = 51;
|
---|
415 |
|
---|
416 | //
|
---|
417 | // now the (gray) scaled part is coming
|
---|
418 | //
|
---|
419 | for (;i<numw+numg; i++)
|
---|
420 | {
|
---|
421 | const Float_t gray = 1.0-(float)(i-numw)/(numg-1.0);
|
---|
422 |
|
---|
423 | gROOT->GetColor(52+i)->SetRGB(gray, gray, gray);
|
---|
424 | palette[i] = 52+i;
|
---|
425 | }
|
---|
426 |
|
---|
427 | //
|
---|
428 | // Set the palette and the number of contour levels
|
---|
429 | //
|
---|
430 | gStyle->SetPalette(numg+numw, palette);
|
---|
431 | fStarMap->SetContour(numg+numw-2);
|
---|
432 | }
|
---|
433 | */
|
---|
434 | // --------------------------------------------------------------------------
|
---|
435 | //
|
---|
436 | // Setup a inversed deep blue sea palette for the fCenter histogram.
|
---|
437 | //
|
---|
438 | void MH3::SetColors() const
|
---|
439 | {
|
---|
440 | // FIXME: This must be redone each time the canvas is repainted....
|
---|
441 | gStyle->SetPalette(51, NULL);
|
---|
442 | Int_t c[50];
|
---|
443 | for (int i=0; i<50; i++)
|
---|
444 | c[49-i] = gStyle->GetColorPalette(i);
|
---|
445 | gStyle->SetPalette(50, c);
|
---|
446 | }
|
---|
447 |
|
---|
448 | // --------------------------------------------------------------------------
|
---|
449 | //
|
---|
450 | // Draw clone of histogram. So that the object can be deleted
|
---|
451 | //
|
---|
452 | // Possible options are:
|
---|
453 | // PROFX: Draw a x-profile into the histogram (for 2D histograms only)
|
---|
454 | // PROFY: Draw a y-profile into the histogram (for 2D histograms only)
|
---|
455 | // ONLY: Draw the profile histogram only (for 2D histograms only)
|
---|
456 | //
|
---|
457 | // If the kIsLog?-Bit is set the axis is displayed lkogarithmically.
|
---|
458 | // eg this is set when applying a logarithmic MBinning
|
---|
459 | //
|
---|
460 | // and the histogram is still visible in the canvas.
|
---|
461 | // The cloned object are deleted together with the canvas if the canvas is
|
---|
462 | // destroyed. If you want to handle destroying the canvas you can get a
|
---|
463 | // pointer to it from this function
|
---|
464 | //
|
---|
465 | /*
|
---|
466 | TObject *MH3::DrawClone(Option_t *opt) const
|
---|
467 | {
|
---|
468 | TString str(opt);
|
---|
469 |
|
---|
470 | TVirtualPad *c = gPad;
|
---|
471 | if (!str.Contains("nonew", TString::kIgnoreCase))
|
---|
472 | {
|
---|
473 | c = MH::MakeDefCanvas(fHist);
|
---|
474 |
|
---|
475 | //
|
---|
476 | // This is necessary to get the expected bahviour of DrawClone
|
---|
477 | //
|
---|
478 | gROOT->SetSelectedPad(NULL);
|
---|
479 | }
|
---|
480 |
|
---|
481 | if (str.Contains("COL", TString::kIgnoreCase))
|
---|
482 | SetColors();
|
---|
483 |
|
---|
484 | Bool_t only = str.Contains("ONLY", TString::kIgnoreCase) && fDimension==2;
|
---|
485 | if (!only)
|
---|
486 | fHist->DrawCopy(opt);
|
---|
487 |
|
---|
488 | if (str.Contains("PROFX", TString::kIgnoreCase) && fDimension==2)
|
---|
489 | {
|
---|
490 | TProfile *p = ((TH2*)fHist)->ProfileX("_pfx", -1, 9999, "s");
|
---|
491 | p->SetLineColor(kBlue);
|
---|
492 | p->Draw(only?"":"same");
|
---|
493 | p->SetBit(kCanDelete);
|
---|
494 | p->SetDirectory(NULL);
|
---|
495 | }
|
---|
496 | if (str.Contains("PROFY", TString::kIgnoreCase) && fDimension==2)
|
---|
497 | {
|
---|
498 | TProfile *p = ((TH2*)fHist)->ProfileY("_pfy", -1, 9999, "s");
|
---|
499 | p->SetLineColor(kBlue);
|
---|
500 | p->Draw(only?"":"same");
|
---|
501 | p->SetBit(kCanDelete);
|
---|
502 | p->SetDirectory(NULL);
|
---|
503 | }
|
---|
504 |
|
---|
505 | if (fHist->TestBit(kIsLogx)) c->SetLogx();
|
---|
506 | if (fHist->TestBit(kIsLogy)) c->SetLogy();
|
---|
507 | if (fHist->TestBit(kIsLogz)) c->SetLogz();
|
---|
508 |
|
---|
509 | c->Modified();
|
---|
510 | c->Update();
|
---|
511 |
|
---|
512 | return c;
|
---|
513 | }
|
---|
514 | */
|
---|
515 |
|
---|
516 | /*
|
---|
517 | void MH3::Paint(Option_t *opt)
|
---|
518 | {
|
---|
519 | if (fHist->TestBit(kIsLogx)) pad->SetLogx();
|
---|
520 | if (fHist->TestBit(kIsLogy)) pad->SetLogy();
|
---|
521 | if (fHist->TestBit(kIsLogz)) pad->SetLogz();
|
---|
522 | }
|
---|
523 | */
|
---|
524 |
|
---|
525 | void MH3::Paint(Option_t *o)
|
---|
526 | {
|
---|
527 | TString str(o);
|
---|
528 |
|
---|
529 | // FIXME: Do it in Paint()
|
---|
530 | if (str.Contains("COL", TString::kIgnoreCase))
|
---|
531 | SetColors();
|
---|
532 |
|
---|
533 | if (fHist->TestBit(kIsLogx) && fHist->GetEntries()>0) gPad->SetLogx();
|
---|
534 | if (fHist->TestBit(kIsLogy) && fHist->GetEntries()>0) gPad->SetLogy();
|
---|
535 | if (fHist->TestBit(kIsLogz) && fHist->GetEntries()>0) gPad->SetLogz();
|
---|
536 |
|
---|
537 | // Set pretty color palette
|
---|
538 | gStyle->SetPalette(1, 0);
|
---|
539 |
|
---|
540 | TVirtualPad *padsave = gPad;
|
---|
541 |
|
---|
542 | TProfile* h0;
|
---|
543 | if ((h0 = (TProfile*)gPad->FindObject("_pfx")))
|
---|
544 | {
|
---|
545 | // Get projection for range
|
---|
546 | TProfile *p = ((TH2*)fHist)->ProfileX("_pfx", -1, 9999, "s");
|
---|
547 |
|
---|
548 | // Move contents from projection to h3
|
---|
549 | h0->Reset();
|
---|
550 | h0->Add(p);
|
---|
551 | delete p;
|
---|
552 |
|
---|
553 | // Set Minimum as minimum value Greater Than 0
|
---|
554 | //h0->SetMinimum(GetMinimumGT(*h0));
|
---|
555 | }
|
---|
556 | if ((h0 = (TProfile*)gPad->FindObject("_pfy")))
|
---|
557 | {
|
---|
558 | // Get projection for range
|
---|
559 | TProfile *p = ((TH2*)fHist)->ProfileY("_pfy", -1, 9999, "s");
|
---|
560 |
|
---|
561 | // Move contents from projection to h3
|
---|
562 | h0->Reset();
|
---|
563 | h0->Add(p);
|
---|
564 | delete p;
|
---|
565 |
|
---|
566 | // Set Minimum as minimum value Greater Than 0
|
---|
567 | //h0->SetMinimum(GetMinimumGT(*h0));
|
---|
568 | }
|
---|
569 |
|
---|
570 | gPad = padsave;
|
---|
571 | }
|
---|
572 |
|
---|
573 | // --------------------------------------------------------------------------
|
---|
574 | //
|
---|
575 | // Creates a new canvas and draws the histogram into it.
|
---|
576 | //
|
---|
577 | // Possible options are:
|
---|
578 | // PROFX: Draw a x-profile into the histogram (for 2D histograms only)
|
---|
579 | // PROFY: Draw a y-profile into the histogram (for 2D histograms only)
|
---|
580 | // ONLY: Draw the profile histogram only (for 2D histograms only)
|
---|
581 | //
|
---|
582 | // If the kIsLog?-Bit is set the axis is displayed lkogarithmically.
|
---|
583 | // eg this is set when applying a logarithmic MBinning
|
---|
584 | //
|
---|
585 | // Be careful: The histogram belongs to this object and won't get deleted
|
---|
586 | // together with the canvas.
|
---|
587 | //
|
---|
588 | void MH3::Draw(Option_t *opt)
|
---|
589 | {
|
---|
590 | TVirtualPad *pad = gPad ? gPad : MakeDefCanvas(fHist);
|
---|
591 | pad->SetBorderMode(0);
|
---|
592 |
|
---|
593 | fHist->SetFillStyle(4000);
|
---|
594 |
|
---|
595 | TString str(opt);
|
---|
596 | str = str.Strip(TString::kBoth);
|
---|
597 |
|
---|
598 |
|
---|
599 | Bool_t only = str.Contains("ONLY", TString::kIgnoreCase) && fDimension==2;
|
---|
600 | // FIXME: We may have to remove all our own options from str!
|
---|
601 | if (!only)
|
---|
602 | fHist->Draw(str);
|
---|
603 |
|
---|
604 | if (str.Contains("PROFX", TString::kIgnoreCase) && fDimension==2)
|
---|
605 | {
|
---|
606 | TProfile *p = ((TH2*)fHist)->ProfileX("_pfx", -1, 9999, "s");
|
---|
607 | p->SetLineColor(kBlue);
|
---|
608 | p->Draw(only?"":"same");
|
---|
609 | p->SetBit(kCanDelete);
|
---|
610 | p->SetDirectory(NULL);
|
---|
611 | }
|
---|
612 | if (str.Contains("PROFY", TString::kIgnoreCase) && fDimension==2)
|
---|
613 | {
|
---|
614 | TProfile *p = ((TH2*)fHist)->ProfileY("_pfy", -1, 9999, "s");
|
---|
615 | p->SetLineColor(kBlue);
|
---|
616 | p->Draw(only?"":"same");
|
---|
617 | p->SetBit(kCanDelete);
|
---|
618 | p->SetDirectory(NULL);
|
---|
619 | }
|
---|
620 |
|
---|
621 | AppendPad("");
|
---|
622 | }
|
---|
623 |
|
---|
624 | // --------------------------------------------------------------------------
|
---|
625 | //
|
---|
626 | // Implementation of SavePrimitive. Used to write the call to a constructor
|
---|
627 | // to a macro. In the original root implementation it is used to write
|
---|
628 | // gui elements to a macro-file.
|
---|
629 | //
|
---|
630 | void MH3::StreamPrimitive(ofstream &out) const
|
---|
631 | {
|
---|
632 | TString name = GetUniqueName();
|
---|
633 |
|
---|
634 | out << " MH3 " << name << "(\"";
|
---|
635 | out << fData[0]->GetRule() << "\"";
|
---|
636 | if (fDimension>1)
|
---|
637 | out << ", \"" << fData[1]->GetRule() << "\"";
|
---|
638 | if (fDimension>2)
|
---|
639 | out << ", \"" << fData[2]->GetRule() << "\"";
|
---|
640 |
|
---|
641 | out << ");" << endl;
|
---|
642 |
|
---|
643 | if (fName!=gsDefName)
|
---|
644 | out << " " << name << ".SetName(\"" << fName << "\");" << endl;
|
---|
645 |
|
---|
646 | if (fTitle!=Form(gsDefTitle.Data(), fDimension))
|
---|
647 | out << " " << name << ".SetTitle(\"" << fTitle << "\");" << endl;
|
---|
648 |
|
---|
649 | switch (fDimension)
|
---|
650 | {
|
---|
651 | case 3:
|
---|
652 | if (fScale[2]!=1)
|
---|
653 | out << " " << name << ".SetScaleZ(" << fScale[2] << ");" << endl;
|
---|
654 | case 2:
|
---|
655 | if (fScale[1]!=1)
|
---|
656 | out << " " << name << ".SetScaleY(" << fScale[1] << ");" << endl;
|
---|
657 | case 1:
|
---|
658 | if (fScale[0]!=1)
|
---|
659 | out << " " << name << ".SetScaleX(" << fScale[0] << ");" << endl;
|
---|
660 | }
|
---|
661 | }
|
---|
662 |
|
---|
663 | // --------------------------------------------------------------------------
|
---|
664 | //
|
---|
665 | // Used to rebuild a MH3 object of the same type (data members,
|
---|
666 | // dimension, ...)
|
---|
667 | //
|
---|
668 | MParContainer *MH3::New() const
|
---|
669 | {
|
---|
670 | MH3 *h = NULL;
|
---|
671 |
|
---|
672 | if (fData[0] == NULL)
|
---|
673 | h=new MH3(fDimension);
|
---|
674 | else
|
---|
675 | switch (fDimension)
|
---|
676 | {
|
---|
677 | case 1:
|
---|
678 | h=new MH3(fData[0]->GetRule());
|
---|
679 | break;
|
---|
680 | case 2:
|
---|
681 | h=new MH3(fData[0]->GetRule(), fData[1]->GetRule());
|
---|
682 | break;
|
---|
683 | case 3:
|
---|
684 | h=new MH3(fData[0]->GetRule(), fData[1]->GetRule(), fData[2]->GetRule());
|
---|
685 | break;
|
---|
686 | }
|
---|
687 | switch (fDimension)
|
---|
688 | {
|
---|
689 | case 3:
|
---|
690 | h->SetScaleZ(fScale[2]);
|
---|
691 | case 2:
|
---|
692 | h->SetScaleY(fScale[1]);
|
---|
693 | case 1:
|
---|
694 | h->SetScaleX(fScale[0]);
|
---|
695 | }
|
---|
696 | return h;
|
---|
697 | }
|
---|
698 |
|
---|
699 | TString MH3::GetRule(const Char_t axis) const
|
---|
700 | {
|
---|
701 | switch (tolower(axis))
|
---|
702 | {
|
---|
703 | case 'x':
|
---|
704 | return fData[0] ? fData[0]->GetRule() : TString("");
|
---|
705 | case 'y':
|
---|
706 | return fData[1] ? fData[1]->GetRule() : TString("");
|
---|
707 | case 'z':
|
---|
708 | return fData[2] ? fData[2]->GetRule() : TString("");
|
---|
709 | default:
|
---|
710 | return "<n/a>";
|
---|
711 | }
|
---|
712 | }
|
---|
713 |
|
---|
714 | // --------------------------------------------------------------------------
|
---|
715 | //
|
---|
716 | // Returns the total number of bins in a histogram (excluding under- and
|
---|
717 | // overflow bins)
|
---|
718 | //
|
---|
719 | Int_t MH3::GetNbins() const
|
---|
720 | {
|
---|
721 | Int_t num = 1;
|
---|
722 |
|
---|
723 | switch (fDimension)
|
---|
724 | {
|
---|
725 | case 3:
|
---|
726 | num *= fHist->GetNbinsZ()+2;
|
---|
727 | case 2:
|
---|
728 | num *= fHist->GetNbinsY()+2;
|
---|
729 | case 1:
|
---|
730 | num *= fHist->GetNbinsX()+2;
|
---|
731 | }
|
---|
732 |
|
---|
733 | return num;
|
---|
734 | }
|
---|
735 |
|
---|
736 | // --------------------------------------------------------------------------
|
---|
737 | //
|
---|
738 | // Returns the total number of bins in a histogram (excluding under- and
|
---|
739 | // overflow bins) Return -1 if bin is underflow or overflow
|
---|
740 | //
|
---|
741 | Int_t MH3::FindFixBin(Double_t x, Double_t y, Double_t z) const
|
---|
742 | {
|
---|
743 | const TAxis &axex = *fHist->GetXaxis();
|
---|
744 | const TAxis &axey = *fHist->GetYaxis();
|
---|
745 | const TAxis &axez = *fHist->GetZaxis();
|
---|
746 |
|
---|
747 | Int_t binz = 0;
|
---|
748 | Int_t biny = 0;
|
---|
749 | Int_t binx = 0;
|
---|
750 |
|
---|
751 | switch (fDimension)
|
---|
752 | {
|
---|
753 | case 3:
|
---|
754 | binz = axez.FindFixBin(z);
|
---|
755 | if (binz>axez.GetLast() || binz<axez.GetFirst())
|
---|
756 | return -1;
|
---|
757 | case 2:
|
---|
758 | biny = axey.FindFixBin(y);
|
---|
759 | if (biny>axey.GetLast() || biny<axey.GetFirst())
|
---|
760 | return -1;
|
---|
761 | case 1:
|
---|
762 | binx = axex.FindFixBin(x);
|
---|
763 | if (binx<axex.GetFirst() || binx>axex.GetLast())
|
---|
764 | return -1;
|
---|
765 | }
|
---|
766 |
|
---|
767 | const Int_t nx = fHist->GetNbinsX()+2;
|
---|
768 | const Int_t ny = fHist->GetNbinsY()+2;
|
---|
769 |
|
---|
770 | return binx + nx*(biny +ny*binz);
|
---|
771 | }
|
---|