]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGPP/TOF/AliAnalysisTaskTOFqa.cxx
Added trending histo for fraction of enabled good channels
[u/mrichter/AliRoot.git] / PWGPP / TOF / AliAnalysisTaskTOFqa.cxx
CommitLineData
aac12889 1/* created by fbellini@cern.ch on 14/09/2010 */
154404b2 2/* last modified by fbellini on 18/06/2012 */
aac12889 3
4
5#ifndef ALIANALYSISTASKTOFQA_CXX
6#define ALIANALYSISTASKTOFQA_CXX
7
8#include "TChain.h"
9#include "TTree.h"
10#include "TH1F.h"
11#include "TH2F.h"
d18f2953 12#include "TProfile.h"
aac12889 13#include "TCanvas.h"
aac12889 14#include "AliAnalysisTaskSE.h"
15#include "AliAnalysisManager.h"
16#include "AliESDEvent.h"
17#include "AliESDInputHandler.h"
e866f574 18#include "AliESDpid.h"
7a9f204e 19#include "AliTOFPIDParams.h"
154404b2 20#include "AliCDBManager.h"
21#include "AliTOFcalib.h"
22#include "AliTOFT0maker.h"
23#include "AliTOFT0v1.h"
aac12889 24#include "AliAnalysisTaskTOFqa.h"
25#include "AliAnalysisFilter.h"
26#include "AliESDtrackCuts.h"
aac12889 27#include "AliLog.h"
aac12889 28#include "AliTOFRawStream.h"
29#include "AliTOFGeometry.h"
30
31ClassImp(AliAnalysisTaskTOFqa)
32
33//________________________________________________________________________
34AliAnalysisTaskTOFqa::AliAnalysisTaskTOFqa() :
111b2155 35 fRunNumber(0),
aac12889 36 fESD(0x0),
37 fTrackFilter(0x0),
38 fVertex(0x0),
0cf77d52 39 fESDpid(new AliESDpid()),
7a9f204e 40// fTOFT0v1(new AliTOFT0v1(fESDpid)),
aac12889 41 fNTOFtracks(0),
4170635c 42 fEnableAdvancedCheck(kFALSE),
43 fExpTimeBinWidth(24.4),
44 fExpTimeRangeMin(-25010.),
45 fExpTimeRangeMax(25010.),
46 fExpTimeSmallRangeMin(-5002.),
47 fExpTimeSmallRangeMax(5002.),
154404b2 48 fMyTimeZeroTOF(1e20),
49 fMyTimeZeroTOFsigma(1e20),
50 fMyTimeZeroTOFtracks(-1),
aac12889 51 fHlist(0x0),
e866f574 52 fHlistTimeZero(0x0),
4170635c 53 fHlistPID(0x0),
54 fHpos(0x0),
55 fHneg(0x0)
aac12889 56 {
57 // Default constructor
0cf77d52 58
e866f574 59 for (Int_t j=0;j<3;j++ ) {
60 if (j<3) fT0[j]=0.0;
61 fSigmaSpecie[j]=0.0;
62 fTrkExpTimes[j]=0.0;
63 fThExpTimes[j]=0.0;
64 }
65 }
aac12889 66//________________________________________________________________________
67AliAnalysisTaskTOFqa::AliAnalysisTaskTOFqa(const char *name) :
68 AliAnalysisTaskSE(name),
111b2155 69 fRunNumber(0),
aac12889 70 fESD(0x0),
71 fTrackFilter(0x0),
72 fVertex(0x0),
4170635c 73 fESDpid(new AliESDpid()),
7a9f204e 74 // fTOFT0v1(new AliTOFT0v1(fESDpid)),
aac12889 75 fNTOFtracks(0),
4170635c 76 fEnableAdvancedCheck(kFALSE),
77 fExpTimeBinWidth(24.4),
78 fExpTimeRangeMin(-25010.),
79 fExpTimeRangeMax(25010.),
80 fExpTimeSmallRangeMin(-5002.),
81 fExpTimeSmallRangeMax(5002.),
154404b2 82 fMyTimeZeroTOF(1e20),
83 fMyTimeZeroTOFsigma(1e20),
84 fMyTimeZeroTOFtracks(-1),
aac12889 85 fHlist(0x0),
e866f574 86 fHlistTimeZero(0),
4170635c 87 fHlistPID(0x0),
88 fHpos(0x0),
89 fHneg(0x0)
aac12889 90 {
91 // Constructor
92 // Define input and output slots here
93 Info("AliAnalysisTaskTOFqa","Calling Constructor");
94
e866f574 95 for (Int_t j=0;j<5;j++ ) {
96 if (j<3) fT0[j]=0.0;
97 fSigmaSpecie[j]=0.0;
98 fTrkExpTimes[j]=0.0;
99 fThExpTimes[j]=0.0;
100 }
aac12889 101 // Input slot #0 works with a TChain
102 DefineInput(0, TChain::Class());
103
104 // Output slot #0 writes into a TH1 container
105 // Output slot #1 writes into a user defined container
106 DefineOutput(1, TList::Class());
107 DefineOutput(2, TList::Class());
e866f574 108 DefineOutput(3, TList::Class());
4170635c 109 DefineOutput(4, TList::Class());
110 DefineOutput(5, TList::Class());
aac12889 111 }
112
113//________________________________________________________________________
114AliAnalysisTaskTOFqa::AliAnalysisTaskTOFqa(const AliAnalysisTaskTOFqa& copy)
115: AliAnalysisTaskSE(),
116 fRunNumber(copy.fRunNumber),
117 fESD(copy.fESD),
118 fTrackFilter(copy.fTrackFilter),
119 fVertex(copy.fVertex),
0cf77d52 120 fESDpid(copy.fESDpid),
7a9f204e 121 // fTOFT0v1(copy.fTOFT0v1),
aac12889 122 fNTOFtracks(copy.fNTOFtracks),
4170635c 123 fEnableAdvancedCheck(copy.fEnableAdvancedCheck),
124 fExpTimeBinWidth(copy.fExpTimeBinWidth),
125 fExpTimeRangeMin(copy.fExpTimeRangeMin),
126 fExpTimeRangeMax(copy.fExpTimeRangeMax),
127 fExpTimeSmallRangeMin(copy.fExpTimeSmallRangeMin),
128 fExpTimeSmallRangeMax(copy.fExpTimeSmallRangeMax),
154404b2 129 fMyTimeZeroTOF(copy.fMyTimeZeroTOF),
130 fMyTimeZeroTOFsigma(copy.fMyTimeZeroTOFsigma),
131 fMyTimeZeroTOFtracks(copy.fMyTimeZeroTOFtracks),
aac12889 132 fHlist(copy.fHlist),
e866f574 133 fHlistTimeZero(copy.fHlistTimeZero),
4170635c 134 fHlistPID(copy.fHlistPID),
135 fHpos(copy.fHpos),
136 fHneg(copy.fHneg)
aac12889 137{
138 // Copy constructor
e866f574 139 for (Int_t j=0;j<5;j++ ) {
140 if (j<3) fT0[j]=copy.fT0[j];
141 fSigmaSpecie[j]=copy.fSigmaSpecie[j];
142 fTrkExpTimes[j]=copy.fTrkExpTimes[j];
143 fThExpTimes[j]=copy.fThExpTimes[j];
144 }
0cf77d52 145
e866f574 146
aac12889 147}
148
149//___________________________________________________________________________
150AliAnalysisTaskTOFqa& AliAnalysisTaskTOFqa::operator=(const AliAnalysisTaskTOFqa& copy)
151{
152 //
153 // Assignment operator
154 //
155 if (this!=&copy) {
156 AliAnalysisTaskSE::operator=(copy) ;
157 fRunNumber=copy.fRunNumber;
158 fESD=copy.fESD;
159 fTrackFilter=copy.fTrackFilter;
160 fVertex=copy.fVertex;
e866f574 161 fESDpid=copy.fESDpid;
7a9f204e 162 // fTOFT0v1=copy.fTOFT0v1;
aac12889 163 fNTOFtracks=copy.fNTOFtracks;
4170635c 164 fEnableAdvancedCheck=copy.fEnableAdvancedCheck;
4170635c 165 fExpTimeBinWidth=copy.fExpTimeBinWidth;
166 fExpTimeRangeMin=copy.fExpTimeRangeMin;
167 fExpTimeRangeMax=copy.fExpTimeRangeMax;
168 fExpTimeSmallRangeMin=copy.fExpTimeSmallRangeMin;
169 fExpTimeSmallRangeMax=copy.fExpTimeSmallRangeMax;
154404b2 170 fMyTimeZeroTOF=copy.fMyTimeZeroTOF;
171 fMyTimeZeroTOFsigma=copy.fMyTimeZeroTOFsigma;
172 fMyTimeZeroTOFtracks=copy.fMyTimeZeroTOFtracks;
e866f574 173 for (Int_t j=0;j<5;j++ ) {
174 if (j<3) fT0[j]=copy.fT0[j];
175 fSigmaSpecie[j]=copy.fSigmaSpecie[j];
176 fTrkExpTimes[j]=copy.fTrkExpTimes[j];
177 fThExpTimes[j]=copy.fThExpTimes[j];
178 }
aac12889 179 fHlist=copy.fHlist;
e866f574 180 fHlistTimeZero=copy.fHlistTimeZero;
181 fHlistPID=copy.fHlistPID;
4170635c 182 fHpos=copy.fHpos;
183 fHneg=copy.fHneg;
aac12889 184 }
185 return *this;
186}
187
188//___________________________________________________________________________
189AliAnalysisTaskTOFqa::~AliAnalysisTaskTOFqa() {
190 //
191 //destructor
192 //
193
194 Info("~AliAnalysisTaskTOFqa","Calling Destructor");
e866f574 195 if (fESDpid) delete fESDpid;
7a9f204e 196 // if (fTOFT0v1) delete fTOFT0v1;
aac12889 197 if (fVertex) delete fVertex;
198 if (fTrackFilter) delete fTrackFilter;
4170635c 199 if (AliAnalysisManager::GetAnalysisManager()->IsProofMode()) return;
aac12889 200 if (fHlist) {
201 delete fHlist;
202 fHlist = 0;
203 }
e866f574 204 if (fHlistTimeZero) {
205 delete fHlistTimeZero;
206 fHlistTimeZero = 0;
207 }
208 if (fHlistPID){
209 delete fHlistPID;
210 fHlistPID = 0;
aac12889 211 }
4170635c 212 if (fHpos){
213 delete fHpos;
214 fHpos = 0;
215 }
216 if (fHneg){
217 delete fHneg;
4c00199c 218 fHneg = 0;
4170635c 219 }
aac12889 220}
221
aac12889 222//________________________________________________________________________
223void AliAnalysisTaskTOFqa::UserCreateOutputObjects()
224{
7a9f204e 225 //
226 AliAnalysisManager *man=AliAnalysisManager::GetAnalysisManager();
8910f819 227 if (!man) {
228 AliFatal("Analysis manager needed");
229 return;
230 }
7a9f204e 231 AliInputEventHandler *inputHandler=dynamic_cast<AliInputEventHandler*>(man->GetInputEventHandler());
8910f819 232 if (!inputHandler) {
233 AliFatal("Input handler needed");
234 return;
235 }
7a9f204e 236 //pid response object
237 fESDpid=(AliESDpid*)inputHandler->GetPIDResponse();
238 if (!fESDpid) AliError("PIDResponse object was not created");
239 // fESDpid->SetOADBPath("$ALICE_ROOT/OADB");
240
aac12889 241 //Defines output objects and histograms
242 Info("CreateOutputObjects","CreateOutputObjects (TList) of task %s", GetName());
243 OpenFile(1);
244 if (!fHlist) fHlist = new TList();
111b2155 245 fHlist->SetOwner(kTRUE);
e866f574 246 if (!fHlistTimeZero) fHlistTimeZero = new TList();
247 fHlistTimeZero->SetOwner(kTRUE);
248 if (!fHlistPID) fHlistPID = new TList();
249 fHlistPID->SetOwner(kTRUE);
4170635c 250 if (!fHpos) fHpos = new TList();
251 fHpos->SetOwner(kTRUE);
252 if (!fHneg) fHneg = new TList();
253 fHneg->SetOwner(kTRUE);
254
255 Int_t nExpTimeBins=1;
256 Int_t nExpTimeSmallBins=1;
257
258 if (fExpTimeRangeMax<fExpTimeRangeMin) {
259 SetExpTimeHistoRange(-25010.,25010.);
260 }
261 nExpTimeBins = TMath::Nint((fExpTimeRangeMax - fExpTimeRangeMin)/fExpTimeBinWidth);//ps
262 fExpTimeRangeMax=fExpTimeRangeMin+nExpTimeBins*fExpTimeBinWidth;//ps
263
264 if (fExpTimeSmallRangeMax<fExpTimeSmallRangeMin) {
265 SetExpTimeHistoSmallRange(-5002.,5002.);
266 }
267 nExpTimeSmallBins = TMath::Nint((fExpTimeSmallRangeMax - fExpTimeSmallRangeMin)/fExpTimeBinWidth);//ps
268 fExpTimeSmallRangeMax=fExpTimeSmallRangeMin+nExpTimeSmallBins*fExpTimeBinWidth;//ps
269
e866f574 270//0
4170635c 271 TH1I* hTOFmatchedESDperEvt = new TH1I("hTOFmatchedPerEvt", "Matched TOF tracks per event (|#eta| #leq 0.8 and pT #geq 0.3 GeV/c);TOF-matched ESD tracks;Events", 100, 0, 100) ;
4f2b01c6 272 //hTOFmatchedESDperEvt->Sumw2() ;
aac12889 273 hTOFmatchedESDperEvt->SetLineWidth(2);
274 hTOFmatchedESDperEvt->SetLineColor(kBlue);
e866f574 275 hTOFmatchedESDperEvt->SetMarkerStyle(20);
276 hTOFmatchedESDperEvt->SetMarkerSize(0.8);
277 hTOFmatchedESDperEvt->SetMarkerColor(kBlue);
aac12889 278 fHlist->AddLast(hTOFmatchedESDperEvt) ;
279 //1
280 TH1F* hTOFmatchedESDtime = new TH1F("hTOFmatchedESDtime", "Matched ESDs tracks: TOF Time spectrum; t [ns];Counts", 250, 0., 610. ) ;
4f2b01c6 281 // hTOFmatchedESDtime->Sumw2() ;
aac12889 282 hTOFmatchedESDtime->SetLineWidth(2);
283 hTOFmatchedESDtime->SetLineColor(kBlue);
284 hTOFmatchedESDtime->SetFillColor(kBlue);
e866f574 285 hTOFmatchedESDtime->SetDrawOption("BAR");
aac12889 286 fHlist->AddLast(hTOFmatchedESDtime) ;
287 //2
288 TH1F* hTOFmatchedESDrawTime = new TH1F("hTOFmatchedESDrawTime", "Matched ESDs tracks: TOF raw Time spectrum;t_{raw} [ns];Counts", 250, 0., 610.) ;
4f2b01c6 289 // hTOFmatchedESDrawTime->Sumw2() ;
aac12889 290 hTOFmatchedESDrawTime->SetLineWidth(2);
e866f574 291 hTOFmatchedESDrawTime->SetLineColor(kAzure+2);
292 hTOFmatchedESDrawTime->SetFillColor(kAzure+2);
293 hTOFmatchedESDrawTime->SetDrawOption("BAR");
aac12889 294 fHlist->AddLast(hTOFmatchedESDrawTime) ;
295 //3
296 TH1F* hTOFmatchedESDToT = new TH1F("hTOFmatchedESDToT", "Matched ESDs tracks: TOF ToT spectrum; ToT [ns];Counts",100, 0., 48.8) ;
4f2b01c6 297 // hTOFmatchedESDToT->Sumw2() ;
e866f574 298 hTOFmatchedESDToT->SetLineColor(kOrange+1);
299 hTOFmatchedESDToT->SetMarkerColor(kOrange+1);
300 hTOFmatchedESDToT->SetFillColor(kOrange+1);
301 hTOFmatchedESDToT->SetDrawOption("BAR");
aac12889 302 fHlist->AddLast(hTOFmatchedESDToT) ;
303 //4
e866f574 304 TH1F* hTOFmatchedESDtrkLength = new TH1F("hTOFmatchedESDtrkLength", "Matched ESDs tracks length; Track length [cm];Counts", 1200, -400., 800) ;
4f2b01c6 305 // hTOFmatchedESDtrkLength->Sumw2();
e866f574 306 hTOFmatchedESDtrkLength->SetLineColor(kViolet-3);
307 hTOFmatchedESDtrkLength->SetMarkerColor(kViolet-3);
308 hTOFmatchedESDtrkLength->SetFillColor(kViolet-3);
309 hTOFmatchedESDtrkLength->SetDrawOption("BAR");
310 fHlist->AddLast(hTOFmatchedESDtrkLength);
311 //5
312 TH1F* hTOFmatchedESDP = new TH1F("hTOFmatchedESDP", "TPC-TOF matched tracks momentum distribution (GeV/c); p (GeV/c);tracks", 500,0.,5.) ;
4f2b01c6 313 // hTOFmatchedESDP->Sumw2() ;
aac12889 314 hTOFmatchedESDP->SetLineColor(kBlue);
e866f574 315 hTOFmatchedESDP->SetMarkerStyle(20);
316 hTOFmatchedESDP->SetMarkerSize(0.7);
aac12889 317 hTOFmatchedESDP->SetMarkerColor(kBlue);
318 fHlist->AddLast(hTOFmatchedESDP) ;
e866f574 319 //6
aac12889 320 TH1F* hTOFmatchedESDPt = new TH1F("hTOFmatchedESDPt", "TPC-TOF matched tracks p_{T} distribution (GeV/c); p_{T}(GeV/c);tracks", 500,0.,5.) ;
4f2b01c6 321 // hTOFmatchedESDPt->Sumw2() ;
aac12889 322 hTOFmatchedESDPt->SetLineColor(kBlue);
e866f574 323 hTOFmatchedESDPt->SetMarkerStyle(21);
324 hTOFmatchedESDPt->SetMarkerSize(0.7);
aac12889 325 hTOFmatchedESDPt->SetMarkerColor(kBlue);
326 fHlist->AddLast(hTOFmatchedESDPt) ;
e866f574 327
aac12889 328 //7
c9232487 329 TH1F* hTOFmatchedESDeta = new TH1F("hTOFmatchedESDeta", "Matched ESDtracks #eta (p_{T} #geq 1.0 GeV/c); #eta;Counts", 200, -1., 1.) ;
4f2b01c6 330 // hTOFmatchedESDeta->Sumw2();
e866f574 331 hTOFmatchedESDeta->SetLineColor(kBlue);
332 fHlist->AddLast(hTOFmatchedESDeta) ;
aac12889 333 //8
c9232487 334 TH1F* hTOFmatchedESDphi = new TH1F("hTOFmatchedESDphi", "Matched ESDtracks #phi (p_{T} #geq 1.0 GeV/c); #phi (deg);Counts", 72, 0., 360.) ;
4f2b01c6 335 // hTOFmatchedESDphi->Sumw2();
e866f574 336 hTOFmatchedESDphi->SetLineColor(kBlue);
337 fHlist->AddLast(hTOFmatchedESDphi) ;
338
339 //9
572c1318 340 TH1F* hESDprimaryTrackP = new TH1F("hESDprimaryTrackP", "All ESDs tracks p distribution (GeV/c); p(GeV/c);tracks", 500, 0., 5.0) ;
4f2b01c6 341 // hESDprimaryTrackP->Sumw2();
aac12889 342 hESDprimaryTrackP->SetLineWidth(1);
e866f574 343 hESDprimaryTrackP->SetMarkerStyle(24);
344 hESDprimaryTrackP->SetMarkerSize(0.7);
345 hESDprimaryTrackP->SetMarkerColor(kRed);
346 hESDprimaryTrackP->SetLineColor(kRed);
aac12889 347 fHlist->AddLast(hESDprimaryTrackP);
e866f574 348 //10
349 TH1F* hESDprimaryTrackPt = new TH1F("hESDprimaryTrackPt", "ESDs primary tracks p_{T} distribution (GeV/c); p_{T}(GeV/c);tracks", 500, 0.0, 5.0) ;
4f2b01c6 350 // hESDprimaryTrackPt->Sumw2();
aac12889 351 hESDprimaryTrackPt->SetLineWidth(1);
e866f574 352 hESDprimaryTrackPt->SetMarkerStyle(25);
353 hESDprimaryTrackPt->SetMarkerSize(0.7);
354 hESDprimaryTrackPt->SetLineColor(kRed);
355 hESDprimaryTrackPt->SetMarkerColor(kRed);
aac12889 356 fHlist->AddLast(hESDprimaryTrackPt);
aac12889 357 //11
c9232487 358 TH1F* hTOFprimaryESDeta = new TH1F("hTOFprimaryESDeta", "Primary ESDtracks #eta (p_{T} #geq 1.0 GeV/c); #eta;Counts",200, -1., 1.) ;
4f2b01c6 359 // hTOFprimaryESDeta->Sumw2();
e866f574 360 hTOFprimaryESDeta->SetLineColor(kRed);
aac12889 361 fHlist->AddLast(hTOFprimaryESDeta) ;
362 //12
c9232487 363 TH1F* hTOFprimaryESDphi = new TH1F("hTOFprimaryESDphi", "Primary ESDtracks #phi (p_{T} #geq 1.0 GeV/c);#phi (deg);Counts", 72, 0., 360.) ;
4f2b01c6 364 // hTOFprimaryESDphi->Sumw2();
e866f574 365 hTOFprimaryESDphi->SetLineColor(kRed);
aac12889 366 fHlist->AddLast(hTOFprimaryESDphi) ;
e866f574 367 //13
368 TH2F* hTOFmatchedDxVsPtPos = new TH2F("hTOFmatchedDxVsPtPos", "Dx vs p_{T} for positive tracks;p_{T} (GeV/c); Dx [cm]; hits", 500,0.,5.,200, -10., 10.) ;
4f2b01c6 369 // hTOFmatchedDxVsPtPos->Sumw2();
e866f574 370 fHlist->AddLast(hTOFmatchedDxVsPtPos) ;
371 //14
372 TH2F* hTOFmatchedDxVsPtNeg = new TH2F("hTOFmatchedDxVsPtNeg", "Dx vs p_{T} for negative tracks;p_{T} (GeV/c); Dx [cm]; hits", 500,0.,5.,200, -10., 10.) ;
4f2b01c6 373 // hTOFmatchedDxVsPtNeg->Sumw2();
e866f574 374 fHlist->AddLast(hTOFmatchedDxVsPtNeg) ;
375
376 //15
377 TH2F* hTOFmatchedDzVsStrip = new TH2F("hTOFmatchedDzVsStrip", "Dz vs strip; strip (#eta); Dz [cm]; hits", 92,0.,92.,200, -10., 10.) ;
4f2b01c6 378 // hTOFmatchedDzVsStrip->Sumw2();
e866f574 379 fHlist->AddLast(hTOFmatchedDzVsStrip) ;
d18f2953 380
381 //16
382 TProfile *hTOFmatchedDxVsCh = new TProfile("hTOFmatchedDxVsCh","Dx vs channel; channel ID; Dx [cm]", 157248., 0.,157248.);
383 fHlist->AddLast(hTOFmatchedDxVsCh);
384
385 //17
386 TProfile *hTOFmatchedDzVsCh = new TProfile("hTOFmatchedDzVsCh","Dz vs channel; channel ID; Dz [cm]", 157248., 0.,157248.);
387 fHlist->AddLast(hTOFmatchedDzVsCh);
388
e866f574 389 //----------------------------------------------timeZero QA plots
390 //TimeZero 0
391 TH1D* hEventT0DetAND = new TH1D("hEventT0DetAND", "Event timeZero from T0AC detector ; t0 [ps]; events", 1000, -25000., 25000. ) ;
4f2b01c6 392 // hEventT0DetAND->Sumw2() ;
aac12889 393 hEventT0DetAND->SetLineWidth(2);
394 hEventT0DetAND->SetLineColor(kRed);
395 hEventT0DetAND->SetFillColor(kRed);
e866f574 396 fHlistTimeZero->AddLast(hEventT0DetAND) ;
aac12889 397
e866f574 398 //TImeZero 1
399 TH1D* hEventT0DetA = new TH1D("hEventT0DetA", "Event timeZero from T0A detector; t0 [ps]; events", 1000, -25000., 25000. ) ;
4f2b01c6 400 // hEventT0DetA->Sumw2() ;
aac12889 401 hEventT0DetA->SetLineWidth(2);
402 hEventT0DetA->SetLineColor(kBlue);
403 hEventT0DetA->SetFillColor(kBlue);
e866f574 404 fHlistTimeZero->AddLast(hEventT0DetA) ;
aac12889 405
e866f574 406 //TImeZero 2
407 TH1D* hEventT0DetC = new TH1D("hEventT0DetC", "Event timeZero from T0C detector; t0 [ps]; events", 1000, -25000., 25000.) ;
4f2b01c6 408 // hEventT0DetC->Sumw2() ;
aac12889 409 hEventT0DetC->SetLineWidth(2);
410 hEventT0DetC->SetLineColor(kGreen);
411 hEventT0DetC->SetFillColor(kGreen);
e866f574 412 fHlistTimeZero->AddLast(hEventT0DetC);
413
414 //TimeZero 3
415 TH1F* hT0DetRes = new TH1F("hT0DetRes", "T0 detector (T0A-T0C)/2; (T0A-T0C)/2 [ps]; events", 200, -500.,500. ) ;
4f2b01c6 416 // hT0DetRes->Sumw2() ;
e866f574 417 hT0DetRes->SetMarkerStyle(24);
418 hT0DetRes->SetMarkerSize(0.7);
419 hT0DetRes->SetMarkerColor(kMagenta+2);
420 hT0DetRes->SetLineColor(kMagenta+2);
421 hT0DetRes->SetFillColor(kMagenta+2);
422 fHlistTimeZero->AddLast(hT0DetRes) ;
423
424 //timeZero 4
425 TH1F* hT0fill = new TH1F("hT0fill", "Event timeZero of fill; t0 [ps]; events", 1000, -25000., 25000. ) ;
4f2b01c6 426 // hT0fill->Sumw2() ;
e866f574 427 hT0fill->SetMarkerStyle(20);
428 hT0fill->SetMarkerColor(kBlack);
429 hT0fill->SetLineColor(kBlack);
430 fHlistTimeZero->AddLast(hT0fill) ;
431
432 //TimeZero 5
433 TH1F* hT0TOF = new TH1F("hT0TOF", "Event timeZero estimated by TOF; t0 [ps]; events", 1000, -25000., 25000. ) ;
4f2b01c6 434 // hT0TOF->Sumw2() ;
e866f574 435 hT0TOF->SetMarkerStyle(20);
436 hT0TOF->SetMarkerColor(kBlue);
437 hT0TOF->SetLineColor(kBlue);
438 hT0TOF->SetFillColor(kBlue);
439 fHlistTimeZero->AddLast(hT0TOF) ;
440
441
442 //timeZero 6
443 TH1F* hT0T0 = new TH1F("hT0T0", "Event timeZero measured by T0 detector (best between AC, A, C); t0 [ps]; events", 1000, -25000.,25000. ) ;
4f2b01c6 444 // hT0T0->Sumw2() ;
e866f574 445 hT0T0->SetMarkerStyle(20);
446 hT0T0->SetMarkerColor(kGreen+1);
447 hT0T0->SetLineColor(kGreen+1);
448 hT0T0->SetFillColor(kGreen+1);
449 fHlistTimeZero->AddLast(hT0T0) ;
450
451 //timeZero 7
452 TH1F* hT0best = new TH1F("hT0best", "Event timeZero estimated as T0best; t0 [ps]; events", 1000, -25000.,25000. ) ;
4f2b01c6 453 // hT0best->Sumw2() ;
e866f574 454 hT0best->SetMarkerStyle(20);
455 hT0best->SetMarkerColor(kRed);
456 hT0best->SetLineColor(kRed);
457 hT0best->SetFillColor(kRed);
458 fHlistTimeZero->AddLast(hT0best) ;
459
460 //TimeZero 8
572c1318 461 TH1F* hT0fillRes = new TH1F("hT0fillRes", "Resolution of fillT0; #sigma_{fillT0} [ps];events", 250, 0.,250. ) ;
4f2b01c6 462 // hT0fillRes->Sumw2() ;
e866f574 463 hT0fillRes->SetMarkerStyle(21);
464 hT0fillRes->SetMarkerColor(kBlack);
465 hT0fillRes->SetLineColor(kBlack);
466 hT0fillRes->SetFillColor(kBlack);
467 fHlistTimeZero->AddLast(hT0fillRes) ;
aac12889 468
e866f574 469 //TimeZero 9
470 TH1F* hT0TOFRes = new TH1F("hT0TOFRes", "Resolution of timeZero from TOF; #sigma_{TOFT0} [ps];events", 250, 0.,250. ) ;
4f2b01c6 471 // hT0TOFRes->Sumw2() ;
e866f574 472 hT0TOFRes->SetLineWidth(1);
473 hT0TOFRes->SetMarkerStyle(21);
474 hT0TOFRes->SetMarkerColor(kBlue);
475 hT0TOFRes->SetLineColor(kBlue);
476 hT0TOFRes->SetFillColor(kBlue);
477 fHlistTimeZero->AddLast(hT0TOFRes) ;
aac12889 478
e866f574 479 //TimeZero 10
572c1318 480 TH1F* hT0T0Res = new TH1F("hT0T0Res", "Resolution of timeZero from T0;#sigma_{T0T0} [ps];events", 250, -0., 250. ) ;
4f2b01c6 481 // hT0T0Res->Sumw2() ;
572c1318 482 hT0T0Res->SetMarkerStyle(21);
483 hT0T0Res->SetMarkerColor(kGreen+1);
484 hT0T0Res->SetLineColor(kGreen+1);
485 hT0T0Res->SetFillColor(kGreen+1);
486 fHlistTimeZero->AddLast(hT0T0Res) ;
e866f574 487
488 //TimeZero 11
489 TH1F* hT0bestRes = new TH1F("hT0bestRes", "Resolution of bestT0; #sigma_{bestT0} [ps];events", 250, 0.,250. ) ;
4f2b01c6 490 // hT0bestRes->Sumw2() ;
572c1318 491 hT0bestRes->SetMarkerStyle(21);
492 hT0bestRes->SetMarkerColor(kRed);
493 hT0bestRes->SetLineColor(kRed);
494 hT0bestRes->SetFillColor(kRed);
e866f574 495 fHlistTimeZero->AddLast(hT0bestRes) ;
496
497 //timeZero 12
498 TH2F* hT0TOFvsNtrk = new TH2F("hT0TOFvsNtrk", "Event timeZero estimated by TOF vs. number of tracks in event;TOF-matching tracks; t0 [ps]", 100, 0., 100.,1000,-25000.,25000. ) ;
4f2b01c6 499 // hT0TOFvsNtrk->Sumw2() ;
e866f574 500 fHlistTimeZero->AddLast(hT0TOFvsNtrk) ;
501
4170635c 502 //TimeZero 13
503 TH2F* hEventT0MeanVsVtx = new TH2F("hEventT0MeanVsVtx", "T0 detector: mean vs vertex ; (t0_{A}-t0_{C})/2 [ns]; (t0_{A}+t0_{C})/2 [ns]; events", 500, -25., 25., 500, -25., 25. ) ;
4f2b01c6 504 // hEventT0MeanVsVtx->Sumw2() ;
4170635c 505 fHlistTimeZero->AddLast(hEventT0MeanVsVtx) ;
506
507 //TimeZero 14
508 TH2F* hEventV0MeanVsVtx = new TH2F("hEventV0MeanVsVtx", "V0 detector: mean vs vertex ; (V0_{A}-V0_{C})/2 [ns]; (V0_{A}+V0_{C})/2 [ns]; events", 500, -50., 50., 500, -50., 50. ) ;
4f2b01c6 509 // hEventV0MeanVsVtx->Sumw2() ;
4170635c 510 fHlistTimeZero->AddLast(hEventV0MeanVsVtx) ;
c9232487 511
512 const Double_t startTimeMomBins[13]={ 0.0, 0.3, 0.5, 0.6, 0.7, 0.8, 0.9, 1., 1.2, 1.5, 2., 3., 10.};
513
514 //TimeZero 15
515 TH2F* hStartTimeMaskMatched = new TH2F("hStartTimeMaskMatched","Start Time Mask vs p bin for matched tracks; p(GeV/c);", 12, startTimeMomBins, 8,0.,8.);
4f2b01c6 516 // hStartTimeMaskMatched->Sumw2();
c9232487 517 hStartTimeMaskMatched->GetYaxis()->SetBinLabel(1,"fill_t0");
518 hStartTimeMaskMatched->GetYaxis()->SetBinLabel(2,"tof_t0");
519 hStartTimeMaskMatched->GetYaxis()->SetBinLabel(3,"T0AC");
520 hStartTimeMaskMatched->GetYaxis()->SetBinLabel(4,"T0AC & tof_t0");
521 hStartTimeMaskMatched->GetYaxis()->SetBinLabel(5,"T0A");
522 hStartTimeMaskMatched->GetYaxis()->SetBinLabel(6,"T0A & tof_t0");
523 hStartTimeMaskMatched->GetYaxis()->SetBinLabel(7,"T0C");
524 hStartTimeMaskMatched->GetYaxis()->SetBinLabel(8,"T0C & tof_t0");
525 fHlistTimeZero->AddLast(hStartTimeMaskMatched);
526
527 //TimeZero 15
528 TH2F* hStartTimeMask = new TH2F("hStartTimeMask","Start Time Mask vs p bin for primary tracks; p(GeV/c);", 12, startTimeMomBins, 8,0.,8.);
4f2b01c6 529 // hStartTimeMask->Sumw2();
c9232487 530 hStartTimeMask->GetYaxis()->SetBinLabel(1,"fill_t0");
531 hStartTimeMask->GetYaxis()->SetBinLabel(2,"tof_t0");
532 hStartTimeMask->GetYaxis()->SetBinLabel(3,"T0AC");
533 hStartTimeMask->GetYaxis()->SetBinLabel(4,"T0AC & tof_t0");
534 hStartTimeMask->GetYaxis()->SetBinLabel(5,"T0A");
535 hStartTimeMask->GetYaxis()->SetBinLabel(6,"T0A & tof_t0");
536 hStartTimeMask->GetYaxis()->SetBinLabel(7,"T0C");
537 hStartTimeMask->GetYaxis()->SetBinLabel(8,"T0C & tof_t0");
538 fHlistTimeZero->AddLast(hStartTimeMask);
539
e866f574 540//--------------------------------------------- TOF PID QA plots
541 //PID 0
4170635c 542 TH2F* hTOFmatchedESDpVsBeta = new TH2F("hTOFmatchedESDpVsBeta", "Matched ESDs tracks beta vs. p; p(GeV/c); beta", 500, 0.0, 5.0, 150, 0., 1.5) ;
e866f574 543 fHlistPID->AddLast(hTOFmatchedESDpVsBeta);
111b2155 544
e866f574 545 //PID 1
4170635c 546 TH1F* hTOFmatchedMass= new TH1F("hTOFmatchedMass","Matched ESD tracks mass distribution - (L>0); M (GeV/c^{2}); entries", 500, 0., 5. );
4f2b01c6 547 // hTOFmatchedMass->Sumw2();
e866f574 548 hTOFmatchedMass->SetLineWidth(2);
549 hTOFmatchedMass->SetLineColor(kBlue);
550 hTOFmatchedMass->SetLineColor(kBlue);
551 fHlistPID->AddLast(hTOFmatchedMass);
552
553 //PID 2
4170635c 554 TH2F* hTOFmatchedExpTimePiVsEta = new TH2F("hTOFmatchedExpTimePiVsEta", "ESDs t_{TOF}-t_{#pi,exp} (from tracking); strip (#eta); t_{TOF}-t_{#pi,exp} [ps]", 92, 0, 92, nExpTimeSmallBins, fExpTimeSmallRangeMin, fExpTimeSmallRangeMax) ;
4f2b01c6 555 // hTOFmatchedExpTimePiVsEta->Sumw2() ;
e866f574 556 fHlistPID->AddLast(hTOFmatchedExpTimePiVsEta) ;
557
558 //PID 3
4170635c 559 TH1F* hTOFmatchedExpTimePi = new TH1F("hTOFmatchedExpTimePi", "ESDs t_{TOF}-t_{#pi,exp} (from tracking); t_{TOF}-t_{#pi,exp} [ps];Counts", nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 560 // hTOFmatchedExpTimePi->Sumw2() ;
e866f574 561 hTOFmatchedExpTimePi->SetLineWidth(1);
562 hTOFmatchedExpTimePi->SetLineColor(kRed);
563 hTOFmatchedExpTimePi->SetMarkerStyle(20);
564 hTOFmatchedExpTimePi->SetMarkerSize(0.8);
565 hTOFmatchedExpTimePi->SetMarkerColor(kRed);
566 fHlistPID->AddLast(hTOFmatchedExpTimePi) ;
7a9f204e 567
568 //PID 3bis
569 TH1F* hExpTimePiFillSub = new TH1F("hExpTimePiFillSub", "ESDs t_{TOF}-t_{#pi,exp}-t_{0,FILL} (from tracking); t_{TOF}-t_{#pi,exp} [ps];Counts", nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 570 // hExpTimePiFillSub->Sumw2() ;
7a9f204e 571 hExpTimePiFillSub->SetLineWidth(1);
572 hExpTimePiFillSub->SetLineColor(kRed);
573 hExpTimePiFillSub->SetMarkerStyle(20);
574 hExpTimePiFillSub->SetMarkerSize(0.8);
575 hExpTimePiFillSub->SetMarkerColor(kRed);
576 fHlistPID->AddLast(hExpTimePiFillSub) ;
577
e866f574 578
579 //PID 4
4170635c 580 TH2F* hTOFmatchedExpTimePiVsP = new TH2F("hTOFmatchedExpTimePiVsP", "ESDs t_{TOF}-t_{#pi,exp} (from tracking) Vs P ; p (GeV/c);t_{TOF}-t_{#pi,exp} [ps];Counts",500, 0.,5., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 581 // hTOFmatchedExpTimePiVsP->Sumw2() ;
e866f574 582 fHlistPID->AddLast(hTOFmatchedExpTimePiVsP) ;
583
584 //PID 5
4170635c 585 TH1F* hTOFtheoreticalExpTimePi = new TH1F("hTOFtheoreticalExpTimePi", "ESDs t_{TOF}-t_{#pi,exp} (theoretical); t_{TOF}-t_{#pi,exp} [ps];Counts", nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 586 // hTOFtheoreticalExpTimePi->Sumw2() ;
e866f574 587 hTOFtheoreticalExpTimePi->SetLineWidth(1);
588 hTOFtheoreticalExpTimePi->SetLineColor(kRed);
589 hTOFtheoreticalExpTimePi->SetMarkerStyle(24);
590 hTOFtheoreticalExpTimePi->SetMarkerSize(0.8);
591 hTOFtheoreticalExpTimePi->SetMarkerColor(kRed);
592 fHlistPID->AddLast(hTOFtheoreticalExpTimePi) ;
593
594 //PID 6
4170635c 595 TH2F* hTOFtheoreticalExpTimePiVsP = new TH2F("hTOFtheoreticalExpTimePiVsP", "ESDs t_{TOF}-t_{#pi,exp} (theoretical) Vs P ; p (GeV/c);t_{TOF}-t_{#pi,exp} [ps];Counts",500, 0.,5., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 596 // hTOFtheoreticalExpTimePiVsP->Sumw2() ;
e866f574 597 fHlistPID->AddLast(hTOFtheoreticalExpTimePiVsP) ;
598
599 //PID 7
600 TH2F* hTOFExpSigmaPi = new TH2F("hTOFExpSigmaPi", "ESDs TOF n#sigma_{PID,#pi} vs p_{T}; p_{T} (GeV/c); n#sigma_{PID,#pi};Tracks", 500,0.,5.,200, -10., 10. ) ;
4f2b01c6 601 // hTOFExpSigmaPi->Sumw2() ;
e866f574 602 fHlistPID->AddLast(hTOFExpSigmaPi) ;
603
604 //PID 8
4170635c 605 TH1F* hTOFmatchedExpTimeKa = new TH1F("hTOFmatchedExpTimeKa", "ESDs t_{TOF}-t_{K,exp} (from tracking); t_{TOF}-t_{K,exp} [ps];Counts", nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 606 // hTOFmatchedExpTimeKa->Sumw2() ;
e866f574 607 hTOFmatchedExpTimeKa->SetLineWidth(1);
608 hTOFmatchedExpTimeKa->SetLineColor(kBlue);
609 hTOFmatchedExpTimeKa->SetMarkerStyle(21);
610 hTOFmatchedExpTimeKa->SetMarkerSize(0.8);
611 hTOFmatchedExpTimeKa->SetMarkerColor(kBlue);
612 fHlistPID->AddLast(hTOFmatchedExpTimeKa);
613
614 //PID 9
4170635c 615 TH2F* hTOFmatchedExpTimeKaVsP = new TH2F("hTOFmatchedExpTimeKaVsP", "ESDs t_{TOF}-t_{K,exp} (from tracking) Vs P ; p (GeV/c);t_{TOF}-t_{K,exp} [ps];Counts",500, 0.,5.,nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 616 // hTOFmatchedExpTimeKaVsP->Sumw2() ;
e866f574 617 fHlistPID->AddLast(hTOFmatchedExpTimeKaVsP) ;
618
619 //PID 10
4170635c 620 TH1F* hTOFtheoreticalExpTimeKa = new TH1F("hTOFtheoreticalExpTimeKa", "ESDs t_{TOF}-t_{K,exp} (theoretical); t_{TOF}-t_{K,exp} [ps];Counts", nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 621 // hTOFtheoreticalExpTimeKa->Sumw2() ;
e866f574 622 hTOFtheoreticalExpTimeKa->SetLineWidth(1);
623 hTOFtheoreticalExpTimeKa->SetLineColor(kBlue);
624 hTOFtheoreticalExpTimeKa->SetMarkerStyle(24);
625 hTOFtheoreticalExpTimeKa->SetMarkerSize(0.8);
626 hTOFtheoreticalExpTimeKa->SetMarkerColor(kBlue);
627 fHlistPID->AddLast(hTOFtheoreticalExpTimeKa) ;
628
629 //PID 11
4170635c 630 TH2F* hTOFtheoreticalExpTimeKaVsP = new TH2F("hTOFtheoreticalExpTimeKaVsP", "ESDs t_{TOF}-t_{K,exp} (theoretical) Vs P ; p (GeV/c);t_{TOF}-t_{K,exp} [ps];Counts",500, 0.,5., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 631 // hTOFtheoreticalExpTimeKaVsP->Sumw2() ;
e866f574 632 fHlistPID->AddLast(hTOFtheoreticalExpTimeKaVsP) ;
633
634 //PID 12
635 TH2F* hTOFExpSigmaKa = new TH2F("hTOFExpSigmaKa", "ESDs TOF n#sigma_{PID,K} vs p_{T}; p_{T} (GeV/c);n#sigma_{PID,K};Tracks", 500, 0.,5.,200, -10., 10. ) ;
4f2b01c6 636 // hTOFExpSigmaKa->Sumw2() ;
e866f574 637 fHlistPID->AddLast(hTOFExpSigmaKa) ;
638
639 //PID 13
4170635c 640 TH1F* hTOFmatchedExpTimePro = new TH1F("hTOFmatchedExpTimePro", "ESDs t_{TOF}-t_{p,exp} (from tracking); t_{TOF}-t_{p,exp} [ps];Counts", nExpTimeBins, fExpTimeRangeMin,fExpTimeRangeMax) ;
4f2b01c6 641 // hTOFmatchedExpTimePro->Sumw2() ;
e866f574 642 hTOFmatchedExpTimePro->SetLineWidth(1);
643 hTOFmatchedExpTimePro->SetLineColor(kGreen+1);
644 hTOFmatchedExpTimePro->SetMarkerStyle(22);
645 hTOFmatchedExpTimePro->SetMarkerSize(0.8);
646 hTOFmatchedExpTimePro->SetMarkerColor(kGreen+1);
647 fHlistPID->AddLast(hTOFmatchedExpTimePro) ;
648
649 //PID 14
4170635c 650 TH2F* hTOFmatchedExpTimeProVsP = new TH2F("hTOFmatchedExpTimeProVsP", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P ; p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 651 // hTOFmatchedExpTimeProVsP->Sumw2() ;
e866f574 652 fHlistPID->AddLast(hTOFmatchedExpTimeProVsP) ;
653
654 //PID 15
4170635c 655 TH1F* hTOFtheoreticalExpTimePro = new TH1F("hTOFtheoreticalExpTimePro", "ESDs t_{TOF}-t_{p,exp} (theoretical); t_{TOF}-t_{p,exp} [ps];Counts", nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 656 // hTOFtheoreticalExpTimePro->Sumw2() ;
e866f574 657 hTOFtheoreticalExpTimePro->SetLineWidth(1);
658 hTOFtheoreticalExpTimePro->SetLineColor(kGreen+1);
659 hTOFtheoreticalExpTimePro->SetMarkerStyle(26);
660 hTOFtheoreticalExpTimePro->SetMarkerSize(0.8);
661 hTOFtheoreticalExpTimePro->SetMarkerColor(kGreen+1);
662 fHlistPID->AddLast(hTOFtheoreticalExpTimePro) ;
663
664 //PID 16
4170635c 665 TH2F* hTOFtheoreticalExpTimeProVsP = new TH2F("hTOFtheoreticalExpTimeProVsP", "ESDs t_{TOF}-t_{p,exp} (theoretical) Vs P ; p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 666 // hTOFtheoreticalExpTimeProVsP->Sumw2() ;
e866f574 667 fHlistPID->AddLast(hTOFtheoreticalExpTimeProVsP) ;
668
669 //PID 17
670 TH2F* hTOFExpSigmaPro = new TH2F("hTOFExpSigmaPro", "ESDs TOF n#sigma_{PID,p} vs. p_{T}; p_{T} (GeV/c); n#sigma_{PID,p};Tracks", 500, 0.,5.,200, -10., 10. ) ;
4f2b01c6 671 // hTOFExpSigmaPro->Sumw2() ;
e866f574 672 fHlistPID->AddLast(hTOFExpSigmaPro) ;
673
4170635c 674 //PID 18
675 TH2F* hTOFmatchedExpTimePiVsPTRDPos = new TH2F("hTOFmatchedExpTimePiVsPTRDPos", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (#phi_{outerTPC}#leq 30 || 150 #leq#phi_{outerTPC}#leq 230 || #phi_{outerTPC}#geq 310 ) ; p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 676 // hTOFmatchedExpTimePiVsPTRDPos->Sumw2() ;
4170635c 677 if (fEnableAdvancedCheck)
678 fHlistPID->AddLast(hTOFmatchedExpTimePiVsPTRDPos) ;
679
680 //PID 19
681 TH2F* hTOFmatchedExpTimePiVsPNoTRDPos = new TH2F("hTOFmatchedExpTimePiVsPNoTRDPos", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (50 #leq#phi_{outerTPC}#leq 130 || 250 #leq#phi_{outerTPC}#leq 290); p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 682 // hTOFmatchedExpTimePiVsPNoTRDPos->Sumw2() ;
4170635c 683 if (fEnableAdvancedCheck)
684 fHlistPID->AddLast(hTOFmatchedExpTimePiVsPNoTRDPos) ;
685
686 //PID 20
687 TH2F* hTOFmatchedExpTimePiVsPTRDNeg = new TH2F("hTOFmatchedExpTimePiVsPTRDNeg", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (#phi_{outerTPC}#leq 30 || 150 #leq#phi_{outerTPC}#leq 230 || #phi_{outerTPC}#geq 310 ) ; p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 688 // hTOFmatchedExpTimePiVsPTRDNeg->Sumw2() ;
4170635c 689 if (fEnableAdvancedCheck)
690 fHlistPID->AddLast(hTOFmatchedExpTimePiVsPTRDNeg) ;
691
692 //PID 21
693 TH2F* hTOFmatchedExpTimePiVsPNoTRDNeg = new TH2F("hTOFmatchedExpTimePiVsPNoTRDNeg", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (50 #leq#phi_{outerTPC}#leq 130 || 250 #leq#phi_{outerTPC}#leq 290); p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5.,nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 694 // hTOFmatchedExpTimePiVsPNoTRDNeg->Sumw2() ;
4170635c 695 if (fEnableAdvancedCheck)
696 fHlistPID->AddLast(hTOFmatchedExpTimePiVsPNoTRDNeg) ;
697
698 //PID 22
699 TH2F* hTOFmatchedExpTimeKaVsPTRDPos = new TH2F("hTOFmatchedExpTimeKaVsPTRDPos", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (#phi_{outerTPC}#leq 30 || 150 #leq#phi_{outerTPC}#leq 230 || #phi_{outerTPC}#geq 310 ) ; p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5.,nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 700 // hTOFmatchedExpTimeKaVsPTRDPos->Sumw2() ;
4170635c 701 if (fEnableAdvancedCheck)
702 fHlistPID->AddLast(hTOFmatchedExpTimeKaVsPTRDPos) ;
703
704 //PID 23
705 TH2F* hTOFmatchedExpTimeKaVsPNoTRDPos = new TH2F("hTOFmatchedExpTimeKaVsPNoTRDPos", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (50 #leq#phi_{outerTPC}#leq 130 || 250 #leq#phi_{outerTPC}#leq 290); p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5.,nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 706 // hTOFmatchedExpTimeKaVsPNoTRDPos->Sumw2() ;
4170635c 707 if (fEnableAdvancedCheck)
708 fHlistPID->AddLast(hTOFmatchedExpTimeKaVsPNoTRDPos) ;
709
710 //PID 24
711 TH2F* hTOFmatchedExpTimeKaVsPTRDNeg = new TH2F("hTOFmatchedExpTimeKaVsPTRDNeg", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (#phi_{outerTPC}#leq 30 || 150 #leq#phi_{outerTPC}#leq 230 || #phi_{outerTPC}#geq 310 ) ; p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5.,nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 712 // hTOFmatchedExpTimeKaVsPTRDNeg->Sumw2() ;
4170635c 713 if (fEnableAdvancedCheck)
714 fHlistPID->AddLast(hTOFmatchedExpTimeKaVsPTRDNeg) ;
715
716 //PID 25
717 TH2F* hTOFmatchedExpTimeKaVsPNoTRDNeg = new TH2F("hTOFmatchedExpTimeKaVsPNoTRDNeg", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (50 #leq#phi_{outerTPC}#leq 130 || 250 #leq#phi_{outerTPC}#leq 290); p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5.,nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 718 // hTOFmatchedExpTimeKaVsPNoTRDNeg->Sumw2() ;
4170635c 719 if (fEnableAdvancedCheck)
720 fHlistPID->AddLast(hTOFmatchedExpTimeKaVsPNoTRDNeg) ;
721
722 //PID 26
723 TH2F* hTOFmatchedExpTimeProVsPTRDPos = new TH2F("hTOFmatchedExpTimeProVsPTRDPos", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (#phi_{outerTPC}#leq 30 || 150 #leq#phi_{outerTPC}#leq 230 || #phi_{outerTPC}#geq 310 ) ; p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5.,nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 724 // hTOFmatchedExpTimeProVsPTRDPos->Sumw2() ;
4170635c 725 if (fEnableAdvancedCheck)
726 fHlistPID->AddLast(hTOFmatchedExpTimeProVsPTRDPos) ;
727
728 //PID 27
729 TH2F* hTOFmatchedExpTimeProVsPNoTRDPos = new TH2F("hTOFmatchedExpTimeProVsPNoTRDPos", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (50 #leq#phi_{outerTPC}#leq 130 || 250 #leq#phi_{outerTPC}#leq 290); p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5.,nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 730 // hTOFmatchedExpTimeProVsPNoTRDPos->Sumw2() ;
4170635c 731 if (fEnableAdvancedCheck)
732 fHlistPID->AddLast(hTOFmatchedExpTimeProVsPNoTRDPos) ;
733
734 //PID 28
572c1318 735 TH2F* hTOFmatchedExpTimeProVsPTRDNeg = new TH2F("hTOFmatchedExpTimeProVsPTRDNeg", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (#phi_{outerTPC}#leq 30 || 150 #leq#phi_{outerTPC}#leq 230 || #phi_{outerTPC}#geq 310 ) ; p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5.,nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 736 // hTOFmatchedExpTimeProVsPTRDNeg->Sumw2() ;
4170635c 737 if (fEnableAdvancedCheck)
738 fHlistPID->AddLast(hTOFmatchedExpTimeProVsPTRDNeg) ;
739
740 //PID 29
741 TH2F* hTOFmatchedExpTimeProVsPNoTRDNeg = new TH2F("hTOFmatchedExpTimeProVsPNoTRDNeg", "ESDs t_{TOF}-t_{p,exp} (from tracking) Vs P (50 #leq#phi_{outerTPC}#leq 130 || 250 #leq#phi_{outerTPC}#leq 290); p (GeV/c);t_{TOF}-t_{p,exp} [ps];Counts",500, 0.,5.,nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 742 // hTOFmatchedExpTimeProVsPNoTRDNeg->Sumw2() ;
4170635c 743 if (fEnableAdvancedCheck)
744 fHlistPID->AddLast(hTOFmatchedExpTimeProVsPNoTRDNeg) ;
745
b5c128f2 746//PID 30
154404b2 747 TH2F* hTOFmatchedTimePion1GeV = new TH2F("hTOFmatchedTimePion1GeV", "ESDs t_{TOF}-t_{0}^{TOF}-t_{#pi,exp} (from tracking) for 0.95 <= p_{T} <= 1.05 GeV/c; n tracks used for TOF_T0; t_{TOF}-t_{0}^{TOF}-t_{#pi,exp} [ps];Counts", 1000, 0., 1000., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 748 // hTOFmatchedTimePion1GeV->Sumw2() ;
b5c128f2 749 fHlistPID->AddLast(hTOFmatchedTimePion1GeV) ;
750
154404b2 751 //PID 31
752 TH2F* hTimeT0subtractedPionVsP = new TH2F("hTimeT0subtractedPionVsP", "ESDs t_{TOF}-t_{0}^{TOF}-t_{#pi,exp} vs p; p (GeV/c); t_{TOF}-t_{0}^{TOF}-t_{#pi,exp} [ps];Counts", 500, 0.,5., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 753 // hTimeT0subtractedPionVsP->Sumw2() ;
154404b2 754 fHlistPID->AddLast(hTimeT0subtractedPionVsP) ;
755
756//PID 32
757 TH2F* hTimeT0subtractedKaonVsP = new TH2F("hTimeT0subtractedKaonVsP", "ESDs t_{TOF}-t_{0}^{TOF}-t_{K,exp} vs p; p (GeV/c); t_{TOF}-t_{0}^{TOF}-t_{K,exp} [ps];Counts", 500, 0.,5., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 758 // hTimeT0subtractedKaonVsP->Sumw2() ;
154404b2 759 fHlistPID->AddLast(hTimeT0subtractedKaonVsP) ;
760
761//PID 33
762 TH2F* hTimeT0subtractedProtonVsP = new TH2F("hTimeT0subtractedProtonVsP", "ESDs t_{TOF}-t_{0}^{TOF}-t_{p,exp} vs p; p(GeV/c) t_{TOF}-t_{0}^{TOF}-t_{p,exp} [ps];Counts", 500, 0.,5., nExpTimeBins, fExpTimeRangeMin, fExpTimeRangeMax) ;
4f2b01c6 763 // hTimeT0subtractedProtonVsP->Sumw2() ;
154404b2 764 fHlistPID->AddLast(hTimeT0subtractedProtonVsP) ;
765
4170635c 766 //----------------------------------------------------------POSITIVE TRACKS
767 //0
768 TH1F* hTOFmatchedESDtrkLengthPos = new TH1F("hTOFmatchedESDtrkLengthPos", "Matched positive ESDs tracks length; Track length [cm];Counts", 1600, -800., 800) ;
4f2b01c6 769 // hTOFmatchedESDtrkLengthPos->Sumw2();
4170635c 770 hTOFmatchedESDtrkLengthPos->SetLineColor(kRed);
771 hTOFmatchedESDtrkLengthPos->SetMarkerColor(kRed);
772 hTOFmatchedESDtrkLengthPos->SetFillColor(kRed);
773 hTOFmatchedESDtrkLengthPos->SetDrawOption("BAR");
774 if (fEnableAdvancedCheck)
775 fHpos->AddLast(hTOFmatchedESDtrkLengthPos);
776 //1
777 TH1F* hTOFmatchedESDPPos = new TH1F("hTOFmatchedESDPPos", "TPC-TOF matched positive tracks momentum distribution (GeV/c); p (GeV/c);tracks", 500,0.,5.) ;
4f2b01c6 778 // hTOFmatchedESDPPos->Sumw2() ;
4170635c 779 hTOFmatchedESDPPos->SetLineColor(kRed);
780 hTOFmatchedESDPPos->SetMarkerStyle(20);
781 hTOFmatchedESDPPos->SetMarkerSize(0.7);
782 hTOFmatchedESDPPos->SetMarkerColor(kRed);
783 if (fEnableAdvancedCheck)
784 fHpos->AddLast(hTOFmatchedESDPPos) ;
785 //2
786 TH1F* hTOFmatchedESDPtPos = new TH1F("hTOFmatchedESDPtPos", "TPC-TOF positive matched tracks p_{T} distribution (GeV/c); p_{T}(GeV/c);tracks", 500,0.,5.) ;
4f2b01c6 787 // hTOFmatchedESDPtPos->Sumw2() ;
4170635c 788 hTOFmatchedESDPtPos->SetLineColor(kRed);
789 hTOFmatchedESDPtPos->SetMarkerStyle(21);
790 hTOFmatchedESDPtPos->SetMarkerSize(0.7);
791 hTOFmatchedESDPtPos->SetMarkerColor(kRed);
792 if (fEnableAdvancedCheck)
793 fHpos->AddLast(hTOFmatchedESDPtPos) ;
794
795 //3
c9232487 796 TH1F* hTOFmatchedESDetaPos = new TH1F("hTOFmatchedESDetaPos", "Matched positive ESD tracks #eta (p_{T} #geq 1.0 GeV/c); eta;Counts", 200, -1., 1.) ;
4f2b01c6 797 // hTOFmatchedESDetaPos->Sumw2();
4170635c 798 hTOFmatchedESDetaPos->SetLineColor(kRed);
799 if (fEnableAdvancedCheck)
800fHpos->AddLast(hTOFmatchedESDetaPos) ;
801 //4
495628f1 802 TH1F* hTOFmatchedESDphiPos = new TH1F("hTOFmatchedESDphiPos", "Matched Positive ESD tracks #phi (p_{T} #geq 1.0 GeV/c); #phi_{out} (deg);Counts", 72, 0., 360.) ;
4f2b01c6 803 // hTOFmatchedESDphiPos->Sumw2();
4170635c 804 hTOFmatchedESDphiPos->SetLineColor(kRed);
805 if (fEnableAdvancedCheck)
806 fHpos->AddLast(hTOFmatchedESDphiPos) ;
807
808 //5
809 TH1F* hESDmatchedTrackPtPosTRDout = new TH1F("hESDmatchedTrackPtPosTRDout", "ESDs Pos matched tracks p_{T} with kTRDout distribution (GeV/c); p_{T}(GeV/c);tracks", 500, 0.0, 5.0) ;
4f2b01c6 810 // hESDmatchedTrackPtPosTRDout->Sumw2();
4170635c 811 hESDmatchedTrackPtPosTRDout->SetLineWidth(1);
812 hESDmatchedTrackPtPosTRDout->SetMarkerStyle(20);
813 hESDmatchedTrackPtPosTRDout->SetMarkerSize(0.7);
814 hESDmatchedTrackPtPosTRDout->SetLineColor(kRed);
815 hESDmatchedTrackPtPosTRDout->SetMarkerColor(kRed);
816 if (fEnableAdvancedCheck)
817 fHpos->AddLast(hESDmatchedTrackPtPosTRDout);
818
819 //6
820 TH1F* hESDmatchedTrackPtPosNoTRDout = new TH1F("hESDmatchedTrackPtPosNoTRDout", "ESDs Pos matched tracks p_{T} with !kTRDout distribution (GeV/c); p_{T}(GeV/c);tracks", 500, 0.0, 5.0) ;
4f2b01c6 821 // hESDmatchedTrackPtPosNoTRDout->Sumw2();
4170635c 822 hESDmatchedTrackPtPosNoTRDout->SetLineWidth(1);
823 hESDmatchedTrackPtPosNoTRDout->SetMarkerStyle(25);
824 hESDmatchedTrackPtPosNoTRDout->SetMarkerSize(0.7);
825 hESDmatchedTrackPtPosNoTRDout->SetLineColor(kRed);
826 hESDmatchedTrackPtPosNoTRDout->SetMarkerColor(kRed);
827 if (fEnableAdvancedCheck)
828 fHpos->AddLast(hESDmatchedTrackPtPosNoTRDout);
829
830 //7
572c1318 831 TH1F* hESDprimaryTrackPPos = new TH1F("hESDprimaryTrackPPos", "All Pos ESDs tracks p distribution (GeV/c); p(GeV/c);tracks", 500, 0., 5.0) ;
4f2b01c6 832 // hESDprimaryTrackPPos->Sumw2();
4170635c 833 hESDprimaryTrackPPos->SetLineWidth(1);
834 hESDprimaryTrackPPos->SetMarkerStyle(24);
835 hESDprimaryTrackPPos->SetMarkerSize(0.7);
836 hESDprimaryTrackPPos->SetMarkerColor(kRed);
837 hESDprimaryTrackPPos->SetLineColor(kRed);
838 if (fEnableAdvancedCheck)
839 fHpos->AddLast(hESDprimaryTrackPPos);
840 //8
841 TH1F* hESDprimaryTrackPtPos = new TH1F("hESDprimaryTrackPtPos", "ESDs Pos primary tracks p_{T} distribution (GeV/c); p_{T}(GeV/c);tracks", 500, 0.0, 5.0) ;
4f2b01c6 842 // hESDprimaryTrackPtPos->Sumw2();
4170635c 843 hESDprimaryTrackPtPos->SetLineWidth(1);
844 hESDprimaryTrackPtPos->SetMarkerStyle(25);
845 hESDprimaryTrackPtPos->SetMarkerSize(0.7);
846 hESDprimaryTrackPtPos->SetLineColor(kRed);
847 hESDprimaryTrackPtPos->SetMarkerColor(kRed);
848 if (fEnableAdvancedCheck)
849 fHpos->AddLast(hESDprimaryTrackPtPos);
850 //9
c9232487 851 TH1F* hTOFprimaryESDetaPos = new TH1F("hTOFprimaryESDetaPos", "Primary ESD Pos tracks #eta (p_{T} #geq 1.0 GeV/c); #eta;Counts", 200, -1., 1.) ;
4f2b01c6 852 // hTOFprimaryESDetaPos->Sumw2();
4170635c 853 hTOFprimaryESDetaPos->SetLineColor(kRed);
854 if (fEnableAdvancedCheck)
855 fHpos->AddLast(hTOFprimaryESDetaPos) ;
856 //10
495628f1 857 TH1F* hTOFprimaryESDphiPos = new TH1F("hTOFprimaryESDphiPos", "Primary ESD Pos tracks #phi_{out} (p_{T} #geq 1.0 GeV/c);#phi (deg);Counts", 72, 0., 360.) ;
4f2b01c6 858 // hTOFprimaryESDphiPos->Sumw2();
4170635c 859 hTOFprimaryESDphiPos->SetLineColor(kRed);
860 if (fEnableAdvancedCheck)
861 fHpos->AddLast(hTOFprimaryESDphiPos) ;
862
863 //11
864 TH1F* hESDprimaryTrackPtPosTRDout = new TH1F("hESDprimaryTrackPtPosTRDout", "ESDs Pos primary tracks p_{T} with kTRDout distribution (GeV/c); p_{T}(GeV/c);tracks", 500, 0.0, 5.0) ;
4f2b01c6 865 // hESDprimaryTrackPtPosTRDout->Sumw2();
4170635c 866 hESDprimaryTrackPtPosTRDout->SetLineWidth(1);
867 hESDprimaryTrackPtPosTRDout->SetMarkerStyle(20);
868 hESDprimaryTrackPtPosTRDout->SetMarkerSize(0.7);
869 hESDprimaryTrackPtPosTRDout->SetLineColor(kRed);
870 hESDprimaryTrackPtPosTRDout->SetMarkerColor(kRed);
871 if (fEnableAdvancedCheck)
872 fHpos->AddLast(hESDprimaryTrackPtPosTRDout);
873
874 //12
875 TH1F* hESDprimaryTrackPtPosNoTRDout = new TH1F("hESDprimaryTrackPtPosNoTRDout", "ESDs Pos primary tracks p_{T} with !kTRDout distribution (GeV/c); p_{T}(GeV/c);tracks", 500, 0.0, 5.0) ;
4f2b01c6 876 // hESDprimaryTrackPtPosNoTRDout->Sumw2();
4170635c 877 hESDprimaryTrackPtPosNoTRDout->SetLineWidth(1);
878 hESDprimaryTrackPtPosNoTRDout->SetMarkerStyle(25);
879 hESDprimaryTrackPtPosNoTRDout->SetMarkerSize(0.7);
880 hESDprimaryTrackPtPosNoTRDout->SetLineColor(kRed);
881 hESDprimaryTrackPtPosNoTRDout->SetMarkerColor(kRed);
882 if (fEnableAdvancedCheck)
883 fHpos->AddLast(hESDprimaryTrackPtPosNoTRDout);
884
885 //13
c9232487 886 TH1F* hESDprimaryTrackEtaPosTRDout = new TH1F("hESDprimaryTrackEtaPosTRDout", "ESDs Pos primary tracks #eta with kTRDout (p_{T} #geq 1.0 GeV/c); #eta;tracks", 200, -1.0, 1.0) ;
4f2b01c6 887 // hESDprimaryTrackEtaPosTRDout->Sumw2();
4170635c 888 hESDprimaryTrackEtaPosTRDout->SetLineWidth(1);
889 hESDprimaryTrackEtaPosTRDout->SetMarkerStyle(20);
890 hESDprimaryTrackEtaPosTRDout->SetMarkerSize(0.7);
891 hESDprimaryTrackEtaPosTRDout->SetLineColor(kBlue);
892 hESDprimaryTrackEtaPosTRDout->SetMarkerColor(kBlue);
893 if (fEnableAdvancedCheck)
894 fHpos->AddLast(hESDprimaryTrackEtaPosTRDout);
895
896 //14
c9232487 897 TH1F* hESDprimaryTrackEtaPosNoTRDout = new TH1F("hESDprimaryTrackEtaPosNoTRDout", "ESDs Pos primary tracks #eta with !kTRDout (p_{T} #geq 1.0 GeV/c);#eta;tracks", 200, -1.0, 1.0) ;
4f2b01c6 898 // hESDprimaryTrackEtaPosNoTRDout->Sumw2();
4170635c 899 hESDprimaryTrackEtaPosNoTRDout->SetLineWidth(1);
900 hESDprimaryTrackEtaPosNoTRDout->SetMarkerStyle(25);
901 hESDprimaryTrackEtaPosNoTRDout->SetMarkerSize(0.7);
902 hESDprimaryTrackEtaPosNoTRDout->SetLineColor(kBlue);
903 hESDprimaryTrackEtaPosNoTRDout->SetMarkerColor(kBlue);
904 if (fEnableAdvancedCheck)
905 fHpos->AddLast(hESDprimaryTrackEtaPosNoTRDout);
906
907 //15
495628f1 908 TH1F* hESDprimaryTrackPhiPosTRDout = new TH1F("hESDprimaryTrackPhiPosTRDout", "ESDs Pos primary tracks #phi with kTRDout (p_{T} #geq 1.0 GeV/c); #phi_{out}(deg);tracks", 72, 0., 360.) ;
4f2b01c6 909 // hESDprimaryTrackPhiPosTRDout->Sumw2();
4170635c 910 hESDprimaryTrackPhiPosTRDout->SetLineWidth(1);
911 hESDprimaryTrackPhiPosTRDout->SetMarkerStyle(20);
912 hESDprimaryTrackPhiPosTRDout->SetMarkerSize(0.7);
913 hESDprimaryTrackPhiPosTRDout->SetLineColor(kBlue);
914 hESDprimaryTrackPhiPosTRDout->SetMarkerColor(kBlue);
915 if (fEnableAdvancedCheck)
916 fHpos->AddLast(hESDprimaryTrackPhiPosTRDout);
917
918 //16
495628f1 919 TH1F* hESDprimaryTrackPhiPosNoTRDout = new TH1F("hESDprimaryTrackPhiPosNoTRDout", "ESDs Pos primary tracks #phi with !kTRDout (p_{T} #geq 1.0 GeV/c); #phi_{out}(deg);tracks", 72, 0., 360.) ;
4f2b01c6 920 // hESDprimaryTrackPhiPosNoTRDout->Sumw2();
4170635c 921 hESDprimaryTrackPhiPosNoTRDout->SetLineWidth(1);
922 hESDprimaryTrackPhiPosNoTRDout->SetMarkerStyle(25);
923 hESDprimaryTrackPhiPosNoTRDout->SetMarkerSize(0.7);
924 hESDprimaryTrackPhiPosNoTRDout->SetLineColor(kBlue);
925 hESDprimaryTrackPhiPosNoTRDout->SetMarkerColor(kBlue);
926 if (fEnableAdvancedCheck)
927 fHpos->AddLast(hESDprimaryTrackPhiPosNoTRDout);
928
929 //POS 17
930 TH2F* hTOFmatchedExpTimeProVsPhiPos = new TH2F("hTOFmatchedExpTimeProVsPhiPos", "ESDs t_{TOF}-t_{p,exp} vs #phi at TOF (r=378.cm) (p_{T}<1GeV/c);#phi (deg); t_{TOF}-t_{p,exp} [ps];Counts",72, 0.,360., 500, -5000., 5000. ) ;
4f2b01c6 931 // hTOFmatchedExpTimeProVsPhiPos->Sumw2() ;
4170635c 932 if (fEnableAdvancedCheck)
933 fHpos->AddLast(hTOFmatchedExpTimeProVsPhiPos) ;
934
935 //POS 18
936 TH2F* hTOFmatchedExpTimeProVsPhiVertexPos = new TH2F("hTOFmatchedExpTimeProVsPhiVertexPos", "ESDs t_{TOF}-t_{p,exp} vs #phi at vtx (p_{T}<1GeV/c);#phi (deg); t_{TOF}-t_{p,exp} [ps];Counts",72, 0.,360., nExpTimeSmallBins, fExpTimeSmallRangeMin, fExpTimeSmallRangeMax) ;
4f2b01c6 937 // hTOFmatchedExpTimeProVsPhiVertexPos->Sumw2() ;
4170635c 938 if (fEnableAdvancedCheck)
939 fHpos->AddLast(hTOFmatchedExpTimeProVsPhiVertexPos) ;
940
941 //POS 19
942 TH2F* hTOFmatchedExpTimeProVsPhiTPCPos = new TH2F("hTOFmatchedExpTimeProVsPhiTPCPos", "ESDs t_{TOF}-t_{p,exp} vs #phi at outer TPC (p_{T}<1GeV/c);#phi (deg); t_{TOF}-t_{p,exp} [ps];Counts",72, 0.,360., nExpTimeSmallBins, fExpTimeSmallRangeMin, fExpTimeSmallRangeMax) ;
4f2b01c6 943 // hTOFmatchedExpTimeProVsPhiTPCPos->Sumw2() ;
4170635c 944 if (fEnableAdvancedCheck)
945 fHpos->AddLast(hTOFmatchedExpTimeProVsPhiTPCPos) ;
946
947 //20
c9232487 948 TH1F* hESDmatchedTrackEtaPosTRDout = new TH1F("hESDmatchedTrackEtaPosTRDout", "ESDs Pos matched tracks #eta with kTRDout (p_{T} #geq 1.0 GeV/c); #eta;tracks", 200, -1.0, 1.0) ;
4f2b01c6 949 // hESDmatchedTrackEtaPosTRDout->Sumw2();
4170635c 950 hESDmatchedTrackEtaPosTRDout->SetLineWidth(1);
951 hESDmatchedTrackEtaPosTRDout->SetMarkerStyle(20);
952 hESDmatchedTrackEtaPosTRDout->SetMarkerSize(0.7);
953 hESDmatchedTrackEtaPosTRDout->SetLineColor(kBlue);
954 hESDmatchedTrackEtaPosTRDout->SetMarkerColor(kBlue);
955 if (fEnableAdvancedCheck)
956 fHpos->AddLast(hESDmatchedTrackEtaPosTRDout);
957
958 //21
c9232487 959 TH1F* hESDmatchedTrackEtaPosNoTRDout = new TH1F("hESDmatchedTrackEtaPosNoTRDout", "ESDs Pos matched tracks #eta with !kTRDout (p_{T} #geq 1.0 GeV/c);#eta;tracks", 200, -1.0, 1.0) ;
4f2b01c6 960 // hESDmatchedTrackEtaPosNoTRDout->Sumw2();
4170635c 961 hESDmatchedTrackEtaPosNoTRDout->SetLineWidth(1);
962 hESDmatchedTrackEtaPosNoTRDout->SetMarkerStyle(25);
963 hESDmatchedTrackEtaPosNoTRDout->SetMarkerSize(0.7);
964 hESDmatchedTrackEtaPosNoTRDout->SetLineColor(kBlue);
965 hESDmatchedTrackEtaPosNoTRDout->SetMarkerColor(kBlue);
966 if (fEnableAdvancedCheck)
967 fHpos->AddLast(hESDmatchedTrackEtaPosNoTRDout);
968
969 //22
495628f1 970 TH1F* hESDmatchedTrackPhiPosTRDout = new TH1F("hESDmatchedTrackPhiPosTRDout", "ESDs Pos matched tracks #phi with kTRDout (p_{T} #geq 1.0 GeV/c); #phi_{out}(deg);tracks", 72, 0., 360.) ;
4f2b01c6 971 // hESDmatchedTrackPhiPosTRDout->Sumw2();
4170635c 972 hESDmatchedTrackPhiPosTRDout->SetLineWidth(1);
973 hESDmatchedTrackPhiPosTRDout->SetMarkerStyle(20);
974 hESDmatchedTrackPhiPosTRDout->SetMarkerSize(0.7);
975 hESDmatchedTrackPhiPosTRDout->SetLineColor(kBlue);
976 hESDmatchedTrackPhiPosTRDout->SetMarkerColor(kBlue);
977 if (fEnableAdvancedCheck)
978 fHpos->AddLast(hESDmatchedTrackPhiPosTRDout);
979
980 //23
495628f1 981 TH1F* hESDmatchedTrackPhiPosNoTRDout = new TH1F("hESDmatchedTrackPhiPosNoTRDout", "ESDs Pos matched tracks #phi with !kTRDout (p_{T} #geq 1.0 GeV/c); #phi_{out}(deg);tracks", 72, 0., 360.) ;
4f2b01c6 982 // hESDmatchedTrackPhiPosNoTRDout->Sumw2();
4170635c 983 hESDmatchedTrackPhiPosNoTRDout->SetLineWidth(1);
984 hESDmatchedTrackPhiPosNoTRDout->SetMarkerStyle(25);
985 hESDmatchedTrackPhiPosNoTRDout->SetMarkerSize(0.7);
986 hESDmatchedTrackPhiPosNoTRDout->SetLineColor(kBlue);
987 hESDmatchedTrackPhiPosNoTRDout->SetMarkerColor(kBlue);
988 if (fEnableAdvancedCheck)
989 fHpos->AddLast(hESDmatchedTrackPhiPosNoTRDout);
990
991 //POS 24
495628f1 992 TH2F* hTOFmatchedExpTimePiVsPhiTPCPos = new TH2F("hTOFmatchedExpTimePiVsPhiTPCPos", "ESDs t_{TOF}-t_{#pi,exp} vs #phi at outer TPC (p_{T}<1GeV/c);#phi_{out} (deg); t_{TOF}-t_{p,exp} [ps];Counts",72, 0.,360., nExpTimeSmallBins, fExpTimeSmallRangeMin, fExpTimeSmallRangeMax) ;
4f2b01c6 993 // hTOFmatchedExpTimePiVsPhiTPCPos->Sumw2() ;
4170635c 994 if (fEnableAdvancedCheck)
995 fHpos->AddLast(hTOFmatchedExpTimePiVsPhiTPCPos) ;
996
997 //POS 25
495628f1 998 TH2F* hTOFmatchedExpTimeKaVsPhiTPCPos = new TH2F("hTOFmatchedExpTimeKaVsPhiTPCPos", "ESDs t_{TOF}-t_{K,exp} vs #phi at outer TPC (p_{T}<1GeV/c);#phi_{out} (deg); t_{TOF}-t_{p,exp} [ps];Counts",72, 0.,360., nExpTimeSmallBins, fExpTimeSmallRangeMin, fExpTimeSmallRangeMax) ;
4f2b01c6 999 // hTOFmatchedExpTimeKaVsPhiTPCPos->Sumw2() ;
4170635c 1000 if (fEnableAdvancedCheck)
1001 fHpos->AddLast(hTOFmatchedExpTimeKaVsPhiTPCPos) ;
1002
495628f1 1003 //POS 26
1004 TH2F* hTOFprimaryEtaVsPhiOutPos = new TH2F("hTOFprimaryEtaVsPhiOutPos", "Positive tracks, p_{T}>1GeV/c;#phi_{out} (degree); #eta; Counts", 72, 0., 360., 20, -1.,1.) ;
4f2b01c6 1005 // hTOFprimaryEtaVsPhiOutPos->Sumw2() ;
495628f1 1006 if (fEnableAdvancedCheck)
1007 fHpos->AddLast(hTOFprimaryEtaVsPhiOutPos) ;
1008
1009 //POS 27
1010 TH2F* hTOFmatchedEtaVsPhiOutPos = new TH2F("hTOFmatchedEtaVsPhiOutPos", "Positive tracks, p_{T}>1GeV/c;#phi_{out} (degree); #eta; Counts", 72, 0., 360., 20, -1.,1.) ;
4f2b01c6 1011 // hTOFmatchedEtaVsPhiOutPos->Sumw2() ;
495628f1 1012 if (fEnableAdvancedCheck)
1013 fHpos->AddLast(hTOFmatchedEtaVsPhiOutPos) ;
1014
1015 //POS 28
1016 TH2F* hTOFprimaryPtVsPhiOutPos = new TH2F("hTOFprimaryPtVsPhiOutPos", "Positive tracks;#phi_{out}(degree); p_{T}(GeV/c); Counts", 500, 0., 5., 20, -1.,1.) ;
4f2b01c6 1017 // hTOFprimaryPtVsPhiOutPos->Sumw2() ;
495628f1 1018 if (fEnableAdvancedCheck)
1019 fHpos->AddLast(hTOFprimaryPtVsPhiOutPos) ;
1020
1021 //POS 29
1022 TH2F* hTOFmatchedPtVsPhiOutPos = new TH2F("hTOFmatchedPtVsPhiOutPos", "Positive tracks;#phi_{out}(degree); p_{T}(GeV/c); Counts", 500, 0., 5., 20, -1.,1.) ;
4f2b01c6 1023 // hTOFmatchedPtVsPhiOutPos->Sumw2() ;
495628f1 1024 if (fEnableAdvancedCheck)
1025 fHpos->AddLast(hTOFmatchedPtVsPhiOutPos) ;
1026
1027
1028
4170635c 1029//----------------------------------------------------------NEGATIVE TRACKS
1030 //0
1031 TH1F* hTOFmatchedESDtrkLengthNeg = new TH1F("hTOFmatchedESDtrkLengthNeg", "Matched positive ESDs tracks length; Track length [cm];Counts", 1600, -800., 800) ;
4f2b01c6 1032 // hTOFmatchedESDtrkLengthNeg->Sumw2();
4170635c 1033 hTOFmatchedESDtrkLengthNeg->SetLineColor(kBlue);
1034 hTOFmatchedESDtrkLengthNeg->SetMarkerColor(kBlue);
1035 hTOFmatchedESDtrkLengthNeg->SetFillColor(kBlue);
1036 hTOFmatchedESDtrkLengthNeg->SetDrawOption("BAR");
1037 if (fEnableAdvancedCheck)
1038 fHneg->AddLast(hTOFmatchedESDtrkLengthNeg);
1039 //1
1040 TH1F* hTOFmatchedESDPNeg = new TH1F("hTOFmatchedESDPNeg", "TPC-TOF matched positive tracks momentum distribution (GeV/c); p (GeV/c);tracks", 500,0.,5.) ;
4f2b01c6 1041 // hTOFmatchedESDPNeg->Sumw2() ;
4170635c 1042 hTOFmatchedESDPNeg->SetLineColor(kBlue);
1043 hTOFmatchedESDPNeg->SetMarkerStyle(20);
1044 hTOFmatchedESDPNeg->SetMarkerSize(0.7);
1045 hTOFmatchedESDPNeg->SetMarkerColor(kBlue);
1046 if (fEnableAdvancedCheck)
1047 fHneg->AddLast(hTOFmatchedESDPNeg) ;
1048 //2
1049 TH1F* hTOFmatchedESDPtNeg = new TH1F("hTOFmatchedESDPtNeg", "TPC-TOF positive matched tracks p_{T} distribution (GeV/c); p_{T}(GeV/c);tracks", 500,0.,5.) ;
4f2b01c6 1050 // hTOFmatchedESDPtNeg->Sumw2() ;
4170635c 1051 hTOFmatchedESDPtNeg->SetLineColor(kBlue);
1052 hTOFmatchedESDPtNeg->SetMarkerStyle(21);
1053 hTOFmatchedESDPtNeg->SetMarkerSize(0.7);
1054 hTOFmatchedESDPtNeg->SetMarkerColor(kBlue);
1055 if (fEnableAdvancedCheck)
1056 fHneg->AddLast(hTOFmatchedESDPtNeg) ;
1057
1058 //3
c9232487 1059 TH1F* hTOFmatchedESDetaNeg = new TH1F("hTOFmatchedESDetaNeg", "Matched positive ESD tracks #eta (p_{T} #geq 1.0 GeV/c); eta;Counts", 200, -1., 1.) ;
4f2b01c6 1060 // hTOFmatchedESDetaNeg->Sumw2();
4170635c 1061 hTOFmatchedESDetaNeg->SetLineColor(kBlue);
1062 if (fEnableAdvancedCheck)
1063 fHneg->AddLast(hTOFmatchedESDetaNeg) ;
1064 //4
495628f1 1065 TH1F* hTOFmatchedESDphiNeg = new TH1F("hTOFmatchedESDphiNeg", "Matched Negative ESD tracks #phi (p_{T} #geq 1.0 GeV/c); #phi_{out} (deg);Counts", 72, 0., 360.) ;
4f2b01c6 1066 // hTOFmatchedESDphiNeg->Sumw2();
4170635c 1067 hTOFmatchedESDphiNeg->SetLineColor(kBlue);
1068 if (fEnableAdvancedCheck)
1069 fHneg->AddLast(hTOFmatchedESDphiNeg) ;
1070
1071 //5
1072 TH1F* hESDmatchedTrackPtNegTRDout = new TH1F("hESDmatchedTrackPtNegTRDout", "ESDs Neg matched tracks p_{T} with kTRDout distribution (GeV/c); p_{T}(GeV/c);tracks", 500, 0.0, 5.0) ;
4f2b01c6 1073 // hESDmatchedTrackPtNegTRDout->Sumw2();
4170635c 1074 hESDmatchedTrackPtNegTRDout->SetLineWidth(1);
1075 hESDmatchedTrackPtNegTRDout->SetMarkerStyle(20);
1076 hESDmatchedTrackPtNegTRDout->SetMarkerSize(0.7);
1077 hESDmatchedTrackPtNegTRDout->SetLineColor(kBlue);
1078 hESDmatchedTrackPtNegTRDout->SetMarkerColor(kBlue);
1079 if (fEnableAdvancedCheck)
1080 fHneg->AddLast(hESDmatchedTrackPtNegTRDout);
1081
1082 //6
1083 TH1F* hESDmatchedTrackPtNegNoTRDout = new TH1F("hESDmatchedTrackPtNegNoTRDout", "ESDs Neg matched tracks p_{T} with !kTRDout distribution (GeV/c); p_{T}(GeV/c);tracks", 500, 0.0, 5.0) ;
4f2b01c6 1084 // hESDmatchedTrackPtNegNoTRDout->Sumw2();
4170635c 1085 hESDmatchedTrackPtNegNoTRDout->SetLineWidth(1);
1086 hESDmatchedTrackPtNegNoTRDout->SetMarkerStyle(25);
1087 hESDmatchedTrackPtNegNoTRDout->SetMarkerSize(0.7);
1088 hESDmatchedTrackPtNegNoTRDout->SetLineColor(kBlue);
1089 hESDmatchedTrackPtNegNoTRDout->SetMarkerColor(kBlue);
1090 if (fEnableAdvancedCheck)
1091 fHneg->AddLast(hESDmatchedTrackPtNegNoTRDout);
1092
1093 //7
572c1318 1094 TH1F* hESDprimaryTrackPNeg = new TH1F("hESDprimaryTrackPNeg", "All Neg ESDs tracks p distribution (GeV/c); p(GeV/c);tracks", 500, 0., 5.0) ;
4f2b01c6 1095 // hESDprimaryTrackPNeg->Sumw2();
4170635c 1096 hESDprimaryTrackPNeg->SetLineWidth(1);
1097 hESDprimaryTrackPNeg->SetMarkerStyle(24);
1098 hESDprimaryTrackPNeg->SetMarkerSize(0.7);
1099 hESDprimaryTrackPNeg->SetMarkerColor(kBlue);
1100 hESDprimaryTrackPNeg->SetLineColor(kBlue);
1101 if (fEnableAdvancedCheck)
1102 fHneg->AddLast(hESDprimaryTrackPNeg);
1103 //8
1104 TH1F* hESDprimaryTrackPtNeg = new TH1F("hESDprimaryTrackPtNeg", "ESDs Neg primary tracks p_{T} distribution (GeV/c); p_{T}(GeV/c);tracks", 500, 0.0, 5.0) ;
4f2b01c6 1105 // hESDprimaryTrackPtNeg->Sumw2();
4170635c 1106 hESDprimaryTrackPtNeg->SetLineWidth(1);
1107 hESDprimaryTrackPtNeg->SetMarkerStyle(25);
1108 hESDprimaryTrackPtNeg->SetMarkerSize(0.7);
1109 hESDprimaryTrackPtNeg->SetLineColor(kBlue);
1110 hESDprimaryTrackPtNeg->SetMarkerColor(kBlue);
1111 if (fEnableAdvancedCheck)
1112 fHneg->AddLast(hESDprimaryTrackPtNeg);
1113 //9
c9232487 1114 TH1F* hTOFprimaryESDetaNeg = new TH1F("hTOFprimaryESDetaNeg", "Primary ESD Neg tracks #eta (p_{T} #geq 1.0 GeV/c); #eta;Counts", 200, -1., 1.) ;
4f2b01c6 1115 // hTOFprimaryESDetaNeg->Sumw2();
4170635c 1116 hTOFprimaryESDetaNeg->SetLineColor(kBlue);
1117 if (fEnableAdvancedCheck)
1118 fHneg->AddLast(hTOFprimaryESDetaNeg) ;
1119 //10
495628f1 1120 TH1F* hTOFprimaryESDphiNeg = new TH1F("hTOFprimaryESDphiNeg", "Primary ESD Neg tracks #phi (p_{T} #geq 1.0 GeV/c);#phi_{out} (deg);Counts", 72, 0., 360.) ;
4f2b01c6 1121 // hTOFprimaryESDphiNeg->Sumw2();
4170635c 1122 hTOFprimaryESDphiNeg->SetLineColor(kBlue);
1123 if (fEnableAdvancedCheck)
1124 fHneg->AddLast(hTOFprimaryESDphiNeg) ;
1125
1126 //11
1127 TH1F* hESDprimaryTrackPtNegTRDout = new TH1F("hESDprimaryTrackPtNegTRDout", "ESDs Neg primary tracks p_{T} with kTRDout distribution (GeV/c); p_{T}(GeV/c);tracks", 500, 0.0, 5.0) ;
4f2b01c6 1128 // hESDprimaryTrackPtNegTRDout->Sumw2();
4170635c 1129 hESDprimaryTrackPtNegTRDout->SetLineWidth(1);
1130 hESDprimaryTrackPtNegTRDout->SetMarkerStyle(20);
1131 hESDprimaryTrackPtNegTRDout->SetMarkerSize(0.7);
1132 hESDprimaryTrackPtNegTRDout->SetLineColor(kBlue);
1133 hESDprimaryTrackPtNegTRDout->SetMarkerColor(kBlue);
1134 if (fEnableAdvancedCheck)
1135 fHneg->AddLast(hESDprimaryTrackPtNegTRDout);
1136
1137 //12
1138 TH1F* hESDprimaryTrackPtNegNoTRDout = new TH1F("hESDprimaryTrackPtNegNoTRDout", "ESDs Neg primary tracks p_{T} with !kTRDout distribution (GeV/c); p_{T}(GeV/c);tracks", 500, 0.0, 5.0) ;
4f2b01c6 1139 // hESDprimaryTrackPtNegNoTRDout->Sumw2();
4170635c 1140 hESDprimaryTrackPtNegNoTRDout->SetLineWidth(1);
1141 hESDprimaryTrackPtNegNoTRDout->SetMarkerStyle(25);
1142 hESDprimaryTrackPtNegNoTRDout->SetMarkerSize(0.7);
1143 hESDprimaryTrackPtNegNoTRDout->SetLineColor(kBlue);
1144 hESDprimaryTrackPtNegNoTRDout->SetMarkerColor(kBlue);
1145 if (fEnableAdvancedCheck)
1146 fHneg->AddLast(hESDprimaryTrackPtNegNoTRDout);
1147
1148 //13
c9232487 1149 TH1F* hESDprimaryTrackEtaNegTRDout = new TH1F("hESDprimaryTrackEtaNegTRDout", "ESDs Neg primary tracks #eta with kTRDout (p_{T} #geq 1.0 GeV/c); #eta;tracks", 200, -1.0, 1.0) ;
4f2b01c6 1150 // hESDprimaryTrackEtaNegTRDout->Sumw2();
4170635c 1151 hESDprimaryTrackEtaNegTRDout->SetLineWidth(1);
1152 hESDprimaryTrackEtaNegTRDout->SetMarkerStyle(20);
1153 hESDprimaryTrackEtaNegTRDout->SetMarkerSize(0.7);
1154 hESDprimaryTrackEtaNegTRDout->SetLineColor(kBlue);
1155 hESDprimaryTrackEtaNegTRDout->SetMarkerColor(kBlue);
1156 if (fEnableAdvancedCheck)
1157 fHneg->AddLast(hESDprimaryTrackEtaNegTRDout);
1158
1159 //14
c9232487 1160 TH1F* hESDprimaryTrackEtaNegNoTRDout = new TH1F("hESDprimaryTrackEtaNegNoTRDout", "ESDs Neg primary tracks #eta with !kTRDout (p_{T} #geq 1.0 GeV/c);#eta;tracks", 200, -1.0, 1.0) ;
4f2b01c6 1161 // hESDprimaryTrackEtaNegNoTRDout->Sumw2();
4170635c 1162 hESDprimaryTrackEtaNegNoTRDout->SetLineWidth(1);
1163 hESDprimaryTrackEtaNegNoTRDout->SetMarkerStyle(25);
1164 hESDprimaryTrackEtaNegNoTRDout->SetMarkerSize(0.7);
1165 hESDprimaryTrackEtaNegNoTRDout->SetLineColor(kBlue);
1166 hESDprimaryTrackEtaNegNoTRDout->SetMarkerColor(kBlue);
1167 if (fEnableAdvancedCheck)
1168 fHneg->AddLast(hESDprimaryTrackEtaNegNoTRDout);
1169
1170 //15
495628f1 1171 TH1F* hESDprimaryTrackPhiNegTRDout = new TH1F("hESDprimaryTrackPhiNegTRDout", "ESDs Neg primary tracks #phi with kTRDout (p_{T} #geq 1.0 GeV/c); #phi_{out} (deg);tracks", 72, 0., 360.) ;
4f2b01c6 1172 // hESDprimaryTrackPhiNegTRDout->Sumw2();
4170635c 1173 hESDprimaryTrackPhiNegTRDout->SetLineWidth(1);
1174 hESDprimaryTrackPhiNegTRDout->SetMarkerStyle(20);
1175 hESDprimaryTrackPhiNegTRDout->SetMarkerSize(0.7);
1176 hESDprimaryTrackPhiNegTRDout->SetLineColor(kBlue);
1177 hESDprimaryTrackPhiNegTRDout->SetMarkerColor(kBlue);
1178 if (fEnableAdvancedCheck)
1179 fHneg->AddLast(hESDprimaryTrackPhiNegTRDout);
1180
1181 //16
495628f1 1182 TH1F* hESDprimaryTrackPhiNegNoTRDout = new TH1F("hESDprimaryTrackPhiNegNoTRDout", "ESDs Neg primary tracks #phi with !kTRDout (p_{T} #geq 1.0 GeV/c); #phi_{out} (deg);tracks", 72, 0., 360.) ;
4f2b01c6 1183 // hESDprimaryTrackPhiNegNoTRDout->Sumw2();
4170635c 1184 hESDprimaryTrackPhiNegNoTRDout->SetLineWidth(1);
1185 hESDprimaryTrackPhiNegNoTRDout->SetMarkerStyle(25);
1186 hESDprimaryTrackPhiNegNoTRDout->SetMarkerSize(0.7);
1187 hESDprimaryTrackPhiNegNoTRDout->SetLineColor(kBlue);
1188 hESDprimaryTrackPhiNegNoTRDout->SetMarkerColor(kBlue);
1189 if (fEnableAdvancedCheck)
1190 fHneg->AddLast(hESDprimaryTrackPhiNegNoTRDout);
1191
1192 //NEG 17
1193 TH2F* hTOFmatchedExpTimeProVsPhiNeg = new TH2F("hTOFmatchedExpTimeProVsPhiNeg", "ESDs t_{TOF}-t_{p,exp} vs #phi at TOF (r=378.cm) (p_{T}<1GeV/c);#phi (deg); t_{TOF}-t_{p,exp} [ps];Counts",72, 0.,360., nExpTimeSmallBins, fExpTimeSmallRangeMin, fExpTimeSmallRangeMax) ;
4f2b01c6 1194 // hTOFmatchedExpTimeProVsPhiNeg->Sumw2() ;
4170635c 1195 if (fEnableAdvancedCheck)
1196 fHneg->AddLast(hTOFmatchedExpTimeProVsPhiNeg) ;
1197
1198 //NEG 18
1199 TH2F* hTOFmatchedExpTimeProVsPhiVertexNeg = new TH2F("hTOFmatchedExpTimeProVsPhiVertexNeg", "ESDs t_{TOF}-t_{p,exp} vs #phi at vtx (p_{T}<1GeV/c);#phi (deg); t_{TOF}-t_{p,exp} [ps];Counts",72, 0.,360., nExpTimeSmallBins, fExpTimeSmallRangeMin, fExpTimeSmallRangeMax) ;
4f2b01c6 1200 // hTOFmatchedExpTimeProVsPhiVertexNeg->Sumw2() ;
4170635c 1201 if (fEnableAdvancedCheck)
1202 fHneg->AddLast(hTOFmatchedExpTimeProVsPhiVertexNeg) ;
1203
1204 //NEG 19
495628f1 1205 TH2F* hTOFmatchedExpTimeProVsPhiTPCNeg = new TH2F("hTOFmatchedExpTimeProVsPhiTPCNeg", "ESDs t_{TOF}-t_{p,exp} vs #phi at outer TPC (p_{T}<1GeV/c);#phi_{out} (deg); t_{TOF}-t_{p,exp} [ps];Counts",72, 0.,360., nExpTimeSmallBins, fExpTimeSmallRangeMin, fExpTimeSmallRangeMax) ;
4f2b01c6 1206 // hTOFmatchedExpTimeProVsPhiTPCNeg->Sumw2() ;
4170635c 1207 if (fEnableAdvancedCheck)
1208 fHneg->AddLast(hTOFmatchedExpTimeProVsPhiTPCNeg) ;
1209
1210
1211 //20
c9232487 1212 TH1F* hESDmatchedTrackEtaNegTRDout = new TH1F("hESDmatchedTrackEtaNegTRDout", "ESDs Neg matched tracks #eta with kTRDout (p_{T} #geq 1.0 GeV/c); #eta;tracks", 200, -1.0, 1.0) ;
4f2b01c6 1213 // hESDmatchedTrackEtaNegTRDout->Sumw2();
4170635c 1214 hESDmatchedTrackEtaNegTRDout->SetLineWidth(1);
1215 hESDmatchedTrackEtaNegTRDout->SetMarkerStyle(20);
1216 hESDmatchedTrackEtaNegTRDout->SetMarkerSize(0.7);
1217 hESDmatchedTrackEtaNegTRDout->SetLineColor(kBlue);
1218 hESDmatchedTrackEtaNegTRDout->SetMarkerColor(kBlue);
1219 if (fEnableAdvancedCheck)
1220 fHneg->AddLast(hESDmatchedTrackEtaNegTRDout);
1221
1222 //21
c9232487 1223 TH1F* hESDmatchedTrackEtaNegNoTRDout = new TH1F("hESDmatchedTrackEtaNegNoTRDout", "ESDs Neg matched tracks #eta with !kTRDout (p_{T} #geq 1.0 GeV/c);#eta;tracks", 200, -1.0, 1.0) ;
4f2b01c6 1224 // hESDmatchedTrackEtaNegNoTRDout->Sumw2();
4170635c 1225 hESDmatchedTrackEtaNegNoTRDout->SetLineWidth(1);
1226 hESDmatchedTrackEtaNegNoTRDout->SetMarkerStyle(25);
1227 hESDmatchedTrackEtaNegNoTRDout->SetMarkerSize(0.7);
1228 hESDmatchedTrackEtaNegNoTRDout->SetLineColor(kBlue);
1229 hESDmatchedTrackEtaNegNoTRDout->SetMarkerColor(kBlue);
1230 if (fEnableAdvancedCheck)
1231 fHneg->AddLast(hESDmatchedTrackEtaNegNoTRDout);
1232
1233 //22
495628f1 1234 TH1F* hESDmatchedTrackPhiNegTRDout = new TH1F("hESDmatchedTrackPhiNegTRDout", "ESDs Neg matched tracks #phi with kTRDout (p_{T} #geq 1.0 GeV/c); #phi_{out} (deg);tracks", 72, 0., 360.) ;
4f2b01c6 1235 // hESDmatchedTrackPhiNegTRDout->Sumw2();
4170635c 1236 hESDmatchedTrackPhiNegTRDout->SetLineWidth(1);
1237 hESDmatchedTrackPhiNegTRDout->SetMarkerStyle(20);
1238 hESDmatchedTrackPhiNegTRDout->SetMarkerSize(0.7);
1239 hESDmatchedTrackPhiNegTRDout->SetLineColor(kBlue);
1240 hESDmatchedTrackPhiNegTRDout->SetMarkerColor(kBlue);
1241 if (fEnableAdvancedCheck)
1242 fHneg->AddLast(hESDmatchedTrackPhiNegTRDout);
1243
1244 //23
495628f1 1245 TH1F* hESDmatchedTrackPhiNegNoTRDout = new TH1F("hESDmatchedTrackPhiNegNoTRDout", "ESDs Neg matched tracks #phi with !kTRDout (p_{T} #geq 1.0 GeV/c); #phi_{out} (deg);tracks", 72, 0., 360.) ;
4f2b01c6 1246 // hESDmatchedTrackPhiNegNoTRDout->Sumw2();
4170635c 1247 hESDmatchedTrackPhiNegNoTRDout->SetLineWidth(1);
1248 hESDmatchedTrackPhiNegNoTRDout->SetMarkerStyle(25);
1249 hESDmatchedTrackPhiNegNoTRDout->SetMarkerSize(0.7);
1250 hESDmatchedTrackPhiNegNoTRDout->SetLineColor(kBlue);
1251 hESDmatchedTrackPhiNegNoTRDout->SetMarkerColor(kBlue);
1252 if (fEnableAdvancedCheck)
1253 fHneg->AddLast(hESDmatchedTrackPhiNegNoTRDout);
1254
1255 //NEG 24
495628f1 1256 TH2F* hTOFmatchedExpTimePiVsPhiTPCNeg = new TH2F("hTOFmatchedExpTimePiVsPhiTPCNeg", "ESDs t_{TOF}-t_{#pi,exp} vs #phi at outer TPC (p_{T}<1GeV/c);#phi_{out} (deg); t_{TOF}-t_{p,exp} [ps];Counts",72, 0.,360., nExpTimeSmallBins, fExpTimeSmallRangeMin, fExpTimeSmallRangeMax) ;
4f2b01c6 1257 // hTOFmatchedExpTimePiVsPhiTPCNeg->Sumw2() ;
4170635c 1258 if (fEnableAdvancedCheck)
1259 fHneg->AddLast(hTOFmatchedExpTimePiVsPhiTPCNeg) ;
1260
1261 //NEG 25
495628f1 1262 TH2F* hTOFmatchedExpTimeKaVsPhiTPCNeg = new TH2F("hTOFmatchedExpTimeKaVsPhiTPCNeg", "ESDs t_{TOF}-t_{K,exp} vs #phi at outer TPC (p_{T}<1GeV/c);#phi_{out} (deg); t_{TOF}-t_{p,exp} [ps];Counts",72, 0.,360., nExpTimeSmallBins, fExpTimeSmallRangeMin, fExpTimeSmallRangeMax) ;
4f2b01c6 1263 // hTOFmatchedExpTimeKaVsPhiTPCNeg->Sumw2() ;
4170635c 1264 if (fEnableAdvancedCheck)
1265 fHneg->AddLast(hTOFmatchedExpTimeKaVsPhiTPCNeg) ;
1266
495628f1 1267 //NEG 26
1268 TH2F* hTOFprimaryEtaVsPhiOutNeg = new TH2F("hTOFprimaryEtaVsPhiOutNeg", "Negative tracks, p_{T}>1GeV/c;#phi_{out} (degree); #eta; Counts", 72, 0., 360., 20, -1.,1.) ;
4f2b01c6 1269 // hTOFprimaryEtaVsPhiOutNeg->Sumw2() ;
495628f1 1270 if (fEnableAdvancedCheck)
1271 fHneg->AddLast(hTOFprimaryEtaVsPhiOutNeg) ;
1272
1273 //NEG 27
1274 TH2F* hTOFmatchedEtaVsPhiOutNeg = new TH2F("hTOFmatchedEtaVsPhiOutNeg", "Negative tracks, p_{T}>1GeV/c;#phi_{out} (degree); #eta; Counts", 72, 0., 360., 20, -1.,1.) ;
4f2b01c6 1275 // hTOFmatchedEtaVsPhiOutNeg->Sumw2() ;
495628f1 1276 if (fEnableAdvancedCheck)
1277 fHneg->AddLast(hTOFmatchedEtaVsPhiOutNeg) ;
1278
1279 //NEG 28
1280 TH2F* hTOFprimaryPtVsPhiOutNeg = new TH2F("hTOFprimaryPtVsPhiOutNeg", "Negative tracks;#phi_{out}(degree); p_{T}(GeV/c); Counts", 500, 0., 5., 20, -1.,1.) ;
4f2b01c6 1281 // hTOFprimaryPtVsPhiOutNeg->Sumw2() ;
495628f1 1282 if (fEnableAdvancedCheck)
1283 fHneg->AddLast(hTOFprimaryPtVsPhiOutNeg) ;
1284
1285 //NEG 29
1286 TH2F* hTOFmatchedPtVsPhiOutNeg = new TH2F("hTOFmatchedPtVsPhiOutNeg", "Negative tracks;#phi_{out}(degree); p_{T}(GeV/c); Counts", 500, 0., 5., 20, -1.,1.) ;
4f2b01c6 1287 // hTOFmatchedPtVsPhiOutNeg->Sumw2() ;
495628f1 1288 if (fEnableAdvancedCheck)
1289 fHneg->AddLast(hTOFmatchedPtVsPhiOutNeg) ;
1290
1291
111b2155 1292 PostData(1, fHlist);
e866f574 1293 PostData(2, fHlistTimeZero);
1294 PostData(3, fHlistPID);
4170635c 1295 PostData(4, fHpos);
1296 PostData(5, fHneg);
aac12889 1297}
1298//________________________________________________________________________
1299void AliAnalysisTaskTOFqa::UserExec(Option_t *)
1300{
1301 /* Main - executed for each event.
1302 It extracts event information and track information after selecting
1303 primary tracks via standard cuts. */
111b2155 1304
7a9f204e 1305 /*
111b2155 1306 AliESDInputHandler *esdH = dynamic_cast<AliESDInputHandler*> (AliAnalysisManager::GetAnalysisManager()->GetInputEventHandler());
1307 if (!esdH) {
1308 Printf("ERROR: Could not get ESDInputHandler");
1309 return;
1310 } else {
1311 fESD = (AliESDEvent*) esdH->GetEvent();
1312 }
7a9f204e 1313 */
1314 fESD=(AliESDEvent*)InputEvent();
1315 if (!fESD||!fESDpid) return;
1316
111b2155 1317
aac12889 1318 if (!fESD) {
1319 Printf("ERROR: fESD not available");
1320 return;
1321 }
4170635c 1322
7a9f204e 1323 AliPIDResponse::EStartTimeType_t startTimeMethodDefault = AliPIDResponse::kBest_T0;
1324 if (fESDpid->GetTOFPIDParams()) { // during reconstruction OADB not yet available
1325 startTimeMethodDefault = ((AliTOFPIDParams *)fESDpid->GetTOFPIDParams())->GetStartTimeMethod();
1326 }
1327
1328
1329
154404b2 1330 /* get run number */
1331 Int_t runNb = fESD->GetRunNumber();
1332 if (runNb>0)
1333 fRunNumber = runNb;
1334
7a9f204e 1335 // /* added PA: this ensure PID Response is correctly initialized!!! */
1336 // Int_t passNumber = 2; // this is needed
1337 // fESDpid->InitialiseEvent(fESD,passNumber); // after this call a default startTime method is selected
1338
c9232487 1339 //Get vertex info and apply vertex cut
1340 fVertex = (AliESDVertex*) fESD->GetPrimaryVertexTracks();
1341 if(fVertex->GetNContributors()<1) {
1342 // SPD vertex
1343 fVertex = (AliESDVertex*) fESD->GetPrimaryVertexSPD();
1344 if(fVertex->GetNContributors()<1) fVertex = 0x0;
1345 }
1346 if (!fVertex) return;
1347 if (! (TMath::Abs(fVertex->GetZv())<10.0) ) return;
1348
572c1318 1349 // info from V0 detector QA
4170635c 1350 AliESDVZERO * vzero = fESD->GetVZEROData();
1351 Float_t V0Atime = vzero->GetV0ATime();
1352 Float_t V0Ctime = vzero->GetV0CTime();
572c1318 1353 ((TH2F*)fHlistTimeZero->FindObject("hEventV0MeanVsVtx"))->Fill((V0Atime-V0Ctime)*0.5,(V0Atime+V0Ctime)*0.5);
4170635c 1354
c9232487 1355 // info from T0 detector QA
e866f574 1356 for (Int_t j=0;j<3;j++){
1357 fT0[j]= (Float_t) fESD->GetT0TOF(j);//ps
1358 if (fT0[j]>90000.) fT0[j]=99999.;//fix old default values to the new one
1359 }
c9232487 1360
1361 Float_t matchingMomCut = 1.0; //GeV/c
e866f574 1362 Float_t t0cut = 90000.;
1363 //Float_t t0cut =3 * t0spread; //use this cut to check t0 used in tof response
1364 // if(t0cut < 500) t0cut = 500;
aac12889 1365
e866f574 1366 if(TMath::Abs(fT0[1]) < t0cut && TMath::Abs(fT0[2]) < t0cut ) {
1367 //&& TMath::Abs(fT0[2]-fT0[1]) < 500) //add this condition to check t0 used in tof response
572c1318 1368 ((TH1F*)fHlistTimeZero->FindObject("hT0DetRes"))->Fill((fT0[2]-fT0[1])*0.5);
1369 ((TH1F*)fHlistTimeZero->FindObject("hEventT0DetAND"))->Fill(fT0[0]);
1370 ((TH2F*)fHlistTimeZero->FindObject("hEventT0MeanVsVtx"))->Fill((fT0[2]-fT0[1])*0.5,(fT0[2]+fT0[1])*0.5);
e866f574 1371 }
1372 if(TMath::Abs(fT0[1]) < t0cut){
572c1318 1373 ((TH1F*)fHlistTimeZero->FindObject("hEventT0DetA"))->Fill(fT0[1]);
e866f574 1374 }
1375 if(TMath::Abs(fT0[2]) < t0cut){
572c1318 1376 ((TH1F*)fHlistTimeZero->FindObject("hEventT0DetC"))->Fill(fT0[2]);
e866f574 1377 }
1378
572c1318 1379 // event timeZero QA via AliESDpid::SetTOFResponse()
e866f574 1380 Double_t timeZero[4]={99999.,99999.,99999.,99999.};
1381 Double_t timeZeroRes[4]={99999.,99999.,99999.,99999.};
1382
572c1318 1383 TString timeZeroHisto[4]={"hT0fill","hT0TOF","hT0T0","hT0best"};
1384 TString timeZeroHistoRes[4]={"hT0fillRes","hT0TOFRes","hT0T0Res","hT0bestRes"};
e866f574 1385 for (Int_t j=0;j<4;j++){
1386 fESDpid->SetTOFResponse(fESD, (AliESDpid::EStartTimeType_t) j);//(fill_t0, tof_t0, t0_t0, best_t0)
1387 timeZero[j]=fESDpid->GetTOFResponse().GetStartTime(10.); //timeZero for bin pT>10GeV/c
1388 timeZeroRes[j]=fESDpid->GetTOFResponse().GetStartTimeRes(10.); //timeZero for bin pT>10GeV/c
572c1318 1389 ((TH1D*)(fHlistTimeZero->FindObject(timeZeroHisto[j].Data())))->Fill(timeZero[j]);
1390 ((TH1D*)(fHlistTimeZero->FindObject(timeZeroHistoRes[j].Data())))->Fill(timeZeroRes[j]);
e866f574 1391 }
c9232487 1392 //response set to best_t0 by previous loop
1393 FillStartTimeMaskHisto();
4170635c 1394
572c1318 1395 // loop over ESD tracks
e866f574 1396 fNTOFtracks=0;
1397 // fNPrimaryTracks=0;
1398
aac12889 1399 for (Int_t iTracks = 0; iTracks < fESD->GetNumberOfTracks(); iTracks++) {
1400 AliESDtrack* track = fESD->GetTrack(iTracks);
1401 if (!track) {
1402 Printf("ERROR: Could not receive track %d", iTracks);
1403 continue;
1404 }
7a9f204e 1405 //set response tof_t0 for all checks but one
1406 fESDpid->SetTOFResponse(fESD,AliESDpid::kTOF_T0);//(fill_t0, tof_t0, t0_t0, best_t0)
aac12889 1407
1408 //primary tracks selection: kTPCrefit and std cuts
572c1318 1409 if (fTrackFilter){
1410 if(!fTrackFilter->IsSelected(track)) continue;
1411 }
1412 else{
1413 Printf("No track filter found, skipping the track loop");
1414 break;
1415 }
1416
aac12889 1417 Double_t eta=track->Eta();
4170635c 1418 if (TMath::Abs(eta)>0.8) continue; //cut for acceptance
e866f574 1419
1420 Double_t mom=track->P();
1421 Double_t mom2 = mom*mom;
1422 Double_t length=track->GetIntegratedLength();
1423 Double_t pT = track->Pt();
1424 Double_t phi=track->Phi()*TMath::RadToDeg();
1425 track->GetIntegratedTimes(fTrkExpTimes);
572c1318 1426
1427 ((TH1F*)fHlist->FindObject("hESDprimaryTrackP"))->Fill(mom);
1428 ((TH1F*)fHlist->FindObject("hESDprimaryTrackPt"))->Fill(pT);
a8f5d776 1429 if (pT>=matchingMomCut) {
572c1318 1430 ((TH1F*)fHlist->FindObject("hTOFprimaryESDeta"))->Fill(eta);
73397706 1431 ((TH1F*)fHlist->FindObject("hTOFprimaryESDphi"))->Fill(phi);
1432 }
495628f1 1433
1434 //get track phi at TPC outer radius
1435 Double_t tpcoutcoord[3]={0.,0.,0.};
1436 track->GetOuterXYZ(tpcoutcoord);
1437 Double_t phiOuterTPC=TMath::ATan2(tpcoutcoord[1],tpcoutcoord[0])*TMath::RadToDeg();
1438 if (phiOuterTPC<0) phiOuterTPC+= (2*TMath::Pi()*TMath::RadToDeg());
1439
572c1318 1440 //evaluate sign
495628f1 1441 if (fEnableAdvancedCheck){
1442 if (track->GetSign()>0){
572c1318 1443 ((TH1F*)fHpos->FindObject("hESDprimaryTrackPPos"))->Fill(mom);
1444 ((TH1F*)fHpos->FindObject("hESDprimaryTrackPtPos"))->Fill(pT);
495628f1 1445 ((TH2F*)fHpos->FindObject("hTOFprimaryPtVsPhiOutPos"))->Fill(phiOuterTPC,pT);
c9232487 1446 if (pT>=matchingMomCut){
572c1318 1447 ((TH1F*)fHpos->FindObject("hTOFprimaryESDetaPos"))->Fill(eta);
495628f1 1448 ((TH1F*)fHpos->FindObject("hTOFprimaryESDphiPos"))->Fill(phiOuterTPC);
1449 ((TH2F*)fHpos->FindObject("hTOFprimaryEtaVsPhiOutPos"))->Fill(phiOuterTPC,eta);
572c1318 1450 }
1451 if ( (track->IsOn(AliESDtrack::kTRDout)) && (track->IsOn(AliESDtrack::kTPCout)) ) {
1452 ((TH1F*)fHpos->FindObject("hESDprimaryTrackPtPosTRDout"))->Fill(pT);
c9232487 1453 if (pT>=matchingMomCut) {
572c1318 1454 ((TH1F*)fHpos->FindObject("hESDprimaryTrackEtaPosTRDout"))->Fill(eta);
495628f1 1455 ((TH1F*)fHpos->FindObject("hESDprimaryTrackPhiPosTRDout"))->Fill(phiOuterTPC);
572c1318 1456 }
1457 }
1458 if ((!(track->IsOn(AliESDtrack::kTRDout))) && (track->IsOn(AliESDtrack::kTPCout)) ) {
1459 ((TH1F*)fHpos->FindObject("hESDprimaryTrackPtPosNoTRDout"))->Fill(pT);
c9232487 1460 if (pT>=matchingMomCut) {
572c1318 1461 ((TH1F*)fHpos->FindObject("hESDprimaryTrackEtaPosNoTRDout"))->Fill(eta);
495628f1 1462 ((TH1F*)fHpos->FindObject("hESDprimaryTrackPhiPosNoTRDout"))->Fill(phiOuterTPC);
572c1318 1463 }
1464 }
1465 } //end positive
1466 else {
495628f1 1467 ((TH1F*)fHneg->FindObject("hESDprimaryTrackPNeg"))->Fill(mom);
1468 ((TH1F*)fHneg->FindObject("hESDprimaryTrackPtNeg"))->Fill(pT);
1469 ((TH2F*)fHneg->FindObject("hTOFprimaryPtVsPhiOutNeg"))->Fill(phiOuterTPC,pT);
1470
1471 if (pT>=matchingMomCut){
1472 ((TH1F*)fHneg->FindObject("hTOFprimaryESDetaNeg"))->Fill(eta);
1473 ((TH1F*)fHneg->FindObject("hTOFprimaryESDphiNeg"))->Fill(phiOuterTPC);
1474 ((TH2F*)fHneg->FindObject("hTOFprimaryEtaVsPhiOutNeg"))->Fill(phiOuterTPC,eta);
1475 }
1476 if ((track->IsOn(AliESDtrack::kTRDout)) && (track->IsOn(AliESDtrack::kTPCout)) ) {
1477 ((TH1F*)fHneg->FindObject("hESDprimaryTrackPtNegTRDout"))->Fill(pT);
1478 if (pT>=matchingMomCut) {
1479 ((TH1F*)fHneg->FindObject("hESDprimaryTrackEtaNegTRDout"))->Fill(eta);
1480 ((TH1F*)fHneg->FindObject("hESDprimaryTrackPhiNegTRDout"))->Fill(phiOuterTPC);
1481 }
1482 }
572c1318 1483 if ((!(track->IsOn(AliESDtrack::kTRDout))) && (track->IsOn(AliESDtrack::kTPCout)) ) {
1484 ((TH1F*)fHneg->FindObject("hESDprimaryTrackPtNegNoTRDout"))->Fill(pT);
c9232487 1485 if (pT>=matchingMomCut){
572c1318 1486 ((TH1F*)fHneg->FindObject("hESDprimaryTrackEtaNegNoTRDout"))->Fill(eta);
495628f1 1487 ((TH1F*)fHneg->FindObject("hESDprimaryTrackPhiNegNoTRDout"))->Fill(phiOuterTPC);
572c1318 1488 }
1489 }
1490 }//end negative
1491 }//end flag advanced check
1492
e866f574 1493 //matched tracks selection: kTOFout and kTIME
4170635c 1494 if ( (track->IsOn(AliESDtrack::kTOFout)) &&
1495 (track->IsOn(AliESDtrack::kTIME)) &&
1496 (track->IsOn(AliESDtrack::kTPCout)) ) {
aac12889 1497
e866f574 1498 Double_t tofTime=track->GetTOFsignal();//in ps
1499 Double_t tofTimeRaw=track->GetTOFsignalRaw();//in ps
1500 Double_t tofToT=track->GetTOFsignalToT(); //in ps
1501 Int_t channel=track->GetTOFCalChannel();
1502 Int_t volId[5]; //(sector, plate,strip,padZ,padX)
1503 AliTOFGeometry::GetVolumeIndices(channel,volId);
1504
1505 if (pT>=0.3) fNTOFtracks++; //matched counter
1506 Double_t tof= tofTime*1E-3; // ns, average T0 fill subtracted, no info from T0detector
572c1318 1507 ((TH1F*)fHlist->FindObject("hTOFmatchedESDtime"))->Fill(tof); //ns
1508 ((TH1F*)fHlist->FindObject("hTOFmatchedESDrawTime"))->Fill(tofTimeRaw*1E-3); //ns
1509 ((TH1F*)fHlist->FindObject("hTOFmatchedESDToT"))->Fill(tofToT);
1510 ((TH1F*)fHlist->FindObject("hTOFmatchedESDtrkLength"))->Fill(length);
1511 ((TH1F*)fHlist->FindObject("hTOFmatchedESDP"))->Fill(mom);
1512 ((TH1F*)fHlist->FindObject("hTOFmatchedESDPt"))->Fill(pT);
c9232487 1513 if (pT>=matchingMomCut){
572c1318 1514 ((TH1F*)fHlist->FindObject("hTOFmatchedESDeta"))->Fill(eta);
b5c128f2 1515 ((TH1F*)fHlist->FindObject("hTOFmatchedESDphi"))->Fill(phi);
1516 }
e866f574 1517 if (track->GetSign()>0)
572c1318 1518 ((TH2F*)fHlist->FindObject("hTOFmatchedDxVsPtPos"))->Fill(pT,track->GetTOFsignalDx());
1519 else ((TH2F*)fHlist->FindObject("hTOFmatchedDxVsPtNeg"))->Fill(pT,track->GetTOFsignalDx());
1520 ((TH2F*)fHlist->FindObject("hTOFmatchedDzVsStrip"))->Fill((Int_t)GetStripIndex(volId),track->GetTOFsignalDz());
d18f2953 1521 ((TProfile*)fHlist->FindObject("hTOFmatchedDxVsCh"))->Fill(channel,track->GetTOFsignalDx());
1522 ((TProfile*)fHlist->FindObject("hTOFmatchedDzVsCh"))->Fill(channel,track->GetTOFsignalDz());
4170635c 1523 //evaluate sign
1524 if (fEnableAdvancedCheck){
572c1318 1525 if (track->GetSign()>0){
1526 ((TH1F*)fHpos->FindObject("hTOFmatchedESDtrkLengthPos"))->Fill(length);
1527 ((TH1F*)fHpos->FindObject("hTOFmatchedESDPPos"))->Fill(mom);
1528 ((TH1F*)fHpos->FindObject("hTOFmatchedESDPtPos"))->Fill(pT);
495628f1 1529 ((TH2F*)fHpos->FindObject("hTOFmatchedPtVsPhiOutPos"))->Fill(phiOuterTPC,pT);
1530 if (pT>=matchingMomCut){
572c1318 1531 ((TH1F*)fHpos->FindObject("hTOFmatchedESDetaPos"))->Fill(eta);
495628f1 1532 ((TH1F*)fHpos->FindObject("hTOFmatchedESDphiPos"))->Fill(phiOuterTPC);
1533 ((TH2F*)fHpos->FindObject("hTOFmatchedEtaVsPhiOutPos"))->Fill(phiOuterTPC,eta);
572c1318 1534 }
1535 if ( (track->IsOn(AliESDtrack::kTRDout)) && (track->IsOn(AliESDtrack::kTPCout)) ) {
1536 ((TH1F*)fHpos->FindObject("hESDmatchedTrackPtPosTRDout"))->Fill(pT);
c9232487 1537 if (pT>=matchingMomCut){
572c1318 1538 ((TH1F*)fHpos->FindObject("hESDmatchedTrackEtaPosTRDout"))->Fill(eta);
495628f1 1539 ((TH1F*)fHpos->FindObject("hESDmatchedTrackPhiPosTRDout"))->Fill(phiOuterTPC);
572c1318 1540 }
1541 }
1542 if ((!(track->IsOn(AliESDtrack::kTRDout))) && (track->IsOn(AliESDtrack::kTPCout)) ) {
1543 ((TH1F*)fHpos->FindObject("hESDmatchedTrackPtPosNoTRDout"))->Fill(pT);
c9232487 1544 if (pT>=matchingMomCut) {
572c1318 1545 ((TH1F*)fHpos->FindObject("hESDmatchedTrackEtaPosNoTRDout"))->Fill(eta);
495628f1 1546 ((TH1F*)fHpos->FindObject("hESDmatchedTrackPhiPosNoTRDout"))->Fill(phiOuterTPC);
572c1318 1547 }
1548 }
1549 }// END POSITIVE
1550 else {
1551 ((TH1F*)fHneg->FindObject("hTOFmatchedESDtrkLengthNeg"))->Fill(length);
1552 ((TH1F*)fHneg->FindObject("hTOFmatchedESDPNeg"))->Fill(mom);
1553 ((TH1F*)fHneg->FindObject("hTOFmatchedESDPtNeg"))->Fill(pT);
495628f1 1554 ((TH2F*)fHneg->FindObject("hTOFmatchedPtVsPhiOutNeg"))->Fill(phiOuterTPC,pT);
1555
c9232487 1556 if (pT>=matchingMomCut) {
572c1318 1557 ((TH1F*)fHneg->FindObject("hTOFmatchedESDetaNeg"))->Fill(eta);
495628f1 1558 ((TH1F*)fHneg->FindObject("hTOFmatchedESDphiNeg"))->Fill(phiOuterTPC);
1559 ((TH2F*)fHneg->FindObject("hTOFmatchedEtaVsPhiOutNeg"))->Fill(phiOuterTPC,eta);
572c1318 1560 }
1561 if ((track->IsOn(AliESDtrack::kTRDout)) && (track->IsOn(AliESDtrack::kTPCout)) ) {
1562 ((TH1F*)fHneg->FindObject("hESDmatchedTrackPtNegTRDout"))->Fill(pT);
c9232487 1563 if (pT>=matchingMomCut) {
572c1318 1564 ((TH1F*)fHneg->FindObject("hESDmatchedTrackEtaNegTRDout"))->Fill(eta);
495628f1 1565 ((TH1F*)fHneg->FindObject("hESDmatchedTrackPhiNegTRDout"))->Fill(phiOuterTPC);
572c1318 1566 }
1567 }
1568 if ((!(track->IsOn(AliESDtrack::kTRDout))) && (track->IsOn(AliESDtrack::kTPCout)) ) {
1569 ((TH1F*)fHneg->FindObject("hESDmatchedTrackPtNegNoTRDout"))->Fill(pT);
c9232487 1570 if (pT>=matchingMomCut) {
572c1318 1571 ((TH1F*)fHneg->FindObject("hESDmatchedTrackEtaNegNoTRDout"))->Fill(eta);
495628f1 1572 ((TH1F*)fHneg->FindObject("hESDmatchedTrackPhiNegNoTRDout"))->Fill(phiOuterTPC);
572c1318 1573 }
1574 }
1575 }//end negative
4170635c 1576 }//end advanced check
572c1318 1577
e866f574 1578 //basic PID performance check
0cf77d52 1579 if (tof<=0) {
1580 printf("WARNING: track with negative TOF time found! Skipping this track for PID checks\n");
1581 continue;
1582 }
1583 if (mom2==0) {
1584 printf("WARNING: track with negative square momentum found! Skipping this track for PID checks\n");
1585 continue;
1586 }
1587 if (length<=0){
1588 printf("WARNING: track with negative length found!Skipping this track for PID checks\n");
1589 continue;
1590 }
e866f574 1591 Double_t c=TMath::C()*1.E-9;// m/ns
1592 Double_t mass=0.; //GeV
1593 length =length*0.01; // in meters
1594 tof=tof*c;
0cf77d52 1595 Double_t beta=length/tof;
e866f574 1596 Double_t fact= (tof/length)*(tof/length) -1.;
1597 if(fact<=0) {
1598 mass = -mom*TMath::Sqrt(-fact);
1599 }else{
1600 mass = mom*TMath::Sqrt(fact);
1601 }
572c1318 1602 ((TH2F*)fHlistPID->FindObject("hTOFmatchedESDpVsBeta"))->Fill(mom,beta);
1603 ((TH1F*) fHlistPID->FindObject("hTOFmatchedMass"))->Fill(mass);
e866f574 1604
1605 //PID sigmas
0cf77d52 1606 Bool_t isValidBeta[AliPID::kSPECIES]={0,0,0,0,0};
e866f574 1607 for (Int_t specie = 0; specie < AliPID::kSPECIES; specie++){
1608 fSigmaSpecie[specie] = fESDpid->GetTOFResponse().GetExpectedSigma(mom, fTrkExpTimes[specie], AliPID::ParticleMass(specie));
1609 beta=1/TMath::Sqrt(1+AliPID::ParticleMass(specie)*AliPID::ParticleMass(specie)/(mom2));
0cf77d52 1610 if (beta>0) {
1611 fThExpTimes[specie]=length*1.E3/(beta*c);//ps
1612 isValidBeta[specie]=kTRUE;
1613 } else {
1614 fThExpTimes[specie]=1E-10;
1615 isValidBeta[specie]=kFALSE;
1616 }
e866f574 1617 }
154404b2 1618 Float_t timeZeroTOF = (Float_t) fESDpid->GetTOFResponse().GetStartTime(pT);
0cf77d52 1619 if (isValidBeta[AliPID::kPion]){
572c1318 1620 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimePiVsEta"))->Fill((Int_t)GetStripIndex(volId),tofTime-fTrkExpTimes[AliPID::kPion]);//ps
1621 ((TH1F*)fHlistPID->FindObject("hTOFmatchedExpTimePi"))->Fill(tofTime-fTrkExpTimes[AliPID::kPion]);//ps
1622 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimePiVsP"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kPion]));
1623 ((TH1F*)fHlistPID->FindObject("hTOFtheoreticalExpTimePi"))->Fill(tofTime-fThExpTimes[AliPID::kPion]);//ps
1624 ((TH2F*)fHlistPID->FindObject("hTOFtheoreticalExpTimePiVsP"))->Fill(mom,(tofTime-fThExpTimes[AliPID::kPion]));
1625 ((TH2F*)fHlistPID->FindObject("hTOFExpSigmaPi"))->Fill(pT,(tofTime-fTrkExpTimes[AliPID::kPion])/fSigmaSpecie[AliPID::kPion]);
154404b2 1626 ((TH2F*)fHlistPID->FindObject("hTimeT0subtractedPionVsP"))->Fill(mom,tofTime-fTrkExpTimes[AliPID::kPion]-timeZeroTOF);
0cf77d52 1627 }
e866f574 1628
0cf77d52 1629 if (isValidBeta[AliPID::kKaon]){
572c1318 1630 ((TH1F*)fHlistPID->FindObject("hTOFmatchedExpTimeKa"))->Fill(tofTime-fTrkExpTimes[AliPID::kKaon]);//ps
1631 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimeKaVsP"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kKaon]));
1632 ((TH1F*)fHlistPID->FindObject("hTOFtheoreticalExpTimeKa"))->Fill(tofTime-fThExpTimes[AliPID::kKaon]);//ps
1633 ((TH2F*)fHlistPID->FindObject("hTOFtheoreticalExpTimeKaVsP"))->Fill(mom,(tofTime-fThExpTimes[AliPID::kKaon]));
1634 ((TH2F*)fHlistPID->FindObject("hTOFExpSigmaKa"))->Fill(pT,(tofTime-fTrkExpTimes[AliPID::kKaon])/fSigmaSpecie[AliPID::kKaon]);
154404b2 1635 ((TH2F*)fHlistPID->FindObject("hTimeT0subtractedKaonVsP"))->Fill(mom,tofTime-fTrkExpTimes[AliPID::kKaon]-timeZeroTOF);
0cf77d52 1636 }
1637 if (isValidBeta[AliPID::kProton]){
572c1318 1638 ((TH1F*)fHlistPID->FindObject("hTOFmatchedExpTimePro"))->Fill(tofTime-fTrkExpTimes[AliPID::kProton]);//ps
1639 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimeProVsP"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kProton]));
1640 ((TH1F*)fHlistPID->FindObject("hTOFtheoreticalExpTimePro"))->Fill(tofTime-fThExpTimes[AliPID::kProton]);//ps
1641 ((TH2F*)fHlistPID->FindObject("hTOFtheoreticalExpTimeProVsP"))->Fill(mom,(tofTime-fThExpTimes[AliPID::kProton]));
1642 ((TH2F*)fHlistPID->FindObject("hTOFExpSigmaPro"))->Fill(pT,(tofTime-fTrkExpTimes[AliPID::kProton])/fSigmaSpecie[AliPID::kProton]);
154404b2 1643 ((TH2F*)fHlistPID->FindObject("hTimeT0subtractedProtonVsP"))->Fill(mom,tofTime-fTrkExpTimes[AliPID::kProton]-timeZeroTOF);
0cf77d52 1644 }
4170635c 1645
1646 if (fEnableAdvancedCheck && (pT<1.)) {
1647 Double_t pos[3]={0.,0.,0.};
1648 track->GetXYZAt(378.,5.,pos);
1649 if ((pos[0]==0.)&&(pos[1]==0.)&&(pos[2]==0.))continue;
1650
1651 Double_t phiTOF=TMath::ATan2(pos[1],pos[0])*TMath::RadToDeg();
1652 if (phiTOF<0) phiTOF+= (2*TMath::Pi()*TMath::RadToDeg());
1653
1654 if (isValidBeta[AliPID::kProton]){
1655 if (track->GetSign()>0){
572c1318 1656 ((TH2F*)fHpos->FindObject("hTOFmatchedExpTimeProVsPhiPos"))->Fill(phiTOF,tofTime-fTrkExpTimes[AliPID::kProton]);//ps
1657 ((TH2F*)fHpos->FindObject("hTOFmatchedExpTimeProVsPhiVertexPos"))->Fill(phi,tofTime-fTrkExpTimes[AliPID::kProton]);//ps
4170635c 1658 } else {
572c1318 1659 ((TH2F*)fHneg->FindObject("hTOFmatchedExpTimeProVsPhiNeg"))->Fill(phiTOF,tofTime-fTrkExpTimes[AliPID::kProton]);//ps
1660 ((TH2F*)fHneg->FindObject("hTOFmatchedExpTimeProVsPhiVertexNeg"))->Fill(phi,tofTime-fTrkExpTimes[AliPID::kProton]);//ps
4170635c 1661 }
1662 }
1663
495628f1 1664 // track->GetOuterXYZ(pos);
1665 // Double_t phiOuterTPC=TMath::ATan2(pos[1],pos[0])*TMath::RadToDeg();
1666 // if (phiOuterTPC<0) phiOuterTPC+= (2*TMath::Pi()*TMath::RadToDeg());
4170635c 1667
1668 if (track->GetSign()>0){
1669 if (isValidBeta[AliPID::kProton])
572c1318 1670 ((TH2F*)fHpos->FindObject("hTOFmatchedExpTimeProVsPhiTPCPos"))->Fill(phiOuterTPC,tofTime-fTrkExpTimes[AliPID::kProton]);//ps
4170635c 1671 if (isValidBeta[AliPID::kPion])
572c1318 1672 ((TH2F*)fHpos->FindObject("hTOFmatchedExpTimePiVsPhiTPCPos"))->Fill(phiOuterTPC,tofTime-fTrkExpTimes[AliPID::kPion]);//ps
4170635c 1673 if (isValidBeta[AliPID::kKaon])
572c1318 1674 ((TH2F*)fHpos->FindObject("hTOFmatchedExpTimeKaVsPhiTPCPos"))->Fill(phiOuterTPC,tofTime-fTrkExpTimes[AliPID::kKaon]);//ps
4170635c 1675
1676 if ((phiOuterTPC<=30) || ((phiOuterTPC>=150)&&(phiOuterTPC<=230)) || (phiOuterTPC>=310) ) { //TRD sectors
1677 if (isValidBeta[AliPID::kPion])
572c1318 1678 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimePiVsPTRDPos"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kPion]));
4170635c 1679 if (isValidBeta[AliPID::kKaon])
572c1318 1680 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimeKaVsPTRDPos"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kKaon]));
4170635c 1681 if (isValidBeta[AliPID::kProton])
572c1318 1682 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimeProVsPTRDPos"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kProton]));
4170635c 1683 }
1684 if ( ((phiOuterTPC>=50)&&(phiOuterTPC<=130)) || ((phiOuterTPC>=250)&&(phiOuterTPC<=290)) ) {//no TRD sectors
1685 if (isValidBeta[AliPID::kPion])
572c1318 1686 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimePiVsPNoTRDPos"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kPion]));
4170635c 1687 if (isValidBeta[AliPID::kKaon])
572c1318 1688 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimeKaVsPNoTRDPos"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kKaon]));
4170635c 1689 if (isValidBeta[AliPID::kProton])
572c1318 1690 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimeProVsPNoTRDPos"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kProton]));
4170635c 1691 }
1692 }else{
1693 if (isValidBeta[AliPID::kPion])
572c1318 1694 ((TH2F*)fHneg->FindObject("hTOFmatchedExpTimePiVsPhiTPCNeg"))->Fill(phiOuterTPC,tofTime-fTrkExpTimes[AliPID::kPion]);//ps
4170635c 1695 if (isValidBeta[AliPID::kKaon])
572c1318 1696 ((TH2F*)fHneg->FindObject("hTOFmatchedExpTimeKaVsPhiTPCNeg"))->Fill(phiOuterTPC,tofTime-fTrkExpTimes[AliPID::kKaon]);//ps
4170635c 1697 if (isValidBeta[AliPID::kProton])
572c1318 1698 ((TH2F*)fHneg->FindObject("hTOFmatchedExpTimeProVsPhiTPCNeg"))->Fill(phiOuterTPC,tofTime-fTrkExpTimes[AliPID::kProton]);//ps
4170635c 1699
1700 if ((phiOuterTPC<=30) || ((phiOuterTPC>=150)&&(phiOuterTPC<=230)) || (phiOuterTPC>=310) ) { //TRD sectors
1701 if (isValidBeta[AliPID::kPion])
572c1318 1702 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimePiVsPTRDNeg"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kPion]));
4170635c 1703 if (isValidBeta[AliPID::kKaon])
572c1318 1704 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimeKaVsPTRDNeg"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kKaon]));
4170635c 1705 if (isValidBeta[AliPID::kProton])
572c1318 1706 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimeProVsPTRDNeg"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kProton]));
4170635c 1707 }
1708 if ( ((phiOuterTPC>=50)&&(phiOuterTPC<=130)) || ((phiOuterTPC>=250)&&(phiOuterTPC<=290)) ) {//no TRD sectors
1709 if (isValidBeta[AliPID::kPion])
572c1318 1710 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimePiVsPNoTRDNeg"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kPion]));
4170635c 1711 if (isValidBeta[AliPID::kKaon])
572c1318 1712 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimeKaVsPNoTRDNeg"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kKaon]));
4170635c 1713 if (isValidBeta[AliPID::kProton])
572c1318 1714 ((TH2F*)fHlistPID->FindObject("hTOFmatchedExpTimeProVsPNoTRDNeg"))->Fill(mom,(tofTime-fTrkExpTimes[AliPID::kProton]));
4170635c 1715 }
154404b2 1716 }
4170635c 1717 }//end advanced checks && cut on pT for t-texp phi distrib
154404b2 1718
1719 if (ComputeTimeZeroByTOF1GeV()){
1720 if ((pT>0.95)&&(pT<1.05)){
1721 ((TH2F*)fHlistPID->FindObject("hTOFmatchedTimePion1GeV"))->Fill(fMyTimeZeroTOFtracks,tofTime-fMyTimeZeroTOF-fTrkExpTimes[AliPID::kPion]);
1722 }
1723 }//fill timeZero TOF vs number of tracks used
7a9f204e 1724
1725 //re-set response kFILL_T0 to check post-alignment wih OADB
1726 fESDpid->SetTOFResponse(fESD,AliESDpid::kFILL_T0);//(fill_t0, tof_t0, t0_t0, best_t0)
1727 Float_t startTimeFill=fESDpid->GetTOFResponse().GetStartTime(mom); //timeZero for bin pT>10GeV/c
1728 ((TH1F*)fHlistPID->FindObject("hExpTimePiFillSub"))->Fill(tofTime-fTrkExpTimes[AliPID::kPion]-startTimeFill);//ps
1729
e866f574 1730 }//matched
7a9f204e 1731
1732
aac12889 1733 }//end loop on tracks
572c1318 1734
1735 ((TH1F*)fHlist->FindObject("hTOFmatchedPerEvt"))->Fill(fNTOFtracks) ;
1736 ((TH2F*)fHlistTimeZero->FindObject("hT0TOFvsNtrk"))->Fill(fNTOFtracks,timeZero[AliESDpid::kTOF_T0]);
7a9f204e 1737
1738 fESDpid->SetTOFResponse(fESD,startTimeMethodDefault);//restore value set by AliPIDResponseTask for subsequent wagons
aac12889 1739
aac12889 1740 PostData(1, fHlist);
e866f574 1741 PostData(2, fHlistTimeZero);
1742 PostData(3, fHlistPID);
4170635c 1743 PostData(4, fHpos);
1744 PostData(5, fHneg);
aac12889 1745}
1746
1747//________________________________________________________________________
1748void AliAnalysisTaskTOFqa::Terminate(Option_t *)
1749{
1750 //check on output validity
1751 fHlist = dynamic_cast<TList*> (GetOutputData(1));
e866f574 1752 if (!fHlist || !fHlistTimeZero) {
aac12889 1753 Printf("ERROR: lists not available");
1754 return;
1755 }
1756
1757}
1758
1759//---------------------------------------------------------------
1760Int_t AliAnalysisTaskTOFqa::GetStripIndex(const Int_t * const in)
1761{
1762 /* return tof strip index between 0 and 91 */
1763
1764 Int_t nStripA = AliTOFGeometry::NStripA();
1765 Int_t nStripB = AliTOFGeometry::NStripB();
1766 Int_t nStripC = AliTOFGeometry::NStripC();
1767
1768 Int_t iplate = in[1];
1769 Int_t istrip = in[2];
1770
1771 Int_t stripOffset = 0;
1772 switch (iplate) {
1773 case 0:
1774 stripOffset = 0;
1775 break;
1776 case 1:
1777 stripOffset = nStripC;
1778 break;
1779 case 2:
1780 stripOffset = nStripC+nStripB;
1781 break;
1782 case 3:
1783 stripOffset = nStripC+nStripB+nStripA;
1784 break;
1785 case 4:
1786 stripOffset = nStripC+nStripB+nStripA+nStripB;
1787 break;
1788 default:
1789 stripOffset=-1;
1790 break;
1791 };
1792
1793 if (stripOffset<0 || stripOffset>92) return -1;
1794 else
1795 return (stripOffset+istrip);
1796}
1797
c9232487 1798//-----------------------------------------------------------------
1799void AliAnalysisTaskTOFqa::FillStartTimeMaskHisto()
1800{
1801 /* set pid response to use best_T0 and for each
1802 accepted track fills the histogram with the
1803 used start time
1804 */
1805
1806 //set response best_t0
1807 //fESDpid->SetTOFResponse(fESD,AliESDpid::kBest_T0);
1808
1809 for (Int_t iTracks = 0; iTracks < fESD->GetNumberOfTracks(); iTracks++) {
1810 AliESDtrack* track = fESD->GetTrack(iTracks);
1811 if (!track) {
1812 Printf("ERROR: Could not receive track %d", iTracks);
1813 continue;
1814 }
1815 //primary tracks selection: kTPCrefit and std cuts
1816 if (fTrackFilter){
1817 if(!fTrackFilter->IsSelected(track)) continue;
1818 }
1819 else{
1820 Printf("No track filter found, skipping the track loop");
1821 break;
1822 }
1823 if (TMath::Abs(track->Eta())>0.8) continue; //cut for acceptance
1824
1825 Int_t StartTimeBit = fESDpid->GetTOFResponse().GetStartTimeMask(track->P());
1826 ((TH2F*)fHlistTimeZero->FindObject("hStartTimeMask"))->Fill(track->P(),StartTimeBit);
1827
1828 //matched tracks selection: kTOFout and kTIME
1829 if ( (track->IsOn(AliESDtrack::kTOFout)) &&
1830 (track->IsOn(AliESDtrack::kTIME)) &&
1831 (track->IsOn(AliESDtrack::kTPCout)) ) {
1832 ((TH2F*)fHlistTimeZero->FindObject("hStartTimeMaskMatched"))->Fill(track->P(),StartTimeBit);
1833 }
1834 }
c9232487 1835 return;
1836}
154404b2 1837
1838//----------------------------------------------------
1839Bool_t AliAnalysisTaskTOFqa::ComputeTimeZeroByTOF1GeV()
1840{
1841 /* compute T0-TOF for tracks within momentum range [0.95, 1.05] */
1842 /* init T0-TOF */
7a9f204e 1843 AliTOFT0v1 *fTOFT0v1 = new AliTOFT0v1(fESDpid); // TOF-T0 v1
154404b2 1844 fTOFT0v1->Init(fESD);
1845 //AliTOFT0v1 *fTOFT0v1 = new AliTOFT0v1(fESDpid);
1846 fTOFT0v1->DefineT0("all", 0.95, 1.05);
1847 fMyTimeZeroTOF = -1000. * fTOFT0v1->GetResult(0);
1848 fMyTimeZeroTOFsigma = 1000. * fTOFT0v1->GetResult(1);
1849 fMyTimeZeroTOFtracks = fTOFT0v1->GetResult(3);
1850 Bool_t hasTimeZeroTOF = kFALSE;
b0471367 1851 //if (fTOFT0v1) delete fTOFT0v1;//removed for coverity
154404b2 1852 /* check T0-TOF sigma */
1853 if (fMyTimeZeroTOFsigma < 250.)
1854 hasTimeZeroTOF = kTRUE;
1855 return hasTimeZeroTOF;
1856}
1857
aac12889 1858#endif