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