]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG1/TRD/AliTRDinfoGen.cxx
fix codding convention violations (Markus H & Alex B)
[u/mrichter/AliRoot.git] / PWG1 / TRD / AliTRDinfoGen.cxx
1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 *                                                                        *
4 * Author: The ALICE Off-line Project.                                    *
5 * Contributors are mentioned in the code where appropriate.              *
6 *                                                                        *
7 * Permission to use, copy, modify and distribute this software and its   *
8 * documentation strictly for non-commercial purposes is hereby granted   *
9 * without fee, provided that the above copyright notice appears in all   *
10 * copies and that both the copyright notice and this permission notice   *
11 * appear in the supporting documentation. The authors make no claims     *
12 * about the suitability of this software for any purpose. It is          *
13 * provided "as is" without express or implied warranty.                  *
14 **************************************************************************/
15
16 /* $Id: AliTRDinfoGen.cxx 27496 2008-07-22 08:35:45Z cblume $ */
17
18 ////////////////////////////////////////////////////////////////////////////
19 //
20 //  Tender wagon for TRD performance/calibration train
21 //
22 // In this wagon the information from
23 //   - ESD
24 //   - Friends [if available]
25 //   - MC [if available]
26 // are grouped into AliTRDtrackInfo objects and fed to worker tasks
27 //
28 //  Authors:
29 //    Markus Fasel <M.Fasel@gsi.de>
30 //    Alexandru Bercuci <A.Bercuci@gsi.de>
31 //
32 ////////////////////////////////////////////////////////////////////////////
33
34 #include <TClonesArray.h>
35 #include <TObjArray.h>
36 #include <TObject.h>
37 #include <TString.h>
38 #include <TH1S.h>
39 #include <TPad.h>
40 #include <TFile.h>
41 #include <TTree.h>
42 #include <TROOT.h>
43 #include <TChain.h>
44 #include <TParticle.h>
45
46 #include "AliLog.h"
47 #include "AliAnalysisManager.h"
48 #include "AliGeomManager.h"
49 #include "AliCDBManager.h"
50 #include "AliCDBEntry.h"
51 #include "AliCDBPath.h"
52 #include "AliESDEvent.h"
53 #include "AliMCEvent.h"
54 #include "AliESDInputHandler.h"
55 #include "AliMCEventHandler.h"
56
57 #include "AliESDfriend.h"
58 #include "AliESDfriendTrack.h"
59 #include "AliESDHeader.h"
60 #include "AliESDtrack.h"
61 #include "AliESDv0.h"
62 #include "AliESDtrackCuts.h"
63 #include "AliMCParticle.h"
64 #include "AliPID.h"
65 #include "AliStack.h"
66 #include "AliTrackReference.h"
67 #include "TTreeStream.h"
68
69 #include <cstdio>
70 #include <climits>
71 #include <cstring>
72 #include <iostream>
73 #include <memory>
74
75 #include "AliTRDReconstructor.h"
76 #include "AliTRDrecoParam.h"
77 #include "AliTRDcalibDB.h"
78 #include "AliTRDtrackerV1.h"
79 #include "AliTRDgeometry.h"
80 #include "AliTRDtrackV1.h"
81 #include "AliTRDseedV1.h"
82 #include "AliTRDcluster.h"
83 #include "AliTRDinfoGen.h"
84 #include "AliTRDpwg1Helper.h"
85 #include "info/AliTRDtrackInfo.h"
86 #include "info/AliTRDeventInfo.h"
87 #include "info/AliTRDv0Info.h"
88 #include "info/AliTRDeventCuts.h"
89
90 ClassImp(AliTRDinfoGen)
91
92 const Float_t AliTRDinfoGen::fgkITS = 100.; // to be checked
93 const Float_t AliTRDinfoGen::fgkTPC = 290.;
94 const Float_t AliTRDinfoGen::fgkTRD = 365.;
95
96 const Float_t AliTRDinfoGen::fgkEvVertexZ = 15.;
97 const Int_t   AliTRDinfoGen::fgkEvVertexN = 1;
98
99 const Float_t AliTRDinfoGen::fgkTrkDCAxy  = 3.;
100 const Float_t AliTRDinfoGen::fgkTrkDCAz   = 10.;
101 const Int_t   AliTRDinfoGen::fgkNclTPC    = 70;
102 const Float_t AliTRDinfoGen::fgkPt        = 0.2;
103 const Float_t AliTRDinfoGen::fgkEta       = 0.9;
104 AliTRDReconstructor* AliTRDinfoGen::fgReconstructor(NULL);
105 AliTRDgeometry* AliTRDinfoGen::fgGeo(NULL);
106 //____________________________________________________________________
107 AliTRDinfoGen::AliTRDinfoGen()
108   :AliAnalysisTaskSE()
109   ,fEvTrigger(NULL)
110   ,fESDev(NULL)
111   ,fMCev(NULL)
112   ,fEventCut(NULL)
113   ,fTrackCut(NULL)
114   ,fV0Cut(NULL)
115   ,fOCDB("local://$ALICE_ROOT/OCDB")
116   ,fTrackInfo(NULL)
117   ,fEventInfo(NULL)
118   ,fV0Info(NULL)
119   ,fTracksBarrel(NULL)
120   ,fTracksSA(NULL)
121   ,fTracksKink(NULL)
122   ,fV0List(NULL)
123   ,fContainer(NULL)
124   ,fDebugStream(NULL)
125 {
126   //
127   // Default constructor
128   //
129   SetNameTitle("TRDinfoGen", "MC-REC TRD-track list generator");
130 }
131
132 //____________________________________________________________________
133 AliTRDinfoGen::AliTRDinfoGen(char* name)
134   :AliAnalysisTaskSE(name)
135   ,fEvTrigger(NULL)
136   ,fESDev(NULL)
137   ,fMCev(NULL)
138   ,fEventCut(NULL)
139   ,fTrackCut(NULL)
140   ,fV0Cut(NULL)
141   ,fOCDB("local://$ALICE_ROOT/OCDB")
142   ,fTrackInfo(NULL)
143   ,fEventInfo(NULL)
144   ,fV0Info(NULL)
145   ,fTracksBarrel(NULL)
146   ,fTracksSA(NULL)
147   ,fTracksKink(NULL)
148   ,fV0List(NULL)
149   ,fContainer(NULL)
150   ,fDebugStream(NULL)
151 {
152   //
153   // Default constructor
154   //
155   SetTitle("MC-REC TRD-track list generator");
156   DefineOutput(AliTRDpwg1Helper::kTracksBarrel, TObjArray::Class());
157   DefineOutput(AliTRDpwg1Helper::kTracksSA, TObjArray::Class());
158   DefineOutput(AliTRDpwg1Helper::kTracksKink, TObjArray::Class());
159   DefineOutput(AliTRDpwg1Helper::kEventInfo, AliTRDeventInfo::Class());
160   DefineOutput(AliTRDpwg1Helper::kV0List, TObjArray::Class());
161   DefineOutput(AliTRDpwg1Helper::kMonitor, TObjArray::Class()); // histogram list
162 }
163
164 //____________________________________________________________________
165 AliTRDinfoGen::~AliTRDinfoGen()
166 {
167 // Destructor
168   if(fgGeo) delete fgGeo;
169   if(fgReconstructor) delete fgReconstructor;
170   if(fDebugStream) delete fDebugStream;
171   if(fEvTrigger) delete fEvTrigger;
172   if(fV0Cut) delete fV0Cut;
173   if(fTrackCut) delete fTrackCut;
174   if(fEventCut) delete fEventCut;
175   if(fTrackInfo) delete fTrackInfo; fTrackInfo = NULL;
176   if(fEventInfo) delete fEventInfo; fEventInfo = NULL;
177   if(fV0Info) delete fV0Info; fV0Info = NULL;
178   if(fTracksBarrel){ 
179     fTracksBarrel->Delete(); delete fTracksBarrel;
180     fTracksBarrel = NULL;
181   }
182   if(fTracksSA){ 
183     fTracksSA->Delete(); delete fTracksSA;
184     fTracksSA = NULL;
185   }
186   if(fTracksKink){ 
187     fTracksKink->Delete(); delete fTracksKink;
188     fTracksKink = NULL;
189   }
190   if(fV0List){ 
191     fV0List->Delete(); 
192     delete fV0List;
193     fV0List = NULL;
194   }
195   if(fContainer){ 
196     fContainer->Delete(); 
197     delete fContainer;
198     fContainer = NULL;
199   }
200 }
201
202 //____________________________________________________________________
203 Bool_t AliTRDinfoGen::GetRefFigure(Int_t)
204 {
205 // General graphs for PWG1/TRD train
206   if(!gPad){
207     AliWarning("Please provide a canvas to draw results.");
208     return kFALSE;
209   }
210   fContainer->At(0)->Draw("bar");
211   return kTRUE;
212 }
213
214 //____________________________________________________________________
215 void AliTRDinfoGen::UserCreateOutputObjects()
216 {       
217   //
218   // Create Output Containers (TObjectArray containing 1D histograms)
219   //
220  
221   fTrackInfo = new AliTRDtrackInfo();
222   fEventInfo = new AliTRDeventInfo();
223   fV0Info    = new AliTRDv0Info();
224   fTracksBarrel = new TObjArray(200); fTracksBarrel->SetOwner(kTRUE);
225   fTracksSA = new TObjArray(20); fTracksSA->SetOwner(kTRUE);
226   fTracksKink = new TObjArray(20); fTracksKink->SetOwner(kTRUE);
227   fV0List = new TObjArray(10); fV0List->SetOwner(kTRUE);
228
229   // define general monitor
230   fContainer = new TObjArray(1); fContainer->SetOwner(kTRUE);
231   TH1 *h=new TH1S("hStat", "Run statistics;Observable;Entries", 12, -0.5, 11.5);
232   TAxis *ax(h->GetXaxis());
233   ax->SetBinLabel( 1, "ESD");
234   ax->SetBinLabel( 2, "MC");
235   ax->SetBinLabel( 3, "V0");
236   ax->SetBinLabel( 4, "TPC");
237   ax->SetBinLabel( 5, "TRDin");
238   ax->SetBinLabel( 6, "TRDout");
239   ax->SetBinLabel( 7, "Barrel");
240   ax->SetBinLabel( 8, "BarrelMC");
241   ax->SetBinLabel( 9, "SA");
242   ax->SetBinLabel(10, "SAMC");
243   ax->SetBinLabel(11, "Kink");
244   ax->SetBinLabel(12, "KinkMC");
245   fContainer->AddAt(h, 0);
246   PostData(AliTRDpwg1Helper::kMonitor, fContainer);
247 }
248
249 //____________________________________________________________________
250 Bool_t AliTRDinfoGen::Load(const Char_t *file, const Char_t *dir, const Char_t *name)
251 {
252 // Load data from performance file
253
254   if(!TFile::Open(file)){
255     AliWarning(Form("Couldn't open file %s.", file));
256     return kFALSE;
257   }
258   if(dir){
259     if(!gFile->cd(dir)){
260       AliWarning(Form("Couldn't cd to %s in %s.", dir, file));
261       return kFALSE;
262     }
263   }
264   TObjArray *o(NULL);
265   const Char_t *tn=(name ? name : GetName());
266   if(!(o = (TObjArray*)gDirectory->Get(tn))){
267     AliWarning(Form("Missing histogram container %s.", tn));
268     return kFALSE;
269   }
270   fContainer = (TObjArray*)o->Clone(GetName());
271   gFile->Close();
272   return kTRUE;
273 }
274
275 //____________________________________________________________________
276 void AliTRDinfoGen::UserExec(Option_t *){
277   //
278   // Run the Analysis
279   //
280
281   fTracksBarrel->Delete();
282   fTracksSA->Delete();
283   fTracksKink->Delete();
284   fV0List->Delete();
285   fEventInfo->Delete("");
286
287   fESDev = dynamic_cast<AliESDEvent*>(InputEvent());
288   if(!fESDev){
289     AliError("Failed retrieving ESD event");
290     return;
291   }
292   // WARNING
293   // This part may conflict with other detectors !!
294   if(!IsInitOCDB()){ 
295     AliInfo("Initializing OCDB ...");
296     // prepare OCDB access
297     AliCDBManager* ocdb = AliCDBManager::Instance();
298     ocdb->SetDefaultStorage(fOCDB.Data());
299     ocdb->SetRun(fESDev->GetRunNumber());
300     // create geo manager
301     AliCDBEntry* obj = ocdb->Get(AliCDBPath("GRP", "Geometry", "Data"));
302     AliGeomManager::SetGeometry((TGeoManager*)obj->GetObject());
303     AliGeomManager::GetNalignable("TRD");
304     AliGeomManager::ApplyAlignObjsFromCDB("TRD");
305     fgGeo = new AliTRDgeometry;
306
307     // set no of time bins
308     AliTRDtrackerV1::SetNTimeBins(AliTRDcalibDB::Instance()->GetNumberOfTimeBinsDCS());
309     AliInfo(Form("OCDB :  Loc[%s] Run[%d] TB[%d]", fOCDB.Data(), ocdb->GetRun(), AliTRDtrackerV1::GetNTimeBins()));
310
311     AliInfo(Form("Initializing TRD reco params for EventSpecie[%d]...",
312       fESDev->GetEventSpecie()));
313     fgReconstructor = new AliTRDReconstructor();
314     obj = ocdb->Get(AliCDBPath("TRD", "Calib", "RecoParam"));
315     obj->PrintMetaData();
316     TObjArray *recos((TObjArray*)obj->GetObject());
317     for(Int_t ireco(0); ireco<recos->GetEntriesFast(); ireco++){
318       AliTRDrecoParam *reco((AliTRDrecoParam*)recos->At(ireco));
319       Int_t es(reco->GetEventSpecie());
320       if(!(es&fESDev->GetEventSpecie())) continue;
321       fgReconstructor->SetRecoParam(reco);
322       TString s;
323       if(es&AliRecoParam::kLowMult) s="LowMult";
324       else if(es&AliRecoParam::kHighMult) s="HighMult";
325       else if(es&AliRecoParam::kCosmic) s="Cosmic";
326       else if(es&AliRecoParam::kCalib) s="Calib";
327       else s="Unknown";
328       AliInfo(Form("Using reco params for %s", s.Data()));
329       break;
330     }
331     SetInitOCDB();
332   }
333
334   // link MC if available
335   fMCev = MCEvent();
336
337   // event selection : trigger cut
338   if(UseLocalEvSelection() && fEvTrigger){ 
339     Bool_t kTRIGGERED(kFALSE);
340     std::auto_ptr<TObjArray> trig(fEvTrigger->Tokenize(" "));
341     for(Int_t itrig=trig->GetEntriesFast(); itrig--;){
342       const Char_t *trigClass(((TObjString*)(*trig)[itrig])->GetName());
343       if(fESDev->IsTriggerClassFired(trigClass)) {
344         AliDebug(2, Form("Ev[%4d] Trigger[%s]", fESDev->GetEventNumberInFile(), trigClass));
345         kTRIGGERED = kTRUE;
346         break; 
347       }
348     }
349     if(!kTRIGGERED){ 
350       AliDebug(2, Form("Reject Ev[%4d] Trigger", fESDev->GetEventNumberInFile()));
351       return;
352     }
353     // select only physical events
354     if(fESDev->GetEventType() != 7){ 
355       AliDebug(2, Form("Reject Ev[%4d] EvType[%d]", fESDev->GetEventNumberInFile(), fESDev->GetEventType()));
356       return;
357     }
358   }
359
360   // if the required trigger is a collision trigger then apply event vertex cut
361   if(UseLocalEvSelection() && IsCollision()){
362     const AliESDVertex *vertex = fESDev->GetPrimaryVertex();
363     if(TMath::Abs(vertex->GetZv())<1.e-10 || 
364        TMath::Abs(vertex->GetZv())>fgkEvVertexZ || 
365        vertex->GetNContributors()<fgkEvVertexN) {
366       AliDebug(2, Form("Reject Ev[%4d] Vertex Zv[%f] Nv[%d]", fESDev->GetEventNumberInFile(), TMath::Abs(vertex->GetZv()), vertex->GetNContributors()));
367       return;
368     }
369   }
370
371   if(fEventCut && !fEventCut->IsSelected(fESDev, IsCollision())) return;
372
373   if(!fESDfriend){
374     AliError("Failed retrieving ESD friend event");
375     return;
376   }
377   if(HasMCdata() && !fMCev){
378     AliError("Failed retrieving MC event");
379     return;
380   }
381
382   new(fEventInfo)AliTRDeventInfo(fESDev->GetHeader(), const_cast<AliESDRun *>(fESDev->GetESDRun()));
383   
384   Bool_t *trackMap(NULL);
385   AliStack * mStack(NULL);
386   Int_t nTracksMC = HasMCdata() ? fMCev->GetNumberOfTracks() : 0, nTracksESD = fESDev->GetNumberOfTracks();
387   if(HasMCdata()){
388     mStack = fMCev->Stack();
389     if(!mStack){
390       AliError("Failed retrieving MC Stack");
391       return;
392     }
393     trackMap = new Bool_t[nTracksMC];
394     memset(trackMap, 0, sizeof(Bool_t) * nTracksMC);
395   }
396   
397   Double32_t dedx[100]; Int_t nSlices(0);
398   Int_t nTRDout(0), nTRDin(0), nTPC(0)
399        ,nclsTrklt
400        ,nBarrel(0), nSA(0), nKink(0)
401        ,nBarrelMC(0), nSAMC(0), nKinkMC(0);
402   AliESDtrack *esdTrack = NULL;
403   AliESDfriendTrack *esdFriendTrack = NULL;
404   TObject *calObject = NULL;
405   AliTRDtrackV1 *track = NULL;
406   AliTRDseedV1 *tracklet = NULL;
407   AliTRDcluster *cl = NULL;
408
409
410   // LOOP 0 - over ESD v0s
411   Float_t bField(fESDev->GetMagneticField());
412   AliESDv0 *v0(NULL);
413   Int_t v0pid[AliPID::kSPECIES];
414   for(Int_t iv0(0); iv0<fESDev->GetNumberOfV0s(); iv0++){
415     if(!(v0 = fESDev->GetV0(iv0))) continue;
416     // register v0
417     if(fV0Cut) new(fV0Info) AliTRDv0Info(*fV0Cut);
418     else new(fV0Info) AliTRDv0Info();
419     fV0Info->SetMagField(bField);
420     fV0Info->SetV0tracks(fESDev->GetTrack(v0->GetPindex()), fESDev->GetTrack(v0->GetNindex()));
421     fV0Info->SetV0Info(v0);
422     fV0List->Add(new AliTRDv0Info(*fV0Info));//  kFOUND=kFALSE;
423   }
424
425
426   // LOOP 1 - over ESD tracks
427   AliTRDv0Info *v0info=NULL;
428   for(Int_t itrk = 0; itrk < nTracksESD; itrk++){
429     new(fTrackInfo) AliTRDtrackInfo();
430     esdTrack = fESDev->GetTrack(itrk);
431     AliDebug(3, Form("\n%3d ITS[%d] TPC[%d] TRD[%d]\n", itrk, esdTrack->GetNcls(0), esdTrack->GetNcls(1), esdTrack->GetNcls(2)));
432
433     if(esdTrack->GetStatus()&AliESDtrack::kTPCout) nTPC++;
434     if(esdTrack->GetStatus()&AliESDtrack::kTRDout) nTRDout++;
435     if(esdTrack->GetStatus()&AliESDtrack::kTRDin) nTRDin++;
436
437     // look at external track param
438     const AliExternalTrackParam *op = esdTrack->GetOuterParam();
439     Double_t xyz[3];
440     if(op){
441       op->GetXYZ(xyz);
442       op->Global2LocalPosition(xyz, op->GetAlpha());
443       AliDebug(3, Form("op @ X[%7.3f]\n", xyz[0]));
444     }
445
446     // read MC info
447     Int_t fPdg = -1;
448     Int_t label = -1; UInt_t alab=UINT_MAX;
449     if(HasMCdata()){
450       label = esdTrack->GetLabel(); 
451       alab = TMath::Abs(label);
452       // register the track
453       if(alab < UInt_t(nTracksMC)){ 
454         trackMap[alab] = kTRUE; 
455       } else { 
456         AliError(Form("MC label[%d] outside scope for Ev[%d] Trk[%d].", label, (Int_t)AliAnalysisManager::GetAnalysisManager()->GetCurrentEntry(), itrk));
457         continue; 
458       }
459       AliMCParticle *mcParticle = NULL; 
460       if(!(mcParticle = (AliMCParticle*) fMCev->GetTrack(alab))){
461         AliError(Form("MC particle label[%d] missing for Ev[%d] Trk[%d].", label, (Int_t)AliAnalysisManager::GetAnalysisManager()->GetCurrentEntry(), itrk));
462         continue;
463       }
464       fPdg = mcParticle->Particle()->GetPdgCode();
465       Int_t nRefs = mcParticle->GetNumberOfTrackReferences();
466       Int_t iref = 0; AliTrackReference *ref = NULL; 
467       while(iref<nRefs){
468         ref = mcParticle->GetTrackReference(iref);
469         if(ref->LocalX() > fgkTPC) break;
470         iref++;
471       }
472
473       fTrackInfo->SetMC();
474       fTrackInfo->SetPDG(fPdg);
475       fTrackInfo->SetPrimary(mcParticle->Particle()->IsPrimary());
476       fTrackInfo->SetLabel(label);
477       Int_t jref = iref;//, kref = 0;
478       while(jref<nRefs){
479         ref = mcParticle->GetTrackReference(jref);
480         if(ref->LocalX() > fgkTRD) break;
481         AliDebug(4, Form("  trackRef[%2d (%2d)] @ %7.3f OK", jref-iref, jref, ref->LocalX()));
482         fTrackInfo->AddTrackRef(ref);
483         jref++;
484       }
485       AliDebug(3, Form("NtrackRefs[%d(%d)]", fTrackInfo->GetNTrackRefs(), nRefs));
486     }
487
488     // copy some relevant info to TRD track info
489     fTrackInfo->SetStatus(esdTrack->GetStatus());
490     fTrackInfo->SetTrackId(esdTrack->GetID());
491     Double_t p[AliPID::kSPECIES]; esdTrack->GetTRDpid(p);
492     fTrackInfo->SetESDpid(p);
493     fTrackInfo->SetESDpidQuality(esdTrack->GetTRDntrackletsPID());
494     if(!nSlices) nSlices = esdTrack->GetNumberOfTRDslices();
495     memset(dedx, 0, 100*sizeof(Double32_t));
496     Int_t in(0);
497     for(Int_t il=0; il<AliTRDgeometry::kNlayer; il++)
498       for(Int_t is=0; is<nSlices; is++) 
499         dedx[in++]=esdTrack->GetTRDslice(il, is);
500     for(Int_t il=0; il<AliTRDgeometry::kNlayer; il++) dedx[in++]=esdTrack->GetTRDmomentum(il);
501     fTrackInfo->SetSlices(in, dedx);
502     fTrackInfo->SetNumberOfClustersRefit(esdTrack->GetNcls(2));
503     // some other Informations which we may wish to store in order to find problematic cases
504     fTrackInfo->SetKinkIndex(esdTrack->GetKinkIndex(0));
505     fTrackInfo->SetTPCncls(static_cast<UShort_t>(esdTrack->GetNcls(1)));
506     nclsTrklt = 0;
507   
508     // set V0pid info
509     for(Int_t iv(0); iv<fV0List->GetEntriesFast(); iv++){
510       if(!(v0info = (AliTRDv0Info*)fV0List->At(iv))) continue;
511       if(!v0info->GetV0Daughter(1) && !v0info->GetV0Daughter(-1)) continue;
512       if(!v0info->HasTrack(fTrackInfo)) continue;
513       memset(v0pid, 0, AliPID::kSPECIES*sizeof(Int_t));
514       fTrackInfo->SetV0();
515       for(Int_t is=AliPID::kSPECIES; is--;){v0pid[is] = v0info->GetPID(is, fTrackInfo);}
516       fTrackInfo->SetV0pid(v0pid);
517       fTrackInfo->SetV0();
518       //const AliTRDtrackInfo::AliESDinfo *ei = fTrackInfo->GetESDinfo();
519       break;
520     }
521
522     // read REC info
523     esdFriendTrack = fESDfriend->GetTrack(itrk);
524     if(esdFriendTrack){
525       Int_t icalib = 0;
526       while((calObject = esdFriendTrack->GetCalibObject(icalib++))){
527         if(strcmp(calObject->IsA()->GetName(),"AliTRDtrackV1") != 0) continue; // Look for the TRDtrack
528         if(!(track = dynamic_cast<AliTRDtrackV1*>(calObject))) break;
529         AliDebug(4, Form("TRD track OK"));
530         // Set the clusters to unused
531         for(Int_t ipl = 0; ipl < AliTRDgeometry::kNlayer; ipl++){
532           if(!(tracklet = track->GetTracklet(ipl))) continue;
533           tracklet->ResetClusterIter();
534           while((cl = tracklet->NextCluster())) cl->Use(0);
535         }
536         fTrackInfo->SetTrack(track);
537         break;
538       }
539       AliDebug(3, Form("Ntracklets[%d]\n", fTrackInfo->GetNTracklets()));
540     } else AliDebug(3, "No ESD friends");
541     if(op) fTrackInfo->SetOuterParam(op);
542
543     if(DebugLevel() >= 1){
544       AliTRDtrackInfo info(*fTrackInfo);
545       (*DebugStream()) << "trackInfo"
546       << "TrackInfo.=" << &info
547       << "\n";
548       info.Delete("");
549     }
550
551     ULong_t status(esdTrack->GetStatus());
552     if((status&AliESDtrack::kTPCout)){
553       if(!esdTrack->GetKinkIndex(0)){ // Barrel  Track Selection
554         Bool_t selected(kTRUE);
555         if(UseLocalTrkSelection()){
556           if(esdTrack->Pt() < fgkPt){ 
557             AliDebug(2, Form("Reject Ev[%4d] Trk[%3d] Pt[%5.2f]", fESDev->GetEventNumberInFile(), itrk, esdTrack->Pt()));
558             selected = kFALSE;
559           }
560           if(selected && TMath::Abs(esdTrack->Eta()) > fgkEta){
561             AliDebug(2, Form("Reject Ev[%4d] Trk[%3d] Eta[%5.2f]", fESDev->GetEventNumberInFile(), itrk, TMath::Abs(esdTrack->Eta())));
562             selected = kFALSE;
563           }
564           if(selected && esdTrack->GetTPCNcls() < fgkNclTPC){ 
565             AliDebug(2, Form("Reject Ev[%4d] Trk[%3d] NclTPC[%d]", fESDev->GetEventNumberInFile(), itrk, esdTrack->GetTPCNcls()));
566             selected = kFALSE;
567           }
568           Float_t par[2], cov[3];
569           esdTrack->GetImpactParameters(par, cov);
570           if(IsCollision()){ // cuts on DCA
571             if(selected && TMath::Abs(par[0]) > fgkTrkDCAxy){ 
572               AliDebug(2, Form("Reject Ev[%4d] Trk[%3d] DCAxy[%f]", fESDev->GetEventNumberInFile(), itrk, TMath::Abs(par[0])));
573               selected = kFALSE;
574             }
575             if(selected && TMath::Abs(par[1]) > fgkTrkDCAz){ 
576               AliDebug(2, Form("Reject Ev[%4d] Trk[%3d] DCAz[%f]", fESDev->GetEventNumberInFile(), itrk, TMath::Abs(par[1])));
577               selected = kFALSE;
578             }
579           } else if(selected && fMCev && !fMCev->IsPhysicalPrimary(alab)){;
580             AliDebug(2, Form("Reject Ev[%4d] Trk[%3d] Primary", fESDev->GetEventNumberInFile(), itrk));
581             selected = kFALSE;
582           }
583         }
584         if(fTrackCut && !fTrackCut->IsSelected(esdTrack)) selected = kFALSE;
585         if(selected){ 
586           fTracksBarrel->Add(new AliTRDtrackInfo(*fTrackInfo));
587           nBarrel++;
588         }
589       } else {
590         fTracksKink->Add(new AliTRDtrackInfo(*fTrackInfo));
591         nKink++;
592       }
593     } else if((status&AliESDtrack::kTRDout) && !(status&AliESDtrack::kTRDin)){ 
594       fTracksSA->Add(new AliTRDtrackInfo(*fTrackInfo));
595       nSA++;
596     }
597     fTrackInfo->Delete("");
598   }
599
600   // LOOP 2 - over MC tracks which are passing TRD where the track is not reconstructed
601   if(HasMCdata()){
602     AliDebug(10, "Output of the MC track map:");
603     for(Int_t itk = 0; itk < nTracksMC;  itk++) AliDebug(10, Form("trackMap[%d] = %s", itk, trackMap[itk] == kTRUE ? "TRUE" : "kFALSE"));
604   
605     for(Int_t itk = 0; itk < nTracksMC; itk++){
606       if(trackMap[itk]) continue;
607       AliMCParticle *mcParticle =  (AliMCParticle*) fMCev->GetTrack(TMath::Abs(itk));
608       Int_t fPdg = mcParticle->Particle()->GetPdgCode();
609       Int_t nRefs = mcParticle->GetNumberOfTrackReferences();
610       Int_t iref = 0; AliTrackReference *ref = NULL; 
611       Int_t nRefsTRD = 0;
612       new(fTrackInfo) AliTRDtrackInfo();
613       fTrackInfo->SetMC();
614       fTrackInfo->SetPDG(fPdg);
615       while(iref<nRefs){ // count TRD TR
616         Bool_t kIN(kFALSE);
617         ref = mcParticle->GetTrackReference(iref);
618         if(ref->LocalX() > fgkTPC && ref->LocalX() < fgkTRD){
619           fTrackInfo->AddTrackRef(ref);
620           nRefsTRD++;kIN=kTRUE;
621         }
622         AliDebug(4, Form("  trackRef[%2d] @ x[%7.3f] %s", iref, ref->LocalX(), kIN?"IN":"OUT"));
623         iref++;
624       }
625       if(!nRefsTRD){
626         // In this stage we at least require 1 hit inside TRD. What will be done with this tracks is a task for the 
627         // analysis job
628         fTrackInfo->Delete("");
629         continue;
630       }
631       fTrackInfo->SetPrimary(mcParticle->Particle()->IsPrimary());
632       fTrackInfo->SetLabel(itk);
633       if(DebugLevel() >= 1){
634         AliTRDtrackInfo info(*fTrackInfo);
635         (*DebugStream()) << "trackInfo"
636         << "TrackInfo.=" << &info
637         << "\n";
638         info.Delete("");
639       }
640       AliDebug(3, Form("Add MC track @ label[%d] nTRDrefs[%d].", itk, nRefsTRD));
641       // check where the track starts
642       ref = mcParticle->GetTrackReference(0);
643       if(ref->LocalX() < fgkITS){ 
644         fTracksBarrel->Add(new AliTRDtrackInfo(*fTrackInfo));
645         nBarrelMC++;
646       } else if(ref->LocalX() < fgkTPC) {
647         fTracksKink->Add(new AliTRDtrackInfo(*fTrackInfo));
648         nKinkMC++;
649       } else if(nRefsTRD>6){
650         fTracksSA->Add(new AliTRDtrackInfo(*fTrackInfo));
651         nSAMC++;
652       }
653       fTrackInfo->Delete("");
654     }
655     delete[] trackMap;
656   }
657   AliDebug(1, Form(
658     "\nEv[%3d] Tracks: ESD[%d] MC[%d] V0[%d]\n"
659     "        TPCout[%d] TRDin[%d] TRDout[%d]\n"
660     "        Barrel[%3d+%3d=%3d] SA[%2d+%2d=%2d] Kink[%2d+%2d=%2d]"
661     ,(Int_t)AliAnalysisManager::GetAnalysisManager()->GetCurrentEntry(), nTracksESD, nTracksMC, fV0List->GetEntries()
662     , nTPC, nTRDin, nTRDout
663     ,nBarrel, nBarrelMC, fTracksBarrel->GetEntries()
664     ,nSA, nSAMC, fTracksSA->GetEntries()
665     ,nKink, nKinkMC, fTracksKink->GetEntries()
666   ));
667   // save track statistics
668   TH1 *h((TH1S*)fContainer->At(0));
669   h->Fill( 0., nTracksESD);
670   h->Fill( 1., nTracksMC);
671   h->Fill( 2., fV0List->GetEntries());
672   h->Fill( 3., nTPC);
673   h->Fill( 4., nTRDin);
674   h->Fill( 5., nTRDout);
675   h->Fill( 6., nBarrel);
676   h->Fill( 7., nBarrelMC);
677   h->Fill( 8., nSA);
678   h->Fill( 9., nSAMC);
679   h->Fill(10., nKink);
680   h->Fill(11., nKinkMC);
681
682   PostData(AliTRDpwg1Helper::kTracksBarrel, fTracksBarrel);
683   PostData(AliTRDpwg1Helper::kTracksSA, fTracksSA);
684   PostData(AliTRDpwg1Helper::kTracksKink, fTracksKink);
685   PostData(AliTRDpwg1Helper::kEventInfo, fEventInfo);
686   PostData(AliTRDpwg1Helper::kV0List, fV0List);
687 }
688
689 //____________________________________________________________________
690 void AliTRDinfoGen::SetLocalV0Selection(const AliTRDv0Info *v0)
691 {
692 // Set V0 cuts from outside
693
694   if(!fV0Cut) fV0Cut = new AliTRDv0Info(*v0);
695   else new(fV0Cut) AliTRDv0Info(*v0);
696 }
697
698 //____________________________________________________________________
699 void AliTRDinfoGen::SetTrigger(const Char_t *trigger)
700 {
701   if(!fEvTrigger) fEvTrigger = new TString(trigger);
702   else (*fEvTrigger) = trigger;
703 }
704
705 //____________________________________________________________________
706 TTreeSRedirector* AliTRDinfoGen::DebugStream()
707 {
708 // Manage debug stream for task
709   if(!fDebugStream){
710     TDirectory *savedir = gDirectory;
711     fDebugStream = new TTreeSRedirector("TRD.DebugInfoGen.root");
712     savedir->cd();
713   }
714   return fDebugStream;
715 }
716
717
718