]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG1/TRD/AliTRDcheckDET.cxx
fix bug Analysis https://savannah.cern.ch/bugs/?72978
[u/mrichter/AliRoot.git] / PWG1 / TRD / AliTRDcheckDET.cxx
CommitLineData
1ee39b3a 1////////////////////////////////////////////////////////////////////////////
2// //
3// //
4// Basic checks for tracking and detector performance //
5//
6// For the moment (15.10.2009) the following checks are implemented //
7// - Number of clusters/track
8// - Number of clusters/tracklet
9// - Number of tracklets/track from different sources (Barrel, StandAlone)
10// - Number of findable tracklets
11// - Number of tracks per event and TRD sector
12// - <PH>
13// - Chi2 distribution for tracks
14// - Charge distribution per cluster and tracklet
15// - Number of events and tracks per trigger source
16// - Trigger purity
17// - Track and Tracklet propagation status
18//
19// Authors: //
20// Anton Andronic <A.Andronic@gsi.de> //
21// Alexandru Bercuci <A.Bercuci@gsi.de> //
22// Markus Fasel <M.Fasel@gsi.de> //
23// //
24////////////////////////////////////////////////////////////////////////////
25
26#include <TAxis.h>
27#include <TCanvas.h>
28#include <TFile.h>
29#include <TH1F.h>
30#include <TH1I.h>
a5d9fe6f 31#include <TH2F.h>
1ee39b3a 32#include <TF1.h>
33#include <TGaxis.h>
34#include <TGraph.h>
147c3968 35#include <TGraphErrors.h>
1ee39b3a 36#include <TLegend.h>
3907f080 37#include <TLinearFitter.h>
1ee39b3a 38#include <TMath.h>
39#include <TMap.h>
44fd53ca 40#include <TProfile2D.h>
1ee39b3a 41#include <TObjArray.h>
42#include <TObject.h>
43#include <TObjString.h>
44
45#include <TPad.h>
46#include <TProfile.h>
47#include <TProfile2D.h>
48#include <TROOT.h>
f8f46e4d 49#include <TChain.h>
1ee39b3a 50
51#include "AliLog.h"
52#include "AliTRDcluster.h"
53#include "AliESDHeader.h"
54#include "AliESDRun.h"
55#include "AliESDtrack.h"
a5d9fe6f 56#include "AliExternalTrackParam.h"
1ee39b3a 57#include "AliTRDgeometry.h"
58#include "AliTRDpadPlane.h"
59#include "AliTRDSimParam.h"
60#include "AliTRDseedV1.h"
61#include "AliTRDtrackV1.h"
62#include "AliTRDtrackerV1.h"
63#include "AliTRDReconstructor.h"
64#include "AliTrackReference.h"
65#include "AliTrackPointArray.h"
66#include "AliTracker.h"
67#include "TTreeStream.h"
68
69#include "info/AliTRDtrackInfo.h"
70#include "info/AliTRDeventInfo.h"
fd7ffd88 71#include "AliTRDinfoGen.h"
1ee39b3a 72#include "AliTRDcheckDET.h"
73
74#include <cstdio>
75#include <iostream>
76
77ClassImp(AliTRDcheckDET)
78
79//_______________________________________________________
80AliTRDcheckDET::AliTRDcheckDET():
f2e89a4c 81 AliTRDrecoTask()
db99a57a 82 ,fEventInfo(NULL)
83 ,fTriggerNames(NULL)
c732f879 84 ,fFlags(0)
1ee39b3a 85{
86 //
87 // Default constructor
88 //
4fa7d600 89 SetNameTitle("TRDcheckDET", "Basic TRD data checker");
f8f46e4d 90}
91
705f8b0a 92//_______________________________________________________
f8f46e4d 93AliTRDcheckDET::AliTRDcheckDET(char* name):
94 AliTRDrecoTask(name, "Basic TRD data checker")
db99a57a 95 ,fEventInfo(NULL)
96 ,fTriggerNames(NULL)
f8f46e4d 97 ,fFlags(0)
98{
99 //
100 // Default constructor
101 //
102 DefineInput(2, AliTRDeventInfo::Class());
103
1ee39b3a 104 InitFunctorList();
105}
106
f8f46e4d 107
1ee39b3a 108//_______________________________________________________
109AliTRDcheckDET::~AliTRDcheckDET(){
110 //
111 // Destructor
112 //
113 if(fTriggerNames) delete fTriggerNames;
1ee39b3a 114}
115
1ee39b3a 116//_______________________________________________________
f8f46e4d 117void AliTRDcheckDET::UserCreateOutputObjects(){
1ee39b3a 118 //
119 // Create Output Objects
120 //
068e2c00 121 AliTRDrecoTask::UserCreateOutputObjects();
1ee39b3a 122 if(!fTriggerNames) fTriggerNames = new TMap();
123}
124
125//_______________________________________________________
f8f46e4d 126void AliTRDcheckDET::UserExec(Option_t *opt){
1ee39b3a 127 //
128 // Execution function
129 // Filling TRD quality histos
130 //
5935a6da 131 fEventInfo = dynamic_cast<AliTRDeventInfo *>(GetInputData(2));
fe1d1beb 132 AliDebug(2, Form("EventInfo[%p] Header[%p]", (void*)fEventInfo, (void*)(fEventInfo?fEventInfo->GetEventHeader():NULL)));
133
b4414720 134 AliTRDrecoTask::UserExec(opt);
b2f4ab8d 135
1ee39b3a 136 Int_t nTracks = 0; // Count the number of tracks per event
1ee39b3a 137 for(Int_t iti = 0; iti < fTracks->GetEntriesFast(); iti++){
138 if(!fTracks->UncheckedAt(iti)) continue;
139 AliTRDtrackInfo *fTrackInfo = dynamic_cast<AliTRDtrackInfo *>(fTracks->UncheckedAt(iti));
140 if(!fTrackInfo->GetTrack()) continue;
141 nTracks++;
142 }
b2f4ab8d 143 if(nTracks)
144 dynamic_cast<TH1F *>(fContainer->UncheckedAt(kNtracksEvent))->Fill(nTracks);
f8f46e4d 145
b2f4ab8d 146 if(!fEventInfo->GetEventHeader()) return; // For trigger statistics event header is essential
147 Int_t triggermask = fEventInfo->GetEventHeader()->GetTriggerMask();
148 TString triggername = fEventInfo->GetRunInfo()->GetFiredTriggerClasses(triggermask);
149 AliDebug(6, Form("Trigger cluster: %d, Trigger class: %s\n", triggermask, triggername.Data()));
150 dynamic_cast<TH1F *>(fContainer->UncheckedAt(kNeventsTrigger))->Fill(triggermask);
151
152 if(nTracks)
1ee39b3a 153 dynamic_cast<TH1F *>(fContainer->UncheckedAt(kNeventsTriggerTracks))->Fill(triggermask);
1ee39b3a 154 if(triggermask <= 20 && !fTriggerNames->FindObject(Form("%d", triggermask))){
155 fTriggerNames->Add(new TObjString(Form("%d", triggermask)), new TObjString(triggername));
156 // also set the label for both histograms
157 TH1 *histo = dynamic_cast<TH1F *>(fContainer->UncheckedAt(kNeventsTriggerTracks));
158 histo->GetXaxis()->SetBinLabel(histo->FindBin(triggermask), triggername);
159 histo = dynamic_cast<TH1F *>(fContainer->UncheckedAt(kNeventsTrigger));
160 histo->GetXaxis()->SetBinLabel(histo->FindBin(triggermask), triggername);
161 }
1ee39b3a 162}
163
164
165//_______________________________________________________
166Bool_t AliTRDcheckDET::PostProcess(){
167 //
168 // Do Postprocessing (for the moment set the number of Reference histograms)
169 //
170
db99a57a 171 TH1 * h = NULL;
1ee39b3a 172
173 // Calculate of the trigger clusters purity
174 h = dynamic_cast<TH1F *>(fContainer->FindObject("hEventsTrigger"));
175 TH1F *h1 = dynamic_cast<TH1F *>(fContainer->FindObject("hEventsTriggerTracks"));
176 h1->Divide(h);
177 Float_t purities[20], val = 0;
178 TString triggernames[20];
179 Int_t nTriggerClasses = 0;
180 for(Int_t ibin = 1; ibin <= h->GetNbinsX(); ibin++){
181 if((val = h1->GetBinContent(ibin))){
182 purities[nTriggerClasses] = val;
183 triggernames[nTriggerClasses] = h1->GetXaxis()->GetBinLabel(ibin);
184 nTriggerClasses++;
185 }
186 }
187 h = dynamic_cast<TH1F *>(fContainer->UncheckedAt(kTriggerPurity));
188 TAxis *ax = h->GetXaxis();
189 for(Int_t itrg = 0; itrg < nTriggerClasses; itrg++){
190 h->Fill(itrg, purities[itrg]);
191 ax->SetBinLabel(itrg+1, triggernames[itrg].Data());
192 }
193 ax->SetRangeUser(-0.5, nTriggerClasses+.5);
194 h->GetYaxis()->SetRangeUser(0,1);
195
196 // track status
197 h=dynamic_cast<TH1F*>(fContainer->At(kTrackStatus));
198 Float_t ok = h->GetBinContent(1);
199 Int_t nerr = h->GetNbinsX();
200 for(Int_t ierr=nerr; ierr--;){
c13a533b 201 h->SetBinContent(ierr+1, ok>0.?1.e2*h->GetBinContent(ierr+1)/ok:0.);
1ee39b3a 202 }
203 h->SetBinContent(1, 0.);
204
205 // tracklet status
f8f46e4d 206
1ee39b3a 207 TObjArray *arr = dynamic_cast<TObjArray*>(fContainer->UncheckedAt(kTrackletStatus));
208 for(Int_t ily = AliTRDgeometry::kNlayer; ily--;){
209 h=dynamic_cast<TH1F*>(arr->At(ily));
210 Float_t okB = h->GetBinContent(1);
211 Int_t nerrB = h->GetNbinsX();
212 for(Int_t ierr=nerrB; ierr--;){
c13a533b 213 h->SetBinContent(ierr+1, okB>0.?1.e2*h->GetBinContent(ierr+1)/okB:0.);
1ee39b3a 214 }
215 h->SetBinContent(1, 0.);
216 }
217
0c76cfa4 218 fNRefFigures = 17;
1ee39b3a 219
220 return kTRUE;
221}
222
b795b480 223//_______________________________________________________
224void AliTRDcheckDET::MakeSummary(){
225 //
226 // Create summary plots for TRD check DET
227 // This function creates 2 summary plots:
228 // - General Quantities
229 // - PHS
230 // The function will reuse GetRefFigure
231 //
232
233 TCanvas *cOut = new TCanvas(Form("summary%s1", GetName()), Form("Summary 1 for task %s", GetName()), 1024, 768);
234 cOut->Divide(3,3);
235
236 // Create figures using GetRefFigure
237 cOut->cd(1); GetRefFigure(kFigNtracksEvent);
238 cOut->cd(2); GetRefFigure(kFigNtracksSector);
239 cOut->cd(3); GetRefFigure(kFigNclustersTrack);
240 cOut->cd(4); GetRefFigure(kFigNclustersTracklet);
241 cOut->cd(5); GetRefFigure(kFigNtrackletsTrack);
242 cOut->cd(6); GetRefFigure(kFigNTrackletsP);
243 cOut->cd(7); GetRefFigure(kFigChargeCluster);
244 cOut->cd(8); GetRefFigure(kFigChargeTracklet);
245 cOut->SaveAs(Form("TRDsummary%s1.gif", GetName()));
246 delete cOut;
247
248 // Second Plot: PHS
249 cOut = new TCanvas(Form("summary%s2", GetName()), Form("Summary 2 for task %s", GetName()), 1024, 512);
250 cOut->cd(); GetRefFigure(kFigPH);
251 cOut->SaveAs(Form("TRDsummary%s2.gif", GetName()));
252 delete cOut;
44fd53ca 253
254 // Third Plot: Mean Number of clusters as function of eta, phi and layer
255 cOut = new TCanvas(Form("summary%s3", GetName()), Form("Summary 3 for task %s", GetName()), 1024, 768);
256 cOut->cd(); MakePlotMeanClustersLayer();
257 cOut->SaveAs(Form("TRDsummary%s3.gif", GetName()));
258 delete cOut;
259
b795b480 260}
261
1ee39b3a 262//_______________________________________________________
263Bool_t AliTRDcheckDET::GetRefFigure(Int_t ifig){
264 //
265 // Setting Reference Figures
266 //
267 gPad->SetLogy(0);
268 gPad->SetLogx(0);
db99a57a 269 TH1 *h = NULL; TObjArray *arr=NULL;
270 TLegend *leg = NULL;
1ee39b3a 271 Bool_t kFIRST(1);
272 switch(ifig){
0c76cfa4 273 case kFigNclustersTrack:
1ee39b3a 274 (h=(TH1F*)fContainer->FindObject("hNcls"))->Draw("pl");
275 PutTrendValue("NClustersTrack", h->GetMean());
276 PutTrendValue("NClustersTrackRMS", h->GetRMS());
277 return kTRUE;
0c76cfa4 278 case kFigNclustersTracklet:
1ee39b3a 279 (h =(TH1F*)fContainer->FindObject("hNclTls"))->Draw("pc");
280 PutTrendValue("NClustersTracklet", h->GetMean());
281 PutTrendValue("NClustersTrackletRMS", h->GetRMS());
282 return kTRUE;
0c76cfa4 283 case kFigNtrackletsTrack:
1ee39b3a 284 h=MakePlotNTracklets();
08c8e4e8 285 if(h){
286 PutTrendValue("NTrackletsTrack", h->GetMean());
287 PutTrendValue("NTrackletsTrackRMS", h->GetRMS());
288 }
1ee39b3a 289 return kTRUE;
0c76cfa4 290 case kFigNTrackletsP:
291 MakePlotnTrackletsVsP();
292 return kTRUE;
293 case kFigNtrackletsCross:
1ee39b3a 294 h = (TH1F*)fContainer->FindObject("hNtlsCross");
295 if(!MakeBarPlot(h, kRed)) break;
296 PutTrendValue("NTrackletsCross", h->GetMean());
297 PutTrendValue("NTrackletsCrossRMS", h->GetRMS());
298 return kTRUE;
0c76cfa4 299 case kFigNtrackletsFindable:
1ee39b3a 300 h = (TH1F*)fContainer->FindObject("hNtlsFindable");
301 if(!MakeBarPlot(h, kGreen)) break;
302 PutTrendValue("NTrackletsFindable", h->GetMean());
303 PutTrendValue("NTrackletsFindableRMS", h->GetRMS());
304 return kTRUE;
0c76cfa4 305 case kFigNtracksEvent:
1ee39b3a 306 (h = (TH1F*)fContainer->FindObject("hNtrks"))->Draw("pl");
307 PutTrendValue("NTracksEvent", h->GetMean());
308 PutTrendValue("NTracksEventRMS", h->GetRMS());
309 return kTRUE;
0c76cfa4 310 case kFigNtracksSector:
1ee39b3a 311 h = (TH1F*)fContainer->FindObject("hNtrksSector");
312 if(!MakeBarPlot(h, kGreen)) break;
313 PutTrendValue("NTracksSector", h->Integral()/h->GetNbinsX());
314 return kTRUE;
0c76cfa4 315 case kFigTrackStatus:
1ee39b3a 316 if(!(h=(TH1F *)fContainer->FindObject("hTrackStatus"))) break;
317 h->GetXaxis()->SetRangeUser(0.5, -1);
318 h->GetYaxis()->CenterTitle();
319 h->Draw("c");
320 PutTrendValue("TrackStatus", h->Integral());
321 gPad->SetLogy(0);
322 return kTRUE;
0c76cfa4 323 case kFigTrackletStatus:
1ee39b3a 324 if(!(arr = dynamic_cast<TObjArray*>(fContainer->At(kTrackletStatus)))) break;
147c3968 325 leg = new TLegend(.68, .7, .97, .97);
326 leg->SetBorderSize(0);leg->SetFillStyle(0);
1ee39b3a 327 leg->SetHeader("TRD layer");
147c3968 328 for(Int_t ily=AliTRDgeometry::kNlayer; ily--;){
1ee39b3a 329 if(!(h=dynamic_cast<TH1F*>(arr->At(ily)))) continue;
330 if(kFIRST){
147c3968 331 h->Draw("pl");
1ee39b3a 332 h->GetXaxis()->SetRangeUser(0.5, -1);
333 h->GetYaxis()->CenterTitle();
334 kFIRST = kFALSE;
147c3968 335 } else h->Draw("samepl");
336 leg->AddEntry(h, Form("ly = %d", ily), "l");
1ee39b3a 337 PutTrendValue(Form("TrackletStatus%d", ily), h->Integral());
338 }
339 leg->Draw();
340 gPad->SetLogy(0);
341 return kTRUE;
0c76cfa4 342 case kFigChi2:
b795b480 343 return kTRUE;
1ee39b3a 344 MakePlotChi2();
345 return kTRUE;
0c76cfa4 346 case kFigPH:
94f7dff7 347 gPad->SetMargin(0.125, 0.015, 0.1, 0.1);
1ee39b3a 348 MakePlotPulseHeight();
349 gPad->SetLogy(0);
350 return kTRUE;
0c76cfa4 351 case kFigChargeCluster:
1ee39b3a 352 (h = (TH1F*)fContainer->FindObject("hQcl"))->Draw("c");
353 gPad->SetLogy(1);
354 PutTrendValue("ChargeCluster", h->GetMaximumBin());
355 PutTrendValue("ChargeClusterRMS", h->GetRMS());
356 return kTRUE;
0c76cfa4 357 case kFigChargeTracklet:
1ee39b3a 358 (h=(TH1F*)fContainer->FindObject("hQtrklt"))->Draw("c");
359 PutTrendValue("ChargeTracklet", h->GetMaximumBin());
360 PutTrendValue("ChargeTrackletRMS", h->GetRMS());
361 return kTRUE;
0c76cfa4 362 case kFigNeventsTrigger:
1ee39b3a 363 ((TH1F*)fContainer->FindObject("hEventsTrigger"))->Draw("");
364 return kTRUE;
0c76cfa4 365 case kFigNeventsTriggerTracks:
1ee39b3a 366 ((TH1F*)fContainer->FindObject("hEventsTriggerTracks"))->Draw("");
367 return kTRUE;
0c76cfa4 368 case kFigTriggerPurity:
1ee39b3a 369 if(!MakeBarPlot((TH1F*)fContainer->FindObject("hTriggerPurity"), kGreen)) break;
370 break;
371 default:
372 break;
373 }
374 AliInfo(Form("Reference plot [%d] missing result", ifig));
375 return kFALSE;
376}
377
378//_______________________________________________________
379TObjArray *AliTRDcheckDET::Histos(){
380 //
381 // Create QA histograms
382 //
f8f46e4d 383
1ee39b3a 384 if(fContainer) return fContainer;
385
386 fContainer = new TObjArray(20);
387 //fContainer->SetOwner(kTRUE);
388
389 // Register Histograms
390 TH1 * h = NULL;
391 TAxis *ax = NULL;
392 if(!(h = (TH1F *)gROOT->FindObject("hNcls"))){
393 h = new TH1F("hNcls", "N_{clusters} / track", 181, -0.5, 180.5);
394 h->GetXaxis()->SetTitle("N_{clusters}");
395 h->GetYaxis()->SetTitle("Entries");
396 } else h->Reset();
397 fContainer->AddAt(h, kNclustersTrack);
398
44fd53ca 399 TObjArray *arr = new TObjArray(AliTRDgeometry::kNlayer);
400 arr->SetOwner(kTRUE); arr->SetName("clusters");
401 fContainer->AddAt(arr, kNclustersLayer);
402 for(Int_t ily=AliTRDgeometry::kNlayer; ily--;){
403 if(!(h = (TProfile2D *)gROOT->FindObject(Form("hNcl%d", ily)))){
404 h = new TProfile2D(Form("hNcl%d", ily), Form("Mean Number of clusters in Layer %d", ily), 100, -1.0, 1.0, 50, -1.1*TMath::Pi(), 1.1*TMath::Pi());
405 h->GetXaxis()->SetTitle("#eta");
406 h->GetYaxis()->SetTitle("#phi");
407 } else h->Reset();
408 arr->AddAt(h, ily);
409 }
410
1ee39b3a 411 if(!(h = (TH1F *)gROOT->FindObject("hNclTls"))){
412 h = new TH1F("hNclTls","N_{clusters} / tracklet", 51, -0.5, 50.5);
413 h->GetXaxis()->SetTitle("N_{clusters}");
414 h->GetYaxis()->SetTitle("Entries");
415 } else h->Reset();
416 fContainer->AddAt(h, kNclustersTracklet);
417
418 if(!(h = (TH1F *)gROOT->FindObject("hNtls"))){
419 h = new TH1F("hNtls", "N_{tracklets} / track", AliTRDgeometry::kNlayer, 0.5, 6.5);
420 h->GetXaxis()->SetTitle("N^{tracklet}");
421 h->GetYaxis()->SetTitle("freq. [%]");
422 } else h->Reset();
423 fContainer->AddAt(h, kNtrackletsTrack);
424
425 if(!(h = (TH1F *)gROOT->FindObject("htlsSTA"))){
426 h = new TH1F("hNtlsSTA", "N_{tracklets} / track (Stand Alone)", AliTRDgeometry::kNlayer, 0.5, 6.5);
427 h->GetXaxis()->SetTitle("N^{tracklet}");
428 h->GetYaxis()->SetTitle("freq. [%]");
429 }
430 fContainer->AddAt(h, kNtrackletsSTA);
431
a5d9fe6f 432 // Binning for momentum dependent tracklet Plots
de791ef5 433 const Int_t kNp(30);
efb9a759 434 Float_t p=0.2;
147c3968 435 Float_t binsP[kNp+1], binsTrklt[AliTRDgeometry::kNlayer+1];
efb9a759 436 for(Int_t i=0;i<kNp+1; i++,p+=(TMath::Exp(i*i*.001)-1.)) binsP[i]=p;
147c3968 437 for(Int_t il = 0; il <= AliTRDgeometry::kNlayer; il++) binsTrklt[il] = 0.5 + il;
1ee39b3a 438 if(!(h = (TH1F *)gROOT->FindObject("htlsBAR"))){
a5d9fe6f 439 // Make tracklets for barrel tracks momentum dependent (if we do not exceed min and max values)
147c3968 440 h = new TH2F("hNtlsBAR",
441 "N_{tracklets} / track;p [GeV/c];N^{tracklet};freq. [%]",
442 kNp, binsP, AliTRDgeometry::kNlayer, binsTrklt);
1ee39b3a 443 }
444 fContainer->AddAt(h, kNtrackletsBAR);
445
446 //
447 if(!(h = (TH1F *)gROOT->FindObject("hNtlsCross"))){
448 h = new TH1F("hNtlsCross", "N_{tracklets}^{cross} / track", 7, -0.5, 6.5);
449 h->GetXaxis()->SetTitle("n_{row cross}");
450 h->GetYaxis()->SetTitle("freq. [%]");
451 } else h->Reset();
452 fContainer->AddAt(h, kNtrackletsCross);
453
454 if(!(h = (TH1F *)gROOT->FindObject("hNtlsFindable"))){
455 h = new TH1F("hNtlsFindable", "Found/Findable Tracklets" , 101, -0.005, 1.005);
456 h->GetXaxis()->SetTitle("r [a.u]");
457 h->GetYaxis()->SetTitle("Entries");
458 } else h->Reset();
459 fContainer->AddAt(h, kNtrackletsFindable);
460
461 if(!(h = (TH1F *)gROOT->FindObject("hNtrks"))){
462 h = new TH1F("hNtrks", "N_{tracks} / event", 100, 0, 100);
463 h->GetXaxis()->SetTitle("N_{tracks}");
464 h->GetYaxis()->SetTitle("Entries");
465 } else h->Reset();
466 fContainer->AddAt(h, kNtracksEvent);
467
468 if(!(h = (TH1F *)gROOT->FindObject("hNtrksSector"))){
469 h = new TH1F("hNtrksSector", "N_{tracks} / sector", AliTRDgeometry::kNsector, -0.5, 17.5);
470 h->GetXaxis()->SetTitle("sector");
471 h->GetYaxis()->SetTitle("freq. [%]");
472 } else h->Reset();
473 fContainer->AddAt(h, kNtracksSector);
474
475 if(!(h = (TH1F*)gROOT->FindObject("hTrackStatus"))){
476 const Int_t nerr = 7;
477 h = new TH1F("hTrackStatus", "Track Status", nerr, -0.5, nerr-0.5);
478 const Char_t *label[nerr] = {"OK", "PROL", "PROP", "AJST", "SNP", "TINI", "UPDT"};
479 ax = h->GetXaxis();
480 for(Int_t ierr=nerr; ierr--;) ax->SetBinLabel(ierr+1, label[ierr]);
481 h->SetYTitle("Relative Error to Good [%]");
482 }
483 fContainer->AddAt(h, kTrackStatus);
484
44fd53ca 485 arr = new TObjArray(AliTRDgeometry::kNlayer);
1ee39b3a 486 arr->SetOwner(kTRUE); arr->SetName("TrackletStatus");
487 fContainer->AddAt(arr, kTrackletStatus);
488 for(Int_t ily=AliTRDgeometry::kNlayer; ily--;){
489 if(!(h = (TH1F *)gROOT->FindObject(Form("hTrackletStatus%d", ily)))){
490 const Int_t nerr = 8;
491 h = new TH1F(Form("hTrackletStatus%d", ily), "Tracklet status", nerr, -0.5, nerr-0.5);
492 h->SetLineColor(ily+1);
493 const Char_t *label[nerr] = {"OK", "Geom", "Bound", "NoCl", "NoAttach", "NoClTr", "NoFit", "Chi2"};
494 ax = h->GetXaxis();
495 for(Int_t ierr=nerr; ierr--;) ax->SetBinLabel(ierr+1, label[ierr]);
496 h->SetYTitle("Relative Error to Good [%]");
497 } else h->Reset();
498 arr->AddAt(h, ily);
499 }
500
501 // <PH> histos
c0a6ac06 502 arr = new TObjArray(3);
1ee39b3a 503 arr->SetOwner(kTRUE); arr->SetName("<PH>");
504 fContainer->AddAt(arr, kPH);
505 if(!(h = (TH1F *)gROOT->FindObject("hPHt"))){
506 h = new TProfile("hPHt", "<PH>", 31, -0.5, 30.5);
507 h->GetXaxis()->SetTitle("Time / 100ns");
508 h->GetYaxis()->SetTitle("<PH> [a.u]");
509 } else h->Reset();
510 arr->AddAt(h, 0);
511 if(!(h = (TH1F *)gROOT->FindObject("hPHx")))
512 h = new TProfile("hPHx", "<PH>", 31, -0.08, 4.88);
513 else h->Reset();
514 arr->AddAt(h, 1);
c0a6ac06 515 if(!(h = (TH2F *)gROOT->FindObject("hPH2D"))){
516 h = new TH2F("hPH2D", "Charge Distribution / time", 31, -0.5, 30.5, 100, 0, 1024);
517 h->GetXaxis()->SetTitle("Time / 100ns");
518 h->GetYaxis()->SetTitle("Charge / a.u.");
519 } else h->Reset();
520 arr->AddAt(h, 2);
1ee39b3a 521
522 // Chi2 histos
523 if(!(h = (TH2S*)gROOT->FindObject("hChi2"))){
524 h = new TH2S("hChi2", "#chi^{2} per track", AliTRDgeometry::kNlayer, .5, AliTRDgeometry::kNlayer+.5, 100, 0, 50);
525 h->SetXTitle("ndf");
526 h->SetYTitle("#chi^{2}/ndf");
527 h->SetZTitle("entries");
528 } else h->Reset();
529 fContainer->AddAt(h, kChi2);
530
531 if(!(h = (TH1F *)gROOT->FindObject("hQcl"))){
532 h = new TH1F("hQcl", "Q_{cluster}", 200, 0, 1200);
533 h->GetXaxis()->SetTitle("Q_{cluster} [a.u.]");
534 h->GetYaxis()->SetTitle("Entries");
535 }else h->Reset();
536 fContainer->AddAt(h, kChargeCluster);
537
538 if(!(h = (TH1F *)gROOT->FindObject("hQtrklt"))){
539 h = new TH1F("hQtrklt", "Q_{tracklet}", 6000, 0, 6000);
540 h->GetXaxis()->SetTitle("Q_{tracklet} [a.u.]");
541 h->GetYaxis()->SetTitle("Entries");
542 }else h->Reset();
543 fContainer->AddAt(h, kChargeTracklet);
544
545
546 if(!(h = (TH1F *)gROOT->FindObject("hEventsTrigger")))
547 h = new TH1F("hEventsTrigger", "Trigger Class", 100, 0, 100);
548 else h->Reset();
f8f46e4d 549
1ee39b3a 550 fContainer->AddAt(h, kNeventsTrigger);
551
552 if(!(h = (TH1F *)gROOT->FindObject("hEventsTriggerTracks")))
553 h = new TH1F("hEventsTriggerTracks", "Trigger Class (Tracks)", 100, 0, 100);
554 else h->Reset();
555 fContainer->AddAt(h, kNeventsTriggerTracks);
556
557 if(!(h = (TH1F *)gROOT->FindObject("hTriggerPurity"))){
558 h = new TH1F("hTriggerPurity", "Trigger Purity", 10, -0.5, 9.5);
559 h->GetXaxis()->SetTitle("Trigger Cluster");
560 h->GetYaxis()->SetTitle("freq.");
561 } else h->Reset();
562 fContainer->AddAt(h, kTriggerPurity);
563
564 return fContainer;
565}
566
567/*
568* Plotting Functions
569*/
570
571//_______________________________________________________
572TH1 *AliTRDcheckDET::PlotTrackStatus(const AliTRDtrackV1 *track)
573{
574//
575// Plot the track propagation status. The following errors are defined (see AliTRDtrackV1::ETRDtrackError)
576// PROL - track prolongation failure
577// PROP - track propagation failure
578// AJST - crossing sectors failure
579// SNP - too large bending
580// TINI - tracklet initialization failure
581// UPDT - track position/covariance update failure
582//
583// Performance plot looks as below:
584//Begin_Html
585//<img src="TRD/trackStatus.gif">
586//End_Html
587//
588 if(track) fkTrack = track;
589 if(!fkTrack){
4e7a049c 590 AliDebug(4, "No Track defined.");
db99a57a 591 return NULL;
1ee39b3a 592 }
db99a57a 593 TH1 *h = NULL;
1ee39b3a 594 if(!(h = dynamic_cast<TH1F *>(fContainer->At(kTrackStatus)))){
595 AliWarning("No Histogram defined.");
db99a57a 596 return NULL;
1ee39b3a 597 }
598 h->Fill(fkTrack->GetStatusTRD());
599 return h;
600}
601
602//_______________________________________________________
603TH1 *AliTRDcheckDET::PlotTrackletStatus(const AliTRDtrackV1 *track)
604{
605//
606// Plot the tracklet propagation status. The following errors are defined for tracklet (see AliTRDtrackV1::ETRDlayerError)
607// Geom -
608// Bound - tracklet too close to chamber walls
609// NoCl - no clusters in the track roads
610// NoAttach - fail to attach clusters
611// NoClTr - fail to use clusters for fit
612// NoFit - tracklet fit failled
613// Chi2 - chi2 tracklet-track over threshold
614//
615// Performance plot looks as below:
616//Begin_Html
617//<img src="TRD/trackletStatus.gif">
618//End_Html
619//
620 if(track) fkTrack = track;
621 if(!fkTrack){
4e7a049c 622 AliDebug(4, "No Track defined.");
db99a57a 623 return NULL;
1ee39b3a 624 }
db99a57a 625 TObjArray *arr =NULL;
1ee39b3a 626 if(!(arr = dynamic_cast<TObjArray*>(fContainer->At(kTrackletStatus)))){
627 AliWarning("Histograms not defined.");
db99a57a 628 return NULL;
1ee39b3a 629 }
630
db99a57a 631 TH1 *h = NULL;
1ee39b3a 632 for(Int_t ily=AliTRDgeometry::kNlayer; ily--;){
633 if(!(h = dynamic_cast<TH1F*>(arr->At(ily)))){
634 AliWarning(Form("Missing histo for layer %d.", ily));
635 continue;
636 }
637 h->Fill(fkTrack->GetStatusTRD(ily));
638 }
639 return h;
640}
641
642//_______________________________________________________
643TH1 *AliTRDcheckDET::PlotNClustersTracklet(const AliTRDtrackV1 *track){
644 //
645 // Plot the mean number of clusters per tracklet
646 //
647 if(track) fkTrack = track;
648 if(!fkTrack){
4e7a049c 649 AliDebug(4, "No Track defined.");
db99a57a 650 return NULL;
1ee39b3a 651 }
44fd53ca 652 AliExternalTrackParam *par = fkTrack->GetTrackIn() ? fkTrack->GetTrackIn() : fkTrack->GetTrackOut();
db99a57a 653 TH1 *h = NULL;
44fd53ca 654 TProfile2D *hlayer = NULL;
655 Double_t eta = 0., phi = 0.;
1ee39b3a 656 if(!(h = dynamic_cast<TH1F *>(fContainer->At(kNclustersTracklet)))){
657 AliWarning("No Histogram defined.");
db99a57a 658 return NULL;
1ee39b3a 659 }
db99a57a 660 AliTRDseedV1 *tracklet = NULL;
44fd53ca 661 TObjArray *histosLayer = dynamic_cast<TObjArray *>(fContainer->At(kNclustersLayer));
662 if(!histosLayer){
663 AliWarning("No Histograms for single layer defined");
664 }
1ee39b3a 665 for(Int_t itl = 0; itl < AliTRDgeometry::kNlayer; itl++){
666 if(!(tracklet = fkTrack->GetTracklet(itl)) || !tracklet->IsOK()) continue;
667 h->Fill(tracklet->GetN2());
44fd53ca 668 if(histosLayer && par){
669 if((hlayer = dynamic_cast<TProfile2D *>(histosLayer->At(itl)))){
670 GetEtaPhiAt(par, tracklet->GetX0(), eta, phi);
671 hlayer->Fill(eta, phi, tracklet->GetN2());
672 }
673 }
1ee39b3a 674 }
675 return h;
676}
677
678//_______________________________________________________
679TH1 *AliTRDcheckDET::PlotNClustersTrack(const AliTRDtrackV1 *track){
680 //
681 // Plot the number of clusters in one track
682 //
683 if(track) fkTrack = track;
684 if(!fkTrack){
4e7a049c 685 AliDebug(4, "No Track defined.");
db99a57a 686 return NULL;
1ee39b3a 687 }
db99a57a 688 TH1 *h = NULL;
1ee39b3a 689 if(!(h = dynamic_cast<TH1F *>(fContainer->At(kNclustersTrack)))){
690 AliWarning("No Histogram defined.");
db99a57a 691 return NULL;
1ee39b3a 692 }
693
694 Int_t nclusters = 0;
db99a57a 695 AliTRDseedV1 *tracklet = NULL;
a310e49b 696 AliExternalTrackParam *par = fkTrack->GetTrackOut() ? fkTrack->GetTrackOut() : fkTrack->GetTrackIn();
9653acd3 697 if(!par) return NULL;
0c76cfa4 698 Double_t momentumRec = par->P();
1ee39b3a 699 for(Int_t itl = 0; itl < AliTRDgeometry::kNlayer; itl++){
700 if(!(tracklet = fkTrack->GetTracklet(itl)) || !tracklet->IsOK()) continue;
fc2ec42c 701 Int_t n(tracklet->GetN());
702 nclusters += n;
1ee39b3a 703 if(DebugLevel() > 2){
704 Int_t crossing = Int_t(tracklet->IsRowCross());
705 Int_t detector = tracklet->GetDetector();
706 Float_t theta = TMath::ATan(tracklet->GetZref(1));
707 Float_t phi = TMath::ATan(tracklet->GetYref(1));
0c76cfa4 708 Float_t momentumMC = 0.;
1ee39b3a 709 Int_t pdg = 0;
710 Int_t kinkIndex = fkESD ? fkESD->GetKinkIndex() : 0;
711 UShort_t nclsTPC = fkESD ? fkESD->GetTPCncls() : 0;
712 if(fkMC){
0c76cfa4 713 if(fkMC->GetTrackRef()) momentumMC = fkMC->GetTrackRef()->P();
1ee39b3a 714 pdg = fkMC->GetPDG();
715 }
716 (*DebugStream()) << "NClustersTrack"
717 << "Detector=" << detector
718 << "crossing=" << crossing
0c76cfa4 719 << "momentumMC="<< momentumMC
720 << "momentumRec=" << momentumRec
1ee39b3a 721 << "pdg=" << pdg
722 << "theta=" << theta
723 << "phi=" << phi
724 << "kinkIndex=" << kinkIndex
725 << "TPCncls=" << nclsTPC
fc2ec42c 726 << "TRDncls=" << n
1ee39b3a 727 << "\n";
728 }
729 }
730 h->Fill(nclusters);
731 return h;
732}
733
734
735//_______________________________________________________
736TH1 *AliTRDcheckDET::PlotNTrackletsTrack(const AliTRDtrackV1 *track){
737 //
738 // Plot the number of tracklets
739 //
740 if(track) fkTrack = track;
741 if(!fkTrack){
4e7a049c 742 AliDebug(4, "No Track defined.");
db99a57a 743 return NULL;
1ee39b3a 744 }
a5d9fe6f 745 TH1 *h = NULL, *hSta = NULL; TH2 *hBarrel = NULL;
1ee39b3a 746 if(!(h = dynamic_cast<TH1F *>(fContainer->At(kNtrackletsTrack)))){
747 AliWarning("No Histogram defined.");
db99a57a 748 return NULL;
1ee39b3a 749 }
750 Int_t nTracklets = fkTrack->GetNumberOfTracklets();
751 h->Fill(nTracklets);
752 if(!fkESD) return h;
753 Int_t status = fkESD->GetStatus();
a5d9fe6f 754
1ee39b3a 755/* printf("in/out/refit/pid: TRD[%d|%d|%d|%d]\n", status &AliESDtrack::kTRDin ? 1 : 0, status &AliESDtrack::kTRDout ? 1 : 0, status &AliESDtrack::kTRDrefit ? 1 : 0, status &AliESDtrack::kTRDpid ? 1 : 0);*/
a5d9fe6f 756 Double_t p = 0.;
0c76cfa4 757 Int_t method = -1; // to distinguish between stand alone and full barrel tracks in the debugging
1ee39b3a 758 if((status & AliESDtrack::kTRDin) != 0){
0c76cfa4 759 method = 1;
a5d9fe6f 760 // Full Barrel Track: Save momentum dependence
761 if(!(hBarrel = dynamic_cast<TH2F *>(fContainer->At(kNtrackletsBAR)))){
1ee39b3a 762 AliWarning("Method: Barrel. Histogram not processed!");
147c3968 763 return NULL;
a5d9fe6f 764 }
147c3968 765 AliExternalTrackParam *par(fkTrack->GetTrackIn());
766 if(!par){
767 AliError("Input track params missing");
768 return NULL;
769 }
b795b480 770 p = par->P(); // p needed later in the debug streaming
771 hBarrel->Fill(p, nTracklets);
1ee39b3a 772 } else {
a5d9fe6f 773 // Stand alone Track: momentum dependence not usefull
0c76cfa4 774 method = 0;
a5d9fe6f 775 if(!(hSta = dynamic_cast<TH1F *>(fContainer->At(kNtrackletsSTA)))) {
1ee39b3a 776 AliWarning("Method: StandAlone. Histogram not processed!");
147c3968 777 return NULL;
a5d9fe6f 778 }
147c3968 779 hSta->Fill(nTracklets);
1ee39b3a 780 }
1ee39b3a 781
0c76cfa4 782 if(DebugLevel() > 2){
783 AliTRDseedV1 *tracklet = NULL;
fd7ffd88 784 AliTRDgeometry *geo(AliTRDinfoGen::Geometry());
b795b480 785 Int_t sector = -1, stack = -1, detector;
0c76cfa4 786 for(Int_t itl = 0; itl < AliTRDgeometry::kNlayer; itl++){
787 if(!(tracklet = fkTrack->GetTracklet(itl)) || !(tracklet->IsOK())) continue;
b795b480 788 detector = tracklet->GetDetector();
fd7ffd88 789 sector = geo->GetSector(detector);
790 stack = geo->GetStack(detector);
0c76cfa4 791 break;
792 }
793 (*DebugStream()) << "NTrackletsTrack"
794 << "Sector=" << sector
b795b480 795 << "Stack=" << stack
0c76cfa4 796 << "NTracklets=" << nTracklets
797 << "Method=" << method
798 << "p=" << p
799 << "\n";
800 }
1ee39b3a 801 if(DebugLevel() > 3){
b795b480 802 AliTRDseedV1 *tracklet = NULL;
803 for(Int_t il = 0; il < AliTRDgeometry::kNlayer; il++){
804 if((tracklet = fkTrack->GetTracklet(il)) && tracklet->IsOK()){
0c76cfa4 805 (*DebugStream()) << "NTrackletsLayer"
b795b480 806 << "Layer=" << il
807 << "p=" << p
808 << "\n";
a5d9fe6f 809 }
1ee39b3a 810 }
811 }
812 return h;
813}
814
815
816//_______________________________________________________
817TH1 *AliTRDcheckDET::PlotNTrackletsRowCross(const AliTRDtrackV1 *track){
818 //
819 // Plot the number of tracklets
820 //
821 if(track) fkTrack = track;
822 if(!fkTrack){
4e7a049c 823 AliDebug(4, "No Track defined.");
db99a57a 824 return NULL;
1ee39b3a 825 }
db99a57a 826 TH1 *h = NULL;
1ee39b3a 827 if(!(h = dynamic_cast<TH1F *>(fContainer->At(kNtrackletsCross)))){
828 AliWarning("No Histogram defined.");
db99a57a 829 return NULL;
1ee39b3a 830 }
831
832 Int_t ncross = 0;
db99a57a 833 AliTRDseedV1 *tracklet = NULL;
1ee39b3a 834 for(Int_t il = 0; il < AliTRDgeometry::kNlayer; il++){
835 if(!(tracklet = fkTrack->GetTracklet(il)) || !tracklet->IsOK()) continue;
836
837 if(tracklet->IsRowCross()) ncross++;
838 }
839 h->Fill(ncross);
840 return h;
841}
842
843//_______________________________________________________
844TH1 *AliTRDcheckDET::PlotFindableTracklets(const AliTRDtrackV1 *track){
845 //
846 // Plots the ratio of number of tracklets vs.
847 // number of findable tracklets
848 //
849 // Findable tracklets are defined as track prolongation
850 // to layer i does not hit the dead area +- epsilon
851 //
852 // In order to check whether tracklet hist active area in Layer i,
853 // the track is refitted and the fitted position + an uncertainty
854 // range is compared to the chamber border (also with a different
855 // uncertainty)
856 //
857 // For the track fit two cases are distinguished:
858 // If the track is a stand alone track (defined by the status bit
859 // encoding, then the track is fitted with the tilted Rieman model
860 // Otherwise the track is fitted with the Kalman fitter in two steps:
861 // Since the track parameters are give at the outer point, we first
862 // fit in direction inwards. Afterwards we fit again in direction outwards
863 // to extrapolate the track to layers which are not reached by the track
864 // For the Kalman model, the radial track points have to be shifted by
865 // a distance epsilon in the direction that we want to fit
866 //
867 const Float_t epsilon = 0.01; // dead area tolerance
868 const Float_t epsilonR = 1; // shift in radial direction of the anode wire position (Kalman filter only)
869 const Float_t deltaY = 0.7; // Tolerance in the track position in y-direction
870 const Float_t deltaZ = 7.0; // Tolerance in the track position in z-direction (Padlength)
871 Double_t xAnode[AliTRDgeometry::kNlayer] = {300.2, 312.8, 325.4, 338.0, 350.6, 363.2}; // Take the default X0
872
873 if(track) fkTrack = track;
874 if(!fkTrack){
4e7a049c 875 AliDebug(4, "No Track defined.");
db99a57a 876 return NULL;
1ee39b3a 877 }
db99a57a 878 TH1 *h = NULL;
1ee39b3a 879 if(!(h = dynamic_cast<TH1F *>(fContainer->At(kNtrackletsFindable)))){
880 AliWarning("No Histogram defined.");
db99a57a 881 return NULL;
1ee39b3a 882 }
883 Int_t nFound = 0, nFindable = 0;
884 Int_t stack = -1;
885 Double_t ymin = 0., ymax = 0., zmin = 0., zmax = 0.;
886 Double_t y = 0., z = 0.;
db99a57a 887 AliTRDseedV1 *tracklet = NULL;
1ee39b3a 888 AliTRDpadPlane *pp;
889 for(Int_t il = 0; il < AliTRDgeometry::kNlayer; il++){
890 if((tracklet = fkTrack->GetTracklet(il)) && tracklet->IsOK()){
fd7ffd88 891 tracklet->SetReconstructor(AliTRDinfoGen::Reconstructor());
1ee39b3a 892 nFound++;
893 }
894 }
895 // 2 Different cases:
896 // 1st stand alone: here we cannot propagate, but be can do a Tilted Rieman Fit
897 // 2nd barrel track: here we propagate the track to the layers
898 AliTrackPoint points[6];
899 Float_t xyz[3];
900 memset(xyz, 0, sizeof(Float_t) * 3);
901 if(((fkESD->GetStatus() & AliESDtrack::kTRDout) > 0) && !((fkESD->GetStatus() & AliESDtrack::kTRDin) > 0)){
902 // stand alone track
903 for(Int_t il = 0; il < AliTRDgeometry::kNlayer; il++){
904 xyz[0] = xAnode[il];
905 points[il].SetXYZ(xyz);
906 }
db99a57a 907 AliTRDtrackerV1::FitRiemanTilt(const_cast<AliTRDtrackV1 *>(fkTrack), NULL, kTRUE, 6, points);
1ee39b3a 908 } else {
909 // barrel track
910 //
911 // 2 Steps:
912 // -> Kalman inwards
913 // -> Kalman outwards
914 AliTRDtrackV1 copyTrack(*fkTrack); // Do Kalman on a (non-constant) copy of the track
915 AliTrackPoint pointsInward[6], pointsOutward[6];
916 for(Int_t il = AliTRDgeometry::kNlayer; il--;){
917 // In order to avoid complications in the Kalman filter if the track points have the same radial
918 // position like the tracklets, we have to shift the radial postion of the anode wire by epsilon
919 // in the direction we want to go
920 // The track points have to be in reverse order for the Kalman Filter inwards
921 xyz[0] = xAnode[AliTRDgeometry::kNlayer - il - 1] - epsilonR;
922 pointsInward[il].SetXYZ(xyz);
923 xyz[0] = xAnode[il] + epsilonR;
924 pointsOutward[il].SetXYZ(xyz);
925 }
926 /*for(Int_t ipt = 0; ipt < AliTRDgeometry::kNlayer; ipt++)
927 printf("%d. X = %f\n", ipt, points[ipt].GetX());*/
928 // Kalman inwards
db99a57a 929 AliTRDtrackerV1::FitKalman(&copyTrack, NULL, kFALSE, 6, pointsInward);
1ee39b3a 930 memcpy(points, pointsInward, sizeof(AliTrackPoint) * 6); // Preliminary store the inward results in the Array points
931 // Kalman outwards
db99a57a 932 AliTRDtrackerV1::FitKalman(&copyTrack, NULL, kTRUE, 6, pointsInward);
1ee39b3a 933 memcpy(points, pointsOutward, sizeof(AliTrackPoint) * AliTRDgeometry::kNlayer);
934 }
fd7ffd88 935 AliTRDgeometry *geo(AliTRDinfoGen::Geometry());
1ee39b3a 936 for(Int_t il = 0; il < AliTRDgeometry::kNlayer; il++){
937 y = points[il].GetY();
938 z = points[il].GetZ();
fd7ffd88 939 if((stack = geo->GetStack(z, il)) < 0) continue; // Not findable
940 pp = geo->GetPadPlane(il, stack);
1ee39b3a 941 ymin = pp->GetCol0() + epsilon;
942 ymax = pp->GetColEnd() - epsilon;
943 zmin = pp->GetRowEnd() + epsilon;
944 zmax = pp->GetRow0() - epsilon;
945 // ignore y-crossing (material)
946 if((z + deltaZ > zmin && z - deltaZ < zmax) && (y + deltaY > ymin && y - deltaY < ymax)) nFindable++;
947 if(DebugLevel() > 3){
948 Double_t posTracklet[2] = {tracklet ? tracklet->GetYfit(0) : 0, tracklet ? tracklet->GetZfit(0) : 0};
949 Int_t hasTracklet = tracklet ? 1 : 0;
950 (*DebugStream()) << "FindableTracklets"
951 << "layer=" << il
952 << "ytracklet=" << posTracklet[0]
953 << "ytrack=" << y
954 << "ztracklet=" << posTracklet[1]
955 << "ztrack=" << z
956 << "tracklet=" << hasTracklet
957 << "\n";
958 }
959 }
960
961 h->Fill(nFindable > 0 ? TMath::Min(nFound/static_cast<Double_t>(nFindable), 1.) : 1);
962 AliDebug(2, Form("Findable[Found]: %d[%d|%f]", nFindable, nFound, nFound/static_cast<Float_t>(nFindable > 0 ? nFindable : 1)));
963 return h;
964}
965
966
967//_______________________________________________________
968TH1 *AliTRDcheckDET::PlotChi2(const AliTRDtrackV1 *track){
969 //
970 // Plot the chi2 of the track
971 //
972 if(track) fkTrack = track;
973 if(!fkTrack){
4e7a049c 974 AliDebug(4, "No Track defined.");
db99a57a 975 return NULL;
1ee39b3a 976 }
db99a57a 977 TH1 *h = NULL;
1ee39b3a 978 if(!(h = dynamic_cast<TH2S*>(fContainer->At(kChi2)))) {
979 AliWarning("No Histogram defined.");
db99a57a 980 return NULL;
1ee39b3a 981 }
982 Int_t n = fkTrack->GetNumberOfTracklets();
db99a57a 983 if(!n) return NULL;
1ee39b3a 984
985 h->Fill(n, fkTrack->GetChi2()/n);
986 return h;
987}
988
989
990//_______________________________________________________
991TH1 *AliTRDcheckDET::PlotPHt(const AliTRDtrackV1 *track){
992 //
993 // Plot the average pulse height
994 //
4e7a049c 995 if(track) fkTrack = track;
996 if(!fkTrack){
997 AliDebug(4, "No Track defined.");
db99a57a 998 return NULL;
1ee39b3a 999 }
c0a6ac06 1000 TProfile *h = NULL; TH2F *phs2D = NULL;
1ee39b3a 1001 if(!(h = dynamic_cast<TProfile *>(((TObjArray*)(fContainer->At(kPH)))->At(0)))){
1002 AliWarning("No Histogram defined.");
db99a57a 1003 return NULL;
1ee39b3a 1004 }
c0a6ac06 1005 if(!(phs2D = dynamic_cast<TH2F *>(((TObjArray*)(fContainer->At(kPH)))->At(2)))){
1006 AliWarning("2D Pulse Height histogram not defined. Histogramm cannot be filled");
1007 }
db99a57a 1008 AliTRDseedV1 *tracklet = NULL;
1009 AliTRDcluster *c = NULL;
1ee39b3a 1010 for(Int_t itl = 0; itl < AliTRDgeometry::kNlayer; itl++){
1011 if(!(tracklet = fkTrack->GetTracklet(itl)) || !tracklet->IsOK())continue;
1012 Int_t crossing = Int_t(tracklet->IsRowCross());
1013 Int_t detector = tracklet->GetDetector();
1014 tracklet->ResetClusterIter();
1015 while((c = tracklet->NextCluster())){
c732f879 1016 if(!IsUsingClustersOutsideChamber() && !c->IsInChamber()) continue;
1ee39b3a 1017 Int_t localtime = c->GetLocalTimeBin();
1018 Double_t absoluteCharge = TMath::Abs(c->GetQ());
1019 h->Fill(localtime, absoluteCharge);
c0a6ac06 1020 phs2D->Fill(localtime, absoluteCharge);
1ee39b3a 1021 if(DebugLevel() > 3){
b795b480 1022 Int_t inChamber = c->IsInChamber() ? 1 : 0;
1ee39b3a 1023 Double_t distance[2];
1024 GetDistanceToTracklet(distance, tracklet, c);
1025 Float_t theta = TMath::ATan(tracklet->GetZref(1));
1026 Float_t phi = TMath::ATan(tracklet->GetYref(1));
b795b480 1027 AliExternalTrackParam *trdPar = fkTrack->GetTrackIn();
1028 Float_t momentumMC = 0, momentumRec = trdPar ? trdPar->P() : track->P(); // prefer Track Low
1ee39b3a 1029 Int_t pdg = 0;
1030 Int_t kinkIndex = fkESD ? fkESD->GetKinkIndex() : 0;
efb9a759 1031 UShort_t tpcNCLS = fkESD ? fkESD->GetTPCncls() : 0;
1ee39b3a 1032 if(fkMC){
b795b480 1033 if(fkMC->GetTrackRef()) momentumMC = fkMC->GetTrackRef()->P();
1ee39b3a 1034 pdg = fkMC->GetPDG();
1035 }
1036 (*DebugStream()) << "PHt"
1037 << "Detector=" << detector
1038 << "crossing=" << crossing
b795b480 1039 << "inChamber=" << inChamber
1ee39b3a 1040 << "Timebin=" << localtime
1041 << "Charge=" << absoluteCharge
b795b480 1042 << "momentumMC=" << momentumMC
1043 << "momentumRec=" << momentumRec
1ee39b3a 1044 << "pdg=" << pdg
1045 << "theta=" << theta
1046 << "phi=" << phi
1047 << "kinkIndex=" << kinkIndex
efb9a759 1048 << "TPCncls=" << tpcNCLS
1ee39b3a 1049 << "dy=" << distance[0]
1050 << "dz=" << distance[1]
1051 << "c.=" << c
1052 << "\n";
1053 }
1054 }
1055 }
1056 return h;
1057}
1058
1059//_______________________________________________________
1060TH1 *AliTRDcheckDET::PlotPHx(const AliTRDtrackV1 *track){
1061 //
1062 // Plots the average pulse height vs the distance from the anode wire
1063 // (plus const anode wire offset)
1064 //
4e7a049c 1065 if(track) fkTrack = track;
1066 if(!fkTrack){
1067 AliDebug(4, "No Track defined.");
1068 return NULL;
1ee39b3a 1069 }
db99a57a 1070 TProfile *h = NULL;
1ee39b3a 1071 if(!(h = dynamic_cast<TProfile *>(((TObjArray*)(fContainer->At(kPH)))->At(1)))){
1072 AliWarning("No Histogram defined.");
db99a57a 1073 return NULL;
1ee39b3a 1074 }
4e7a049c 1075 AliTRDseedV1 *tracklet(NULL);
1076 AliTRDcluster *c(NULL);
749e9d16 1077 Double_t xd(0.), dqdl(0.);
1078 TVectorD vq(AliTRDseedV1::kNtb), vxd(AliTRDseedV1::kNtb), vdqdl(AliTRDseedV1::kNtb);
1ee39b3a 1079 for(Int_t itl = 0; itl < AliTRDgeometry::kNlayer; itl++){
1080 if(!(tracklet = fkTrack->GetTracklet(itl)) || !(tracklet->IsOK())) continue;
749e9d16 1081 Int_t det(tracklet->GetDetector());
1082 Bool_t rc(tracklet->IsRowCross());
4e7a049c 1083 for(Int_t ic(0); ic<AliTRDseedV1::kNtb; ic++){
1084 Bool_t kFIRST(kFALSE);
1085 if(!(c = tracklet->GetClusters(ic))){
1086 if(!(c = tracklet->GetClusters(AliTRDseedV1::kNtb+ic))) continue;
1087 } else kFIRST=kTRUE;
c732f879 1088 if(!IsUsingClustersOutsideChamber() && !c->IsInChamber()) continue;
4e7a049c 1089 xd = tracklet->GetX0() - c->GetX(); vxd[ic] = xd;
1090 dqdl=tracklet->GetdQdl(ic); vdqdl[ic] = dqdl;
1091 vq[ic]=c->GetQ();
1092 if(kFIRST && (c = tracklet->GetClusters(AliTRDseedV1::kNtb+ic))) vq[ic]+=c->GetQ();
749e9d16 1093 h->Fill(xd, dqdl);
1094 }
1095 if(DebugLevel() > 3){
749e9d16 1096 (*DebugStream()) << "PHx"
1097 << "det=" << det
1098 << "rc=" << rc
1099 << "xd=" << &vxd
1100 << "q=" << &vq
1101 << "dqdl=" << &vdqdl
1102 << "\n";
1ee39b3a 1103 }
1104 }
1105 return h;
1106}
1107
1108//_______________________________________________________
1109TH1 *AliTRDcheckDET::PlotChargeCluster(const AliTRDtrackV1 *track){
1110 //
1111 // Plot the cluster charge
1112 //
1113 if(track) fkTrack = track;
1114 if(!fkTrack){
4e7a049c 1115 AliDebug(4, "No Track defined.");
db99a57a 1116 return NULL;
1ee39b3a 1117 }
db99a57a 1118 TH1 *h = NULL;
1ee39b3a 1119 if(!(h = dynamic_cast<TH1F *>(fContainer->At(kChargeCluster)))){
1120 AliWarning("No Histogram defined.");
db99a57a 1121 return NULL;
1ee39b3a 1122 }
db99a57a 1123 AliTRDseedV1 *tracklet = NULL;
1124 AliTRDcluster *c = NULL;
1ee39b3a 1125 for(Int_t itl = 0; itl < AliTRDgeometry::kNlayer; itl++){
1126 if(!(tracklet = fkTrack->GetTracklet(itl)) || !tracklet->IsOK())continue;
4e7a049c 1127 for(Int_t ic(0); ic < AliTRDseedV1::kNtb; ic++){
1128 Bool_t kFIRST(kFALSE);
1129 if(!(c = tracklet->GetClusters(ic))) {
1130 if(!(c = tracklet->GetClusters(AliTRDseedV1::kNtb+ic))) continue;
1131 } else kFIRST = kTRUE;
1132 Float_t q(c->GetQ());
1133 if(kFIRST && (c = tracklet->GetClusters(AliTRDseedV1::kNtb+ic))) q+=c->GetQ();
1134 h->Fill(q);
1ee39b3a 1135 }
1136 }
1137 return h;
1138}
1139
1140//_______________________________________________________
1141TH1 *AliTRDcheckDET::PlotChargeTracklet(const AliTRDtrackV1 *track){
1142 //
1143 // Plot the charge deposit per chamber
1144 //
1145 if(track) fkTrack = track;
1146 if(!fkTrack){
4e7a049c 1147 AliDebug(4, "No Track defined.");
db99a57a 1148 return NULL;
1ee39b3a 1149 }
db99a57a 1150 TH1 *h = NULL;
1ee39b3a 1151 if(!(h = dynamic_cast<TH1F *>(fContainer->At(kChargeTracklet)))){
1152 AliWarning("No Histogram defined.");
db99a57a 1153 return NULL;
1ee39b3a 1154 }
db99a57a 1155 AliTRDseedV1 *tracklet = NULL;
1156 AliTRDcluster *c = NULL;
1ee39b3a 1157 Double_t qTot = 0;
1158 Int_t nTracklets =fkTrack->GetNumberOfTracklets();
8428f55d 1159 for(Int_t itl(0); itl < AliTRDgeometry::kNlayer; itl++){
1ee39b3a 1160 if(!(tracklet = fkTrack->GetTracklet(itl)) || !tracklet->IsOK()) continue;
1161 qTot = 0.;
1162 for(Int_t ic = AliTRDseedV1::kNclusters; ic--;){
1163 if(!(c = tracklet->GetClusters(ic))) continue;
1164 qTot += TMath::Abs(c->GetQ());
1165 }
1166 h->Fill(qTot);
1167 if(DebugLevel() > 3){
1168 Int_t crossing = (Int_t)tracklet->IsRowCross();
1169 Int_t detector = tracklet->GetDetector();
1170 Float_t theta = TMath::ATan(tracklet->GetZfit(1));
1171 Float_t phi = TMath::ATan(tracklet->GetYfit(1));
1172 Float_t momentum = 0.;
1173 Int_t pdg = 0;
1174 Int_t kinkIndex = fkESD ? fkESD->GetKinkIndex() : 0;
1175 UShort_t nclsTPC = fkESD ? fkESD->GetTPCncls() : 0;
1176 if(fkMC){
1177 if(fkMC->GetTrackRef()) momentum = fkMC->GetTrackRef()->P();
1178 pdg = fkMC->GetPDG();
1179 }
1180 (*DebugStream()) << "ChargeTracklet"
1181 << "Detector=" << detector
1182 << "crossing=" << crossing
1183 << "momentum=" << momentum
1184 << "nTracklets="<< nTracklets
1185 << "pdg=" << pdg
1186 << "theta=" << theta
1187 << "phi=" << phi
1188 << "kinkIndex=" << kinkIndex
1189 << "TPCncls=" << nclsTPC
1190 << "QT=" << qTot
1191 << "\n";
1192 }
1193 }
1194 return h;
1195}
1196
1197//_______________________________________________________
1198TH1 *AliTRDcheckDET::PlotNTracksSector(const AliTRDtrackV1 *track){
1199 //
1200 // Plot the number of tracks per Sector
1201 //
1202 if(track) fkTrack = track;
1203 if(!fkTrack){
4e7a049c 1204 AliDebug(4, "No Track defined.");
db99a57a 1205 return NULL;
1ee39b3a 1206 }
db99a57a 1207 TH1 *h = NULL;
1ee39b3a 1208 if(!(h = dynamic_cast<TH1F *>(fContainer->At(kNtracksSector)))){
1209 AliWarning("No Histogram defined.");
db99a57a 1210 return NULL;
1ee39b3a 1211 }
1212
1213 // TODO we should compare with
1214 // sector = Int_t(track->GetAlpha() / AliTRDgeometry::GetAlpha());
1215
db99a57a 1216 AliTRDseedV1 *tracklet = NULL;
1ee39b3a 1217 Int_t sector = -1;
1218 for(Int_t itl = 0; itl < AliTRDgeometry::kNlayer; itl++){
1219 if(!(tracklet = fkTrack->GetTracklet(itl)) || !tracklet->IsOK()) continue;
1220 sector = static_cast<Int_t>(tracklet->GetDetector()/AliTRDgeometry::kNdets);
1221 break;
1222 }
1223 h->Fill(sector);
1224 return h;
1225}
1226
1227
1ee39b3a 1228//________________________________________________________
1229void AliTRDcheckDET::GetDistanceToTracklet(Double_t *dist, AliTRDseedV1 * const tracklet, AliTRDcluster * const c)
1230{
1231 Float_t x = c->GetX();
1232 dist[0] = c->GetY() - tracklet->GetYat(x);
1233 dist[1] = c->GetZ() - tracklet->GetZat(x);
1234}
1235
44fd53ca 1236//________________________________________________________
efb9a759 1237void AliTRDcheckDET::GetEtaPhiAt(const AliExternalTrackParam *track, Double_t x, Double_t &eta, Double_t &phi){
44fd53ca 1238 //
1239 // Get phi and eta at a given radial position
1240 //
1241 AliExternalTrackParam workpar(*track);
1242
1243 Double_t posLocal[3];
1244 Bool_t sucPos = workpar.GetXYZAt(x, fEventInfo->GetRunInfo()->GetMagneticField(), posLocal);
1245 Double_t sagPhi = sucPos ? TMath::ATan2(posLocal[1], posLocal[0]) : 0.;
1246 phi = sagPhi;
1247 eta = workpar.Eta();
1248}
1249
1ee39b3a 1250
1251//_______________________________________________________
1252TH1* AliTRDcheckDET::MakePlotChi2()
1253{
1254// Plot chi2/track normalized to number of degree of freedom
1255// (tracklets) and compare with the theoretical distribution.
1256//
1257// Alex Bercuci <A.Bercuci@gsi.de>
1258
c0a6ac06 1259 return NULL;
1260
1ee39b3a 1261 TH2S *h2 = (TH2S*)fContainer->At(kChi2);
1262 TF1 f("fChi2", "[0]*pow(x, [1]-1)*exp(-0.5*x)", 0., 50.);
c0a6ac06 1263 f.SetParLimits(1,1, 1e100);
1ee39b3a 1264 TLegend *leg = new TLegend(.7,.7,.95,.95);
1265 leg->SetBorderSize(1); leg->SetHeader("Tracklets per Track");
db99a57a 1266 TH1D *h1 = NULL;
1ee39b3a 1267 Bool_t kFIRST = kTRUE;
1268 for(Int_t il=1; il<=h2->GetNbinsX(); il++){
1269 h1 = h2->ProjectionY(Form("pyChi2%d", il), il, il);
1270 if(h1->Integral()<50) continue;
1271 h1->Scale(1./h1->Integral());
1272 h1->SetMarkerStyle(7);h1->SetMarkerColor(il);
1273 h1->SetLineColor(il);h1->SetLineStyle(2);
1274 f.SetParameter(1, .5*il);f.SetLineColor(il);
1275 h1->Fit(&f, "QW+", kFIRST ? "pc": "pcsame");
1276 leg->AddEntry(h1, Form("%d", il), "l");
1277 if(kFIRST){
1278 h1->GetXaxis()->SetRangeUser(0., 25.);
1279 }
1280 kFIRST = kFALSE;
1281 }
1282 leg->Draw();
1283 gPad->SetLogy();
1284 return h1;
1285}
1286
1287
1288//________________________________________________________
1289TH1* AliTRDcheckDET::MakePlotNTracklets(){
1290 //
1291 // Make nice bar plot of the number of tracklets in each method
1292 //
a5d9fe6f 1293 TH2F *tmp = (TH2F *)fContainer->FindObject("hNtlsBAR");
1294 TH1D *hBAR = tmp->ProjectionY();
1ee39b3a 1295 TH1F *hSTA = (TH1F *)fContainer->FindObject("hNtlsSTA");
1296 TH1F *hCON = (TH1F *)fContainer->FindObject("hNtls");
1297 TLegend *leg = new TLegend(0.13, 0.75, 0.39, 0.89);
1298 leg->SetBorderSize(1);
1299 leg->SetFillColor(0);
1300
1301 Float_t scale = hCON->Integral();
08c8e4e8 1302 if(scale) hCON->Scale(100./scale);
1ee39b3a 1303 hCON->SetFillColor(kRed);hCON->SetLineColor(kRed);
1304 hCON->SetBarWidth(0.2);
1305 hCON->SetBarOffset(0.6);
1306 hCON->SetStats(kFALSE);
1307 hCON->GetYaxis()->SetRangeUser(0.,40.);
1308 hCON->GetYaxis()->SetTitleOffset(1.2);
1309 hCON->Draw("bar1"); leg->AddEntry(hCON, "Total", "f");
1310 hCON->SetMaximum(55.);
1311
08c8e4e8 1312 if(scale) hBAR->Scale(100./scale);
1ee39b3a 1313 hBAR->SetFillColor(kGreen);hBAR->SetLineColor(kGreen);
1314 hBAR->SetBarWidth(0.2);
1315 hBAR->SetBarOffset(0.2);
1316 hBAR->SetTitle("");
1317 hBAR->SetStats(kFALSE);
1318 hBAR->GetYaxis()->SetRangeUser(0.,40.);
1319 hBAR->GetYaxis()->SetTitleOffset(1.2);
1320 hBAR->Draw("bar1same"); leg->AddEntry(hBAR, "Barrel", "f");
1321
08c8e4e8 1322 if(scale) hSTA->Scale(100./scale);
1ee39b3a 1323 hSTA->SetFillColor(kBlue);hSTA->SetLineColor(kBlue);
1324 hSTA->SetBarWidth(0.2);
1325 hSTA->SetBarOffset(0.4);
1326 hSTA->SetTitle("");
1327 hSTA->SetStats(kFALSE);
1328 hSTA->GetYaxis()->SetRangeUser(0.,40.);
1329 hSTA->GetYaxis()->SetTitleOffset(1.2);
1330 hSTA->Draw("bar1same"); leg->AddEntry(hSTA, "Stand Alone", "f");
1331 leg->Draw();
1332 gPad->Update();
1333 return hCON;
1334}
1335
0c76cfa4 1336//________________________________________________________
1337void AliTRDcheckDET::MakePlotnTrackletsVsP(){
1338 //
1339 // Plot abundance of tracks with number of tracklets as function of momentum
1340 //
147c3968 1341
1342
1343
1344
1345 Color_t color[AliTRDgeometry::kNlayer] = {kBlue, kOrange, kBlack, kGreen, kCyan, kRed};
1346 TH1 *h(NULL); TGraphErrors *g[AliTRDgeometry::kNlayer];
1347 for(Int_t itl(0); itl<AliTRDgeometry::kNlayer; itl++){
1348 g[itl] = new TGraphErrors();
1349 g[itl]->SetLineColor(color[itl]);
1350 g[itl]->SetMarkerColor(color[itl]);
1351 g[itl]->SetMarkerStyle(20 + itl);
1352 }
1353
0c76cfa4 1354 TH2 *hBar = (TH2F *)fContainer->FindObject("hNtlsBAR");
147c3968 1355 TAxis *ax(hBar->GetXaxis());
1356 Int_t np(ax->GetNbins());
1357 for(Int_t ipBin(1); ipBin<np; ipBin++){
1358 h = hBar->ProjectionY("npBin", ipBin, ipBin);
81979445 1359 if(!Int_t(h->Integral())) continue;
147c3968 1360 h->Scale(100./h->Integral());
1361 Float_t p(ax->GetBinCenter(ipBin));
1362 Float_t dp(ax->GetBinWidth(ipBin));
81979445 1363 Int_t ip(g[0]->GetN());
147c3968 1364 for(Int_t itl(AliTRDgeometry::kNlayer); itl--;){
81979445 1365 g[itl]->SetPoint(ip, p, h->GetBinContent(itl+1));
1366 g[itl]->SetPointError(ip, dp/3.46, h->GetBinError(itl+1));
147c3968 1367 }
1368 }
1369
81979445 1370 TLegend *leg = new TLegend(0.76, 0.6, 1., 0.9);
94f7dff7 1371 leg->SetBorderSize(0);
1372 leg->SetHeader("Tracklet/Track");
1373 leg->SetFillStyle(0);
147c3968 1374 h = hBar->ProjectionX("npxBin"); h->Reset();
81979445 1375 h->SetTitle("");
1376 h->GetYaxis()->SetRangeUser(1., 99.);
1377 h->GetYaxis()->SetMoreLogLabels();
1378 h->GetYaxis()->CenterTitle();
1379 h->GetYaxis()->SetTitleOffset(1.2);
147c3968 1380 h->SetYTitle("Prob. [%]");
81979445 1381 h->GetXaxis()->SetRangeUser(0.4, 12.);
1382 h->GetXaxis()->SetMoreLogLabels();
1383 h->GetXaxis()->CenterTitle();
147c3968 1384 h->Draw("p");
1385 for(Int_t itl(AliTRDgeometry::kNlayer); itl--;){
1386 g[itl]->Draw("pc");
1387 leg->AddEntry(g[itl], Form("n = %d", itl+1),"pl");
0c76cfa4 1388 }
147c3968 1389
0c76cfa4 1390 leg->Draw();
81979445 1391 gPad->SetLogx();gPad->SetLogy();
0c76cfa4 1392}
1393
1ee39b3a 1394//________________________________________________________
c0a6ac06 1395Bool_t AliTRDcheckDET::MakePlotPulseHeight(){
1ee39b3a 1396 //
1397 // Create Plot of the Pluse Height Spectrum
1398 //
c0a6ac06 1399 TCanvas *output = gPad->GetCanvas();
1400 output->Divide(2);
1401 output->cd(1);
1ee39b3a 1402 TH1 *h, *h1, *h2;
1403 TObjArray *arr = (TObjArray*)fContainer->FindObject("<PH>");
1404 h = (TH1F*)arr->At(0);
f985ef64 1405 if((Int_t)h->GetEntries()){
1406 h->SetMarkerStyle(24);
1407 h->SetMarkerColor(kBlack);
1408 h->SetLineColor(kBlack);
1409 h->GetYaxis()->SetTitleOffset(1.5);
1410 h->Draw("e1");
1411 // Trending for the pulse height: plateau value, slope and timebin of the maximum
1412 TLinearFitter fit(1,"pol1");
1413 Double_t time = 0.;
1414 for(Int_t itime = 10; itime <= 20; itime++){
1415 time = Double_t(itime);
1416 Double_t err(h->GetBinError(itime + 1));
1417 if(err>1.e-10) fit.AddPoint(&time, h->GetBinContent(itime + 1), err);
1418 }
1419 if(!fit.Eval()){
1420 Double_t plateau = fit.GetParameter(0) + 12 * fit.GetParameter(1);
1421 Double_t slope = fit.GetParameter(1);
1422 PutTrendValue("PHplateau", plateau);
1423 PutTrendValue("PHslope", slope);
1424 PutTrendValue("PHamplificationPeak", static_cast<Double_t>(h->GetMaximumBin()-1));
1425 AliDebug(1, Form("plateau %f, slope %f, MaxTime %f", plateau, slope, static_cast<Double_t>(h->GetMaximumBin()-1)));
1426 }
3907f080 1427 }
f985ef64 1428 // copy the second histogram in a new one with the same x-dimension as the phs with respect to time
1ee39b3a 1429 h1 = (TH1F *)arr->At(1);
1430 h2 = new TH1F("hphs1","Average PH", 31, -0.5, 30.5);
1431 for(Int_t ibin = h1->GetXaxis()->GetFirst(); ibin < h1->GetNbinsX(); ibin++)
1432 h2->SetBinContent(ibin, h1->GetBinContent(ibin));
1433 h2->SetMarkerStyle(22);
1434 h2->SetMarkerColor(kBlue);
1435 h2->SetLineColor(kBlue);
1436 h2->Draw("e1same");
1437 gPad->Update();
f985ef64 1438
1ee39b3a 1439// create axis according to the histogram dimensions of the original second histogram
1440 TGaxis *axis = new TGaxis(gPad->GetUxmin(),
1441 gPad->GetUymax(),
1442 gPad->GetUxmax(),
1443 gPad->GetUymax(),
1444 -0.08, 4.88, 510,"-L");
1445 axis->SetLineColor(kBlue);
1446 axis->SetLabelColor(kBlue);
1447 axis->SetTextColor(kBlue);
1448 axis->SetTitle("x_{0}-x_{c} [cm]");
1449 axis->Draw();
c0a6ac06 1450
1451 output->cd(2);
1452 TH2 *ph2d = (TH2F *)arr->At(2);
b795b480 1453 ph2d->GetYaxis()->SetTitleOffset(1.8);
c0a6ac06 1454 ph2d->SetStats(kFALSE);
1455 ph2d->Draw("colz");
1456 return kTRUE;
1ee39b3a 1457}
1458
44fd53ca 1459//________________________________________________________
1460void AliTRDcheckDET::MakePlotMeanClustersLayer(){
1461 //
1462 // Create Summary plot for the mean number of clusters per layer
1463 //
1464 TCanvas *output = gPad->GetCanvas();
1465 output->Divide(3,2);
1466 TObjArray *histos = (TObjArray *)fContainer->At(kNclustersLayer);
1467 if(!histos){
1468 AliWarning("Histos for each layer not found");
1469 return;
1470 }
1471 TProfile2D *hlayer = NULL;
1472 for(Int_t ily = 0; ily < AliTRDgeometry::kNlayer; ily++){
1473 hlayer = dynamic_cast<TProfile2D *>(histos->At(ily));
1474 output->cd(ily + 1);
1475 gPad->SetGrid(0,0);
1476 hlayer->Draw("colz");
1477 }
1478}
1479
1ee39b3a 1480//________________________________________________________
1481Bool_t AliTRDcheckDET::MakeBarPlot(TH1 *histo, Int_t color){
1482 //
1483 // Draw nice bar plots
1484 //
1485 if(!histo->GetEntries()) return kFALSE;
1486 histo->Scale(100./histo->Integral());
1487 histo->SetFillColor(color);
1488 histo->SetBarOffset(.2);
1489 histo->SetBarWidth(.6);
1490 histo->Draw("bar1");
1491 return kTRUE;
960a59e0 1492}