]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG1/TRD/AliTRDinfoGen.cxx
prepare infrastructure for fixing bug 60872
[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 <TH1F.h>
38 #include <TFile.h>
39 #include <TTree.h>
40 #include <TROOT.h>
41 #include <TChain.h>
42 #include <TParticle.h>
43
44 #include "AliLog.h"
45 #include "AliAnalysisManager.h"
46 #include "AliESDEvent.h"
47 #include "AliMCEvent.h"
48 #include "AliESDInputHandler.h"
49 #include "AliMCEventHandler.h"
50
51 #include "AliESDfriend.h"
52 #include "AliESDfriendTrack.h"
53 #include "AliESDHeader.h"
54 #include "AliESDtrack.h"
55 #include "AliMCParticle.h"
56 #include "AliPID.h"
57 #include "AliStack.h"
58 #include "AliTRDtrackV1.h"
59 #include "AliTrackReference.h"
60 #include "AliTRDgeometry.h"
61 #include "AliTRDcluster.h"
62 #include "AliTRDseedV1.h"
63 #include "TTreeStream.h"
64
65 #include <cstdio>
66 #include <climits>
67 #include <cstring>
68 #include <iostream>
69
70 #include "AliTRDinfoGen.h"
71 #include "info/AliTRDtrackInfo.h"
72 #include "info/AliTRDeventInfo.h"
73 #include "info/AliTRDv0Info.h"
74
75 ClassImp(AliTRDinfoGen)
76
77 const Float_t AliTRDinfoGen::fgkTPC = 290.;
78 const Float_t AliTRDinfoGen::fgkTOF = 365.;
79
80 //____________________________________________________________________
81 AliTRDinfoGen::AliTRDinfoGen():
82   AliTRDrecoTask("infoGen", "MC-REC TRD-track list generator")
83   ,fESDev(NULL)
84   ,fMCev(NULL)
85   ,fESDfriend(NULL)
86   ,fTrackInfo(NULL)
87   ,fEventInfo(NULL)
88   ,fV0container(NULL)
89   ,fV0Info(NULL)
90 {
91   //
92   // Default constructor
93   //
94
95   DefineInput(0, TChain::Class());
96   DefineOutput(0, TObjArray::Class());
97   DefineOutput(1, AliTRDeventInfo::Class());
98   DefineOutput(2, TObjArray::Class());
99 }
100
101 //____________________________________________________________________
102 AliTRDinfoGen::~AliTRDinfoGen()
103 {
104 // Destructor
105
106   printf("AliTRDinfoGen::~AliTRDinfoGen() START\n");
107   if(fTrackInfo) delete fTrackInfo; fTrackInfo = NULL;
108   printf("fTrackInfo\n");
109   if(fEventInfo) delete fEventInfo; fEventInfo = NULL;
110   printf("fEventInfo\n");
111   if(fV0Info) delete fV0Info; fV0Info = NULL;
112   printf("fV0Info\n");
113   if(fContainer){ 
114     fContainer->Delete(); delete fContainer;
115     fContainer = NULL;
116   }
117   printf("fContainer\n");
118   if(fV0container){ 
119     fV0container->Delete(); delete fV0container;
120     fV0container = NULL;
121   }
122   printf("fV0container\n");
123   printf("AliTRDinfoGen::~AliTRDinfoGen() STOP\n");
124 }
125
126 //____________________________________________________________________
127 void AliTRDinfoGen::ConnectInputData(Option_t *)
128 {
129   //
130   // Link the Input Data
131   //
132   TTree *tree = dynamic_cast<TChain*>(GetInputData(0));
133   if(!tree){
134     AliError("ESD event not found");
135   } else {
136     tree->SetBranchStatus("Tracks", 1);
137     tree->SetBranchStatus("ESDfriend*",1);
138   }
139
140   AliESDInputHandler *esdH = dynamic_cast<AliESDInputHandler*>(AliAnalysisManager::GetAnalysisManager()->GetInputEventHandler());
141   if(!esdH){
142     printf("ERROR - ESD input handler not found");
143   } else {
144     fESDev = esdH->GetEvent();
145     if(!fESDev){
146       printf("ERROR - ESD event not found");
147     } else {
148       esdH->SetActiveBranches("ESDfriend*");
149       fESDfriend = (AliESDfriend *)fESDev->FindListObject("AliESDfriend");
150     }
151   }
152   if(HasMCdata()){
153     AliMCEventHandler *mcH = dynamic_cast<AliMCEventHandler*>(AliAnalysisManager::GetAnalysisManager()->GetMCtruthEventHandler());
154     if(!mcH){ 
155       AliError("MC input handler not found");
156     } else {
157       fMCev = mcH->MCEvent();
158     }
159   }
160 }
161
162 //____________________________________________________________________
163 void AliTRDinfoGen::CreateOutputObjects()
164 {       
165   //
166   // Create Output Containers (TObjectArray containing 1D histograms)
167   //
168   fTrackInfo = new AliTRDtrackInfo();
169   fEventInfo = new AliTRDeventInfo();
170   fV0Info    = new AliTRDv0Info();
171   fContainer = new TObjArray(1000);
172   fContainer->SetOwner(kTRUE);
173   fV0container = new TObjArray(50);
174   fV0container->SetOwner(kTRUE);
175
176 }
177
178 //____________________________________________________________________
179 void AliTRDinfoGen::Exec(Option_t *){
180   //
181   // Run the Analysis
182   //
183   if(!fESDev){
184     AliError("Failed retrieving ESD event");
185     return;
186   }
187   if(!fESDfriend){
188     AliError("Failed retrieving ESD friend event");
189     return;
190   }
191   if(HasMCdata() && !fMCev){
192     AliError("Failed retrieving MC event");
193     return;
194   }
195   fContainer->Delete();
196   fV0container->Delete();
197   fEventInfo->Delete("");
198   fESDev->SetESDfriend(fESDfriend);
199   new(fEventInfo)AliTRDeventInfo(fESDev->GetHeader(), const_cast<AliESDRun *>(fESDev->GetESDRun()));
200   
201   Bool_t *trackMap(NULL);
202   AliStack * mStack(NULL);
203   Int_t nTracksMC = HasMCdata() ? fMCev->GetNumberOfTracks() : 0, nTracksESD = fESDev->GetNumberOfTracks();
204   if(HasMCdata()){
205     mStack = fMCev->Stack();
206     if(!mStack){
207       AliError("Failed retrieving MC Stack");
208       return;
209     }
210     trackMap = new Bool_t[nTracksMC];
211     memset(trackMap, 0, sizeof(Bool_t) * nTracksMC);
212   }
213   
214   Int_t nTRDout(0), nTRDin(0), nTPC(0), nclsTrklt;
215   AliDebug(2, Form("Entry[%3d] Tracks: ESD[%d] MC[%d]\n", (Int_t)AliAnalysisManager::GetAnalysisManager()->GetCurrentEntry(), nTracksESD, nTracksMC));
216   AliESDtrack *esdTrack = NULL;
217   AliESDfriendTrack *esdFriendTrack = NULL;
218   TObject *calObject = NULL;
219   AliTRDtrackV1 *track = NULL;
220   AliTRDseedV1 *tracklet = NULL;
221   AliTRDcluster *cl = NULL;
222   for(Int_t itrk = 0; itrk < nTracksESD; itrk++){
223     esdTrack = fESDev->GetTrack(itrk);
224     AliDebug(3, Form("\n%3d ITS[%d] TPC[%d] TRD[%d]\n", itrk, esdTrack->GetNcls(0), esdTrack->GetNcls(1), esdTrack->GetNcls(2)));
225     if(esdTrack->GetStatus()&AliESDtrack::kTPCout) nTPC++;
226     if(esdTrack->GetStatus()&AliESDtrack::kTRDout) nTRDout++;
227     if(esdTrack->GetStatus()&AliESDtrack::kTRDin) nTRDin++;
228
229     // look at external track param
230     const AliExternalTrackParam *op = esdTrack->GetOuterParam();
231     Double_t xyz[3];
232     if(op){
233       op->GetXYZ(xyz);
234       op->Global2LocalPosition(xyz, op->GetAlpha());
235       AliDebug(3, Form("op @ X[%7.3f]\n", xyz[0]));
236     }
237
238     // read MC info
239     Int_t fPdg = -1;
240     Int_t label = -1; UInt_t alab=UINT_MAX;
241     if(HasMCdata()){
242       label = esdTrack->GetLabel(); 
243       alab = TMath::Abs(label);
244       // register the track
245       if(alab < UInt_t(nTracksMC)){ 
246         trackMap[alab] = kTRUE; 
247       } else { 
248         AliError(Form("MC label[%d] outside scope for Ev[%d] Trk[%d].", label, (Int_t)AliAnalysisManager::GetAnalysisManager()->GetCurrentEntry(), itrk));
249         continue; 
250       }
251       AliMCParticle *mcParticle = NULL; 
252       if(!(mcParticle = (AliMCParticle*) fMCev->GetTrack(alab))){
253         AliError(Form("MC particle label[%d] missing for Ev[%d] Trk[%d].", label, (Int_t)AliAnalysisManager::GetAnalysisManager()->GetCurrentEntry(), itrk));
254         continue;
255       }
256       fPdg = mcParticle->Particle()->GetPdgCode();
257       Int_t nRefs = mcParticle->GetNumberOfTrackReferences();
258       Int_t iref = 0; AliTrackReference *ref = NULL; 
259       while(iref<nRefs){
260         ref = mcParticle->GetTrackReference(iref);
261         if(ref->LocalX() > fgkTPC) break;
262         iref++;
263       }
264
265       new(fTrackInfo) AliTRDtrackInfo();
266       fTrackInfo->SetPDG(fPdg);
267       fTrackInfo->SetPrimary(mcParticle->Particle()->IsPrimary());
268       Int_t jref = iref;//, kref = 0;
269       while(jref<nRefs){
270         ref = mcParticle->GetTrackReference(jref);
271         if(ref->LocalX() > fgkTOF) break;
272         AliDebug(4, Form("  trackRef[%2d (%2d)] @ %7.3f OK", jref-iref, jref, ref->LocalX()));
273         fTrackInfo->AddTrackRef(ref);
274         jref++;
275       }
276       AliDebug(3, Form("NtrackRefs[%d(%d)]", fTrackInfo->GetNTrackRefs(), nRefs));
277     } else {
278       new (fTrackInfo) AliTRDtrackInfo();
279       fTrackInfo->SetPDG(fPdg);
280     }
281
282     // copy some relevant info to TRD track info
283     fTrackInfo->SetStatus(esdTrack->GetStatus());
284     fTrackInfo->SetTrackId(esdTrack->GetID());
285     Double_t p[AliPID::kSPECIES]; esdTrack->GetTRDpid(p);
286     fTrackInfo->SetESDpid(p);
287     fTrackInfo->SetESDpidQuality(esdTrack->GetTRDntrackletsPID());
288     fTrackInfo->SetLabel(label);
289     fTrackInfo->SetNumberOfClustersRefit(esdTrack->GetNcls(2));
290     // some other Informations which we may wish to store in order to find problematic cases
291     fTrackInfo->SetKinkIndex(esdTrack->GetKinkIndex(0));
292     fTrackInfo->SetTPCncls(static_cast<UShort_t>(esdTrack->GetNcls(1)));
293     nclsTrklt = 0;
294   
295
296     // read REC info
297     esdFriendTrack = fESDfriend->GetTrack(itrk);
298     if(esdFriendTrack){
299       Int_t icalib = 0;
300       while((calObject = esdFriendTrack->GetCalibObject(icalib++))){
301         if(strcmp(calObject->IsA()->GetName(),"AliTRDtrackV1") != 0) continue; // Look for the TRDtrack
302         if(!(track = dynamic_cast<AliTRDtrackV1*>(calObject))) break;
303         AliDebug(4, Form("TRD track OK"));
304         // Set the clusters to unused
305         for(Int_t ipl = 0; ipl < AliTRDgeometry::kNlayer; ipl++){
306           if(!(tracklet = track->GetTracklet(ipl))) continue;
307           tracklet->ResetClusterIter();
308           while((cl = tracklet->NextCluster())) cl->Use(0);
309         }
310         fTrackInfo->SetTrack(track);
311         break;
312       }
313       AliDebug(3, Form("Ntracklets[%d]\n", fTrackInfo->GetNTracklets()));
314     } else AliDebug(3, "No ESD friends");
315     if(op) fTrackInfo->SetOuterParam(op);
316
317     if(DebugLevel() >= 1){
318       AliTRDtrackInfo info(*fTrackInfo);
319       (*DebugStream()) << "trackInfo"
320       << "TrackInfo.=" << &info
321       << "\n";
322       info.Delete("");
323     }
324   
325     fContainer->Add(new AliTRDtrackInfo(*fTrackInfo));
326     fTrackInfo->Delete("");
327   }
328   AliDebug(2, Form("%3d Tracks: TPCout[%d] TRDin[%d] TRDout[%d]\n", (Int_t)AliAnalysisManager::GetAnalysisManager()->GetCurrentEntry(), nTPC, nTRDin, nTRDout));
329
330 //   AliESDv0 *v0 = NULL;
331 //   for(Int_t iv0=0; iv0<fESD->GetNumberOfV0s(); iv0++){
332 //     if(!(v0 = fESD->GetV0(iv0))) continue;
333 //     fV0container->Add(new AliTRDv0Info(v0));
334 //   }
335
336   // Insert also MC tracks which are passing TRD where the track is not reconstructed
337   if(HasMCdata()){
338     AliDebug(10, "Output of the MC track map:");
339     for(Int_t itk = 0; itk < nTracksMC;  itk++) AliDebug(10, Form("trackMap[%d] = %s", itk, trackMap[itk] == kTRUE ? "TRUE" : "kFALSE"));
340   
341     for(Int_t itk = 0; itk < nTracksMC; itk++){
342       if(trackMap[itk]) continue;
343       AliMCParticle *mcParticle =  (AliMCParticle*) fMCev->GetTrack(TMath::Abs(itk));
344       Int_t fPdg = mcParticle->Particle()->GetPdgCode();
345       Int_t nRefs = mcParticle->GetNumberOfTrackReferences();
346       Int_t iref = 0; AliTrackReference *ref = NULL; 
347       Int_t nRefsTRD = 0;
348       new(fTrackInfo) AliTRDtrackInfo();
349       fTrackInfo->SetPDG(fPdg);
350       while(iref<nRefs){
351         Bool_t kIN(kFALSE);
352         ref = mcParticle->GetTrackReference(iref);
353         if(ref->LocalX() > fgkTPC && ref->LocalX() < fgkTOF){
354           fTrackInfo->AddTrackRef(ref);
355           nRefsTRD++;kIN=kTRUE;
356         }
357         AliDebug(4, Form("  trackRef[%2d] @ x[%7.3f] %s", iref, ref->LocalX(), kIN?"IN":"OUT"));
358         iref++;
359       }
360       if(!nRefsTRD){
361         // In this stage we at least require 1 hit inside TRD. What will be done with this tracks is a task for the 
362         // analysis job
363         fTrackInfo->Delete("");
364         continue;
365       }
366       fTrackInfo->SetPrimary(mcParticle->Particle()->IsPrimary());
367       fTrackInfo->SetLabel(itk);
368       if(DebugLevel() >= 1){
369         AliTRDtrackInfo info(*fTrackInfo);
370         (*DebugStream()) << "trackInfo"
371         << "TrackInfo.=" << &info
372         << "\n";
373         info.Delete("");
374       }
375       AliDebug(3, Form("Add MC track @ label[%d] nTRDrefs[%d].", itk, nRefsTRD));
376       fContainer->Add(new AliTRDtrackInfo(*fTrackInfo));
377       fTrackInfo->Delete("");
378     }
379     delete[] trackMap;
380   }
381   PostData(0, fContainer);
382   PostData(1, fEventInfo);
383   PostData(2, fV0container);
384 }
385