]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFtracker.cxx
Adding analysis task for equalizing the VZERO signals in 2010 p-p data (David)
[u/mrichter/AliRoot.git] / TOF / AliTOFtracker.cxx
CommitLineData
596a855f 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 **************************************************************************/
0e46b9ae 15
16//--------------------------------------------------------------------//
17// //
18// AliTOFtracker Class //
19// Task: Perform association of the ESD tracks to TOF Clusters //
20// and Update ESD track with associated TOF Cluster parameters //
21// //
22// -- Authors : S. Arcelli, C. Zampolli (Bologna University and INFN) //
23// -- Contacts: Annalisa.De.Caro@cern.ch //
24// -- : Chiara.Zampolli@bo.infn.it //
25// -- : Silvia.Arcelli@bo.infn.it //
26// //
27//--------------------------------------------------------------------//
28
08048cd3 29#include <Rtypes.h>
30#include <TROOT.h>
571dda3d 31
5c7c93fa 32#include <TSeqCollection.h>
08048cd3 33#include <TClonesArray.h>
0841bd02 34#include <TObjArray.h>
08048cd3 35#include <TGeoManager.h>
36#include <TTree.h>
37#include <TFile.h>
38#include <TH2F.h>
571dda3d 39
5c7c93fa 40#include "AliGeomManager.h"
0e46b9ae 41#include "AliESDtrack.h"
af885e0f 42#include "AliESDEvent.h"
10d100d4 43#include "AliESDpid.h"
d076c8d5 44#include "AliLog.h"
0e46b9ae 45#include "AliTrackPointArray.h"
5c7c93fa 46#include "AliCDBManager.h"
596a855f 47
10d100d4 48//#include "AliTOFpidESD.h"
e0ddb533 49#include "AliTOFRecoParam.h"
3a646035 50#include "AliTOFReconstructor.h"
571dda3d 51#include "AliTOFcluster.h"
ba66add8 52#include "AliTOFGeometry.h"
571dda3d 53#include "AliTOFtracker.h"
0e46b9ae 54#include "AliTOFtrack.h"
571dda3d 55
0e46b9ae 56extern TGeoManager *gGeoManager;
5480a4f2 57//extern TROOT *gROOT;
d4754572 58
de60fa8a 59
596a855f 60ClassImp(AliTOFtracker)
61
74ea065c 62//_____________________________________________________________________________
e0ddb533 63AliTOFtracker::AliTOFtracker():
f31a249f 64 fkRecoParam(0x0),
e0ddb533 65 fGeom(0x0),
58d8d9a3 66 fN(0),
67 fNseeds(0),
68 fNseedsTOF(0),
69 fngoodmatch(0),
70 fnbadmatch(0),
71 fnunmatch(0),
72 fnmatch(0),
49436743 73 fESDEv(0),
9d802709 74 fTracks(new TClonesArray("AliTOFtrack")),
de60fa8a 75 fSeeds(new TObjArray(100)),
76 fTOFtrackPoints(new TObjArray(10)),
5664c6ed 77 fHDigClusMap(0x0),
78 fHDigNClus(0x0),
79 fHDigClusTime(0x0),
80 fHDigClusToT(0x0),
81 fHRecNClus(0x0),
82 fHRecDist(0x0),
83 fHRecSigYVsP(0x0),
84 fHRecSigZVsP(0x0),
85 fHRecSigYVsPWin(0x0),
86 fHRecSigZVsPWin(0x0),
87 fCalTree(0x0),
88 fIch(-1),
89 fToT(-1.),
90 fTime(-1.),
91 fExpTimePi(-1.),
92 fExpTimeKa(-1.),
115179c6 93 fExpTimePr(-1.),
94 fNTOFmatched(0)
78c25bbc 95{
74ea065c 96 //AliTOFtracker main Ctor
1d834a1e 97
78c25bbc 98 for (Int_t ii=0; ii<kMaxCluster; ii++) fClusters[ii]=0x0;
3a646035 99
78c25bbc 100 // Getting the geometry
101 fGeom = new AliTOFGeometry();
49436743 102 /* RS?
ea23cd7a 103 for(Int_t i=0; i< 20000;i++){
104 fClusterESD[i] = NULL;
49436743 105 fHit[i] = NULL;
ea23cd7a 106 }
49436743 107 */
78c25bbc 108 InitCheckHists();
3a646035 109
7aeeaf38 110}
5664c6ed 111//_____________________________________________________________________________
112AliTOFtracker::~AliTOFtracker() {
113 //
114 // Dtor
115 //
e0ddb533 116
5664c6ed 117 SaveCheckHists();
e0ddb533 118
5d456bcd 119 if(!(AliCDBManager::Instance()->GetCacheFlag())){
f31a249f 120 delete fkRecoParam;
5d456bcd 121 }
e0ddb533 122 delete fGeom;
5664c6ed 123 delete fHDigClusMap;
124 delete fHDigNClus;
125 delete fHDigClusTime;
126 delete fHDigClusToT;
127 delete fHRecNClus;
128 delete fHRecDist;
129 delete fHRecSigYVsP;
130 delete fHRecSigZVsP;
131 delete fHRecSigYVsPWin;
132 delete fHRecSigZVsPWin;
133 delete fCalTree;
9d802709 134 if (fTracks){
135 fTracks->Delete();
136 delete fTracks;
137 fTracks=0x0;
138 }
139 if (fSeeds){
140 fSeeds->Delete();
141 delete fSeeds;
142 fSeeds=0x0;
143 }
de60fa8a 144 if (fTOFtrackPoints){
145 fTOFtrackPoints->Delete();
146 delete fTOFtrackPoints;
147 fTOFtrackPoints=0x0;
148 }
9d802709 149
7e96dc55 150 for (Int_t ii=0; ii<kMaxCluster; ii++)
151 if (fClusters[ii]) fClusters[ii]->Delete();
1d834a1e 152
49436743 153 /* RS?
154 for(Int_t i=0; i< 20000;i++){
155 if(fClusterESD[i]){
156 delete fClusterESD[i];
157 fClusterESD[i] = NULL;
158 }
159 if(fHit[i]){
160 delete fHit[i];
161 fHit[i] = NULL;
162 }
163 }
164 */
115179c6 165
5664c6ed 166}
74ea065c 167//_____________________________________________________________________________
10d100d4 168void AliTOFtracker::GetPidSettings(AliESDpid *esdPID) {
169 //
170 // Sets TOF resolution from RecoParams
171 //
f31a249f 172 if (fkRecoParam)
173 esdPID->GetTOFResponse().SetTimeResolution(fkRecoParam->GetTimeResolution());
10d100d4 174 else
f31a249f 175 AliWarning("fkRecoParam not yet set; cannot set PID settings");
10d100d4 176}
177//_____________________________________________________________________________
f31a249f 178Int_t AliTOFtracker::PropagateBack(AliESDEvent * const event) {
74ea065c 179 //
180 // Gets seeds from ESD event and Match with TOF Clusters
181 //
49436743 182 fESDEv = event;
183 //
184 if (fN==0) {
115179c6 185 AliInfo("No TOF recPoints to be matched with reconstructed tracks");
186 return 0;
187 }
188
3a646035 189 // initialize RecoParam for current event
bafe290d 190 AliDebug(1,"Initializing params for TOF");
3a646035 191
f31a249f 192 fkRecoParam = AliTOFReconstructor::GetRecoParam(); // instantiate reco param from STEER...
90b234fe 193
f31a249f 194 if (fkRecoParam == 0x0) {
3a646035 195 AliFatal("No Reco Param found for TOF!!!");
196 }
f31a249f 197 //fkRecoParam->Dump();
198 //if(fkRecoParam->GetApplyPbPbCuts())fkRecoParam=fkRecoParam->GetPbPbparam();
199 //fkRecoParam->PrintParameters();
200
49436743 201 /* RS?
202 // create clusters from hit
203 for(Int_t i=0;i < fNTOFmatched;i++){
204 fClusterESD[i] = new AliESDTOFCluster(fHit[i],event);
205 fClusterESD[i]->SetStatus(fClusters[i]->GetStatus());
206 }
207 */
74ea065c 208 //Initialise some counters
209
210 fNseeds=0;
211 fNseedsTOF=0;
212 fngoodmatch=0;
213 fnbadmatch=0;
214 fnunmatch=0;
215 fnmatch=0;
216
217 Int_t ntrk=event->GetNumberOfTracks();
218 fNseeds = ntrk;
74ea065c 219
220
221 //Load ESD tracks into a local Array of ESD Seeds
b08af685 222 for (Int_t i=0; i<fNseeds; i++){
0841bd02 223 fSeeds->AddLast(event->GetTrack(i));
49436743 224 // event->GetTrack(i)->SetESDEvent(event); // RS: Why this is needed? The event is already set
b08af685 225 }
74ea065c 226 //Prepare ESD tracks candidates for TOF Matching
227 CollectESD();
228
115179c6 229 if (fNseeds==0 || fNseedsTOF==0) {
230 AliInfo("No seeds to try TOF match");
42c3320f 231 fSeeds->Clear();
232 fTracks->Clear();
115179c6 233 return 0 ;
234 }
235
74ea065c 236 //First Step with Strict Matching Criterion
115179c6 237 MatchTracks(0);
74ea065c 238
239 //Second Step with Looser Matching Criterion
115179c6 240 MatchTracks(1);
241
242 //Third Step without kTOFout flag (just to update clusters)
243 MatchTracks(2);
244
49436743 245 //RS? event->SetTOFcluster(fNTOFmatched,fClusterESD);
115179c6 246
49436743 247 if (fN==0) {
115179c6 248 AliInfo("No TOF recPoints to be matched with reconstructed tracks");
42c3320f 249 fSeeds->Clear();
250 fTracks->Clear();
115179c6 251 return 0;
252 }
74ea065c 253
8a06b2a0 254 AliInfo(Form("Number of matched tracks = %d (good = %d, bad = %d)",fnmatch,fngoodmatch,fnbadmatch));
74ea065c 255
256 //Update the matched ESD tracks
257
258 for (Int_t i=0; i<ntrk; i++) {
49436743 259 // RS: This is a bogus code since t and seed are the same object
74ea065c 260 AliESDtrack *t=event->GetTrack(i);
0841bd02 261 AliESDtrack *seed =(AliESDtrack*)fSeeds->At(i);
af61c656 262 if ( (seed->GetStatus()&AliESDtrack::kTOFin)!=0 ) {
263 t->SetStatus(AliESDtrack::kTOFin);
264 //if(seed->GetTOFsignal()>0){
265 if ( (seed->GetStatus()&AliESDtrack::kTOFout)!=0 ) {
266 t->SetStatus(AliESDtrack::kTOFout);
267 t->SetTOFsignal(seed->GetTOFsignal());
268 t->SetTOFcluster(seed->GetTOFcluster());
269 t->SetTOFsignalToT(seed->GetTOFsignalToT());
270 t->SetTOFsignalRaw(seed->GetTOFsignalRaw());
271 t->SetTOFsignalDz(seed->GetTOFsignalDz());
46d7d82e 272 t->SetTOFsignalDx(seed->GetTOFsignalDx());
8b441e14 273 t->SetTOFDeltaBC(seed->GetTOFDeltaBC());
274 t->SetTOFL0L1(seed->GetTOFL0L1());
af61c656 275 t->SetTOFCalChannel(seed->GetTOFCalChannel());
276 Int_t tlab[3]; seed->GetTOFLabel(tlab);
277 t->SetTOFLabel(tlab);
278
0841bd02 279 Double_t alphaA = (Double_t)t->GetAlpha();
280 Double_t xA = (Double_t)t->GetX();
281 Double_t yA = (Double_t)t->GetY();
282 Double_t zA = (Double_t)t->GetZ();
283 Double_t p1A = (Double_t)t->GetSnp();
284 Double_t p2A = (Double_t)t->GetTgl();
285 Double_t p3A = (Double_t)t->GetSigned1Pt();
286 const Double_t *covA = (Double_t*)t->GetCovariance();
e81ea7b6 287
288 // Make attention, please:
289 // AliESDtrack::fTOFInfo array does not be stored in the AliESDs.root file
290 // it is there only for a check during the reconstruction step.
291 Float_t info[10]; seed->GetTOFInfo(info);
24322e5c 292 t->SetTOFInfo(info);
e81ea7b6 293 AliDebug(3,Form(" distance=%f; residual in the pad reference frame: dX=%f, dZ=%f", info[0],info[1],info[2]));
294
295 // Check done:
296 // by calling the AliESDtrack::UpdateTrackParams,
297 // the current track parameters are changed
298 // and it could cause refit problems.
299 // We need to update only the following track parameters:
300 // the track length and expected times.
301 // Removed AliESDtrack::UpdateTrackParams call
302 // Called AliESDtrack::SetIntegratedTimes(...) and
303 // AliESDtrack::SetIntegratedLength() routines.
304 /*
305 AliTOFtrack *track = new AliTOFtrack(*seed);
306 t->UpdateTrackParams(track,AliESDtrack::kTOFout); // to be checked - AdC
307 delete track;
115179c6 308 Double_t time[AliPID::kSPECIESC]; t->GetIntegratedTimes(time);
e81ea7b6 309 */
310
fc9b31a7 311 Double_t time[AliPID::kSPECIESC]; seed->GetIntegratedTimes(time,AliPID::kSPECIESC);
e81ea7b6 312 t->SetIntegratedTimes(time);
313
314 Double_t length = seed->GetIntegratedLength();
315 t->SetIntegratedLength(length);
316
0841bd02 317 Double_t alphaB = (Double_t)t->GetAlpha();
318 Double_t xB = (Double_t)t->GetX();
319 Double_t yB = (Double_t)t->GetY();
320 Double_t zB = (Double_t)t->GetZ();
321 Double_t p1B = (Double_t)t->GetSnp();
322 Double_t p2B = (Double_t)t->GetTgl();
323 Double_t p3B = (Double_t)t->GetSigned1Pt();
324 const Double_t *covB = (Double_t*)t->GetCovariance();
115179c6 325 AliDebug(3,"Track params -now(before)-:");
326 AliDebug(3,Form(" X: %f(%f), Y: %f(%f), Z: %f(%f) --- alpha: %f(%f)",
e81ea7b6 327 xB,xA,
328 yB,yA,
329 zB,zA,
330 alphaB,alphaA));
115179c6 331 AliDebug(3,Form(" p1: %f(%f), p2: %f(%f), p3: %f(%f)",
e81ea7b6 332 p1B,p1A,
333 p2B,p2A,
334 p3B,p3A));
115179c6 335 AliDebug(3,Form(" cov1: %f(%f), cov2: %f(%f), cov3: %f(%f)"
e81ea7b6 336 " cov4: %f(%f), cov5: %f(%f), cov6: %f(%f)"
337 " cov7: %f(%f), cov8: %f(%f), cov9: %f(%f)"
338 " cov10: %f(%f), cov11: %f(%f), cov12: %f(%f)"
339 " cov13: %f(%f), cov14: %f(%f), cov15: %f(%f)",
340 covB[0],covA[0],
341 covB[1],covA[1],
342 covB[2],covA[2],
343 covB[3],covA[3],
344 covB[4],covA[4],
345 covB[5],covA[5],
346 covB[6],covA[6],
347 covB[7],covA[7],
348 covB[8],covA[8],
349 covB[9],covA[9],
350 covB[10],covA[10],
351 covB[11],covA[11],
352 covB[12],covA[12],
353 covB[13],covA[13],
354 covB[14],covA[14]
355 ));
115179c6 356 AliDebug(2,Form(" TOF params: %6d %f %f %f %f %f %6d %3d %f",
af61c656 357 i,
358 t->GetTOFsignalRaw(),
359 t->GetTOFsignal(),
360 t->GetTOFsignalToT(),
361 t->GetTOFsignalDz(),
46d7d82e 362 t->GetTOFsignalDx(),
af61c656 363 t->GetTOFCalChannel(),
364 t->GetTOFcluster(),
115179c6 365 t->GetIntegratedLength()));
366 AliDebug(2,Form(" %f %f %f %f %f %f %f %f %f",
367 time[0], time[1], time[2], time[3], time[4], time[5], time[6], time[7], time[8]));
af61c656 368 }
74ea065c 369 }
370 }
49436743 371 /* RS?
115179c6 372 if(fNTOFmatched){
373 Int_t *matchmap = new Int_t[fNTOFmatched];
374 event->SetTOFcluster(fNTOFmatched,fClusterESD,matchmap);
375 for (Int_t i=0; i<ntrk; i++) { // remapping after TOF matching selection
376 AliESDtrack *t=event->GetTrack(i);
377 t->ReMapTOFcluster(fNTOFmatched,matchmap);
378 }
379
380 delete[] matchmap;
381 }
49436743 382 */
115179c6 383
74ea065c 384 //Make TOF PID
10d100d4 385 // Now done in AliESDpid
386 // fPid->MakePID(event,timeZero);
74ea065c 387
de60fa8a 388 fSeeds->Clear();
1d834a1e 389 //fTracks->Delete();
390 fTracks->Clear();
74ea065c 391 return 0;
392
393}
394//_________________________________________________________________________
395void AliTOFtracker::CollectESD() {
396 //prepare the set of ESD tracks to be matched to clusters in TOF
5478df1f 397
398 Int_t seedsTOF1=0;
78c25bbc 399 Int_t seedsTOF3=0;
5478df1f 400 Int_t seedsTOF2=0;
74ea065c 401
74ea065c 402 TClonesArray &aTOFTrack = *fTracks;
403 for (Int_t i=0; i<fNseeds; i++) {
404
0841bd02 405 AliESDtrack *t =(AliESDtrack*)fSeeds->At(i);
74ea065c 406 if ((t->GetStatus()&AliESDtrack::kTPCout)==0)continue;
407
56da420e 408 AliTOFtrack *track = new AliTOFtrack(*t); // New
af61c656 409 Float_t x = (Float_t)track->GetX(); //New
410
78c25bbc 411 // TRD 'good' tracks
412 if ( ( (t->GetStatus()&AliESDtrack::kTRDout)!=0 ) ) {
af61c656 413
78c25bbc 414 AliDebug(1,Form(" Before propagation till inner TOF radius, ESDtrackLength=%f, TOFtrackLength=%f",t->GetIntegratedLength(),track->GetIntegratedLength()));
415
416 // TRD 'good' tracks, already propagated at 371 cm
417 if( x >= AliTOFGeometry::Rmin() ) {
418
419 if ( track->PropagateToInnerTOF() ) {
420
421 AliDebug(1,Form(" TRD propagated track till rho = %fcm."
422 " And then the track has been propagated till rho = %fcm.",
423 x, (Float_t)track->GetX()));
424
425 track->SetSeedIndex(i);
426 t->UpdateTrackParams(track,AliESDtrack::kTOFin);
427 new(aTOFTrack[fNseedsTOF]) AliTOFtrack(*track);
428 fNseedsTOF++;
429 seedsTOF1++;
430
431 AliDebug(1,Form(" After propagation till inner TOF radius, ESDtrackLength=%f, TOFtrackLength=%f",t->GetIntegratedLength(),track->GetIntegratedLength()));
432 }
433 delete track;
af61c656 434
af61c656 435 }
78c25bbc 436 else { // TRD 'good' tracks, propagated rho<371cm
437
438 if ( track->PropagateToInnerTOF() ) {
439
440 AliDebug(1,Form(" TRD propagated track till rho = %fcm."
441 " And then the track has been propagated till rho = %fcm.",
442 x, (Float_t)track->GetX()));
443
444 track->SetSeedIndex(i);
445 t->UpdateTrackParams(track,AliESDtrack::kTOFin);
446 new(aTOFTrack[fNseedsTOF]) AliTOFtrack(*track);
447 fNseedsTOF++;
448 seedsTOF3++;
449
450 AliDebug(1,Form(" After propagation till inner TOF radius, ESDtrackLength=%f, TOFtrackLength=%f",t->GetIntegratedLength(),track->GetIntegratedLength()));
451 }
452 delete track;
453
454 }
455 //delete track;
74ea065c 456 }
457
78c25bbc 458 else { // Propagate the rest of TPCbp
459
460 AliDebug(1,Form(" Before propagation till inner TOF radius, ESDtrackLength=%f, TOFtrackLength=%f",t->GetIntegratedLength(),track->GetIntegratedLength()));
461
af61c656 462 if ( track->PropagateToInnerTOF() ) {
463
464 AliDebug(1,Form(" TPC propagated track till rho = %fcm."
465 " And then the track has been propagated till rho = %fcm.",
466 x, (Float_t)track->GetX()));
467
74ea065c 468 track->SetSeedIndex(i);
af61c656 469 t->UpdateTrackParams(track,AliESDtrack::kTOFin);
74ea065c 470 new(aTOFTrack[fNseedsTOF]) AliTOFtrack(*track);
471 fNseedsTOF++;
5478df1f 472 seedsTOF2++;
78c25bbc 473
474 AliDebug(1,Form(" After propagation till inner TOF radius, ESDtrackLength=%f, TOFtrackLength=%f",t->GetIntegratedLength(),track->GetIntegratedLength()));
74ea065c 475 }
476 delete track;
477 }
478 }
479
78c25bbc 480 AliInfo(Form("Number of TOF seeds = %d (kTRDout371 = %d, kTRDoutLess371 = %d, !kTRDout = %d)",fNseedsTOF,seedsTOF1,seedsTOF3,seedsTOF2));
7b61cd9c 481
74ea065c 482 // Sort according uncertainties on track position
483 fTracks->Sort();
484
485}
78c25bbc 486
74ea065c 487//_________________________________________________________________________
115179c6 488void AliTOFtracker::MatchTracks( Int_t mLastStep){
74ea065c 489
e0ddb533 490 // Parameters used/regulating the reconstruction
491
78c25bbc 492 //static Float_t corrLen=0.;//0.75;
493 static Float_t detDepth=18.;
d01bf4f4 494 static Float_t padDepth=0.5;
e0ddb533 495
6819758a 496 const Float_t kSpeedOfLight= 2.99792458e-2; // speed of light [cm/ps]
f2524833 497 const Float_t kTimeOffset = 0.; // time offset for tracking algorithm [ps]
6819758a 498
ba66add8 499 Float_t dY=AliTOFGeometry::XPad();
500 Float_t dZ=AliTOFGeometry::ZPad();
e0ddb533 501
f31a249f 502 Float_t sensRadius = fkRecoParam->GetSensRadius();
503 Float_t stepSize = fkRecoParam->GetStepSize();
78c25bbc 504 Float_t scaleFact = fkRecoParam->GetWindowScaleFact();
f31a249f 505 Float_t dyMax=fkRecoParam->GetWindowSizeMaxY();
506 Float_t dzMax=fkRecoParam->GetWindowSizeMaxZ();
507 Float_t dCut=fkRecoParam->GetDistanceCut();
78c25bbc 508 if (dCut==3. && fNseedsTOF<=10) {
509 dCut=10.;
510 AliInfo(Form("Matching window=%f, since low multiplicity event (fNseedsTOF=%d)",
511 dCut, fNseedsTOF));
512 }
115179c6 513 if(mLastStep == 2)
514 dCut=10.;
515
516
f31a249f 517 Double_t maxChi2=fkRecoParam->GetMaxChi2TRD();
518 Bool_t timeWalkCorr = fkRecoParam->GetTimeWalkCorr();
a838421b 519 if(!mLastStep){
115179c6 520 AliDebug(1,"++++++++++++++TOF Reconstruction Parameters:++++++++++++");
a838421b 521 AliDebug(1,Form("TOF sens radius: %f",sensRadius));
522 AliDebug(1,Form("TOF step size: %f",stepSize));
523 AliDebug(1,Form("TOF Window scale factor: %f",scaleFact));
524 AliDebug(1,Form("TOF Window max dy: %f",dyMax));
525 AliDebug(1,Form("TOF Window max dz: %f",dzMax));
526 AliDebug(1,Form("TOF distance Cut: %f",dCut));
527 AliDebug(1,Form("TOF Max Chi2: %f",maxChi2));
528 AliDebug(1,Form("Time Walk Correction? : %d",timeWalkCorr));
529 }
74ea065c 530
53884c34 531 //Match ESD tracks to clusters in TOF
a533f541 532
e0ddb533 533 // Get the number of propagation steps
e0ddb533 534 Int_t nSteps=(Int_t)(detDepth/stepSize);
78c25bbc 535 AliDebug(1,Form(" Number of steps to be done %d",nSteps));
7bf28302 536
115179c6 537 AliDebug(1,"++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
538
7bf28302 539 //PH Arrays (moved outside of the loop)
540 Float_t * trackPos[4];
541 for (Int_t ii=0; ii<4; ii++) trackPos[ii] = new Float_t[nSteps];
128563f6 542 Int_t * clind = new Int_t[fN];
74ea065c 543
53884c34 544 // Some init
53884c34 545 const Int_t kNclusterMax = 1000; // related to fN value
de60fa8a 546 TGeoHMatrix global[kNclusterMax];
547
af61c656 548 //The matching loop
c0545837 549 for (Int_t iseed=0; iseed<fNseedsTOF; iseed++) {
74ea065c 550
48b634ff 551 fTOFtrackPoints->Delete();
de60fa8a 552
53884c34 553 for (Int_t ii=0; ii<kNclusterMax; ii++)
554 global[ii] = 0x0;
c0545837 555 AliTOFtrack *track =(AliTOFtrack*)fTracks->UncheckedAt(iseed);
0841bd02 556 AliESDtrack *t =(AliESDtrack*)fSeeds->At(track->GetSeedIndex());
af61c656 557 //if ( t->GetTOFsignal()>0. ) continue;
115179c6 558 if ( ((t->GetStatus()&AliESDtrack::kTOFout)!=0 ) && mLastStep < 2) continue;
de60fa8a 559 AliTOFtrack *trackTOFin = new AliTOFtrack(*track);
74ea065c 560
74ea065c 561 // Determine a window around the track
74ea065c 562 Double_t x,par[5];
563 trackTOFin->GetExternalParameters(x,par);
564 Double_t cov[15];
565 trackTOFin->GetExternalCovariance(cov);
6c94f330 566
53884c34 567 if (cov[0]<0. || cov[2]<0.) {
568 AliWarning(Form("Very strange track (%d)! At least one of its covariance matrix diagonal elements is negative!",iseed));
ecd795d8 569 //delete trackTOFin;
570 //continue;
53884c34 571 }
572
74ea065c 573 Double_t dphi=
e0ddb533 574 scaleFact*
ecd795d8 575 ((5*TMath::Sqrt(TMath::Abs(cov[0])) + 0.5*dY + 2.5*TMath::Abs(par[2]))/sensRadius);
74ea065c 576 Double_t dz=
e0ddb533 577 scaleFact*
ecd795d8 578 (5*TMath::Sqrt(TMath::Abs(cov[2])) + 0.5*dZ + 2.5*TMath::Abs(par[3]));
6c94f330 579
74ea065c 580 Double_t phi=TMath::ATan2(par[0],x) + trackTOFin->GetAlpha();
581 if (phi<-TMath::Pi())phi+=2*TMath::Pi();
582 if (phi>=TMath::Pi())phi-=2*TMath::Pi();
583 Double_t z=par[1];
584
c0545837 585 //upper limit on window's size.
de60fa8a 586 if (dz> dzMax) dz=dzMax;
587 if (dphi*sensRadius> dyMax) dphi=dyMax/sensRadius;
c0545837 588
589
74ea065c 590 // find the clusters in the window of the track
de60fa8a 591 Int_t nc=0;
74ea065c 592 for (Int_t k=FindClusterIndex(z-dz); k<fN; k++) {
7b61cd9c 593
53884c34 594 if (nc>=kNclusterMax) {
595 AliWarning("No more matchable clusters can be stored! Please, increase the corresponding vectors size.");
596 break;
597 }
598
74ea065c 599 AliTOFcluster *c=fClusters[k];
600 if (c->GetZ() > z+dz) break;
115179c6 601 if (c->IsUsed() && mLastStep < 2) continue;
17149e6b 602 if (!c->GetStatus()) {
53884c34 603 AliDebug(1,"Cluster in channel declared bad!");
604 continue; // skip bad channels as declared in OCDB
17149e6b 605 }
7b61cd9c 606
74ea065c 607 Double_t dph=TMath::Abs(c->GetPhi()-phi);
608 if (dph>TMath::Pi()) dph-=2.*TMath::Pi();
9b49e4c9 609 if (TMath::Abs(dph)>dphi) continue;
ba66add8 610
6c94f330 611 Double_t yc=(c->GetPhi() - trackTOFin->GetAlpha())*c->GetR();
612 Double_t p[2]={yc, c->GetZ()};
3c609b5c 613 Double_t cov2[3]= {dY*dY/12., 0., dZ*dZ/12.};
614 if (trackTOFin->AliExternalTrackParam::GetPredictedChi2(p,cov2) > maxChi2)continue;
6c94f330 615
128563f6 616 clind[nc] = k;
de40f9c1 617 Char_t path[200];
c0545837 618 Int_t ind[5];
128563f6 619 ind[0]=c->GetDetInd(0);
620 ind[1]=c->GetDetInd(1);
621 ind[2]=c->GetDetInd(2);
622 ind[3]=c->GetDetInd(3);
623 ind[4]=c->GetDetInd(4);
c0545837 624 fGeom->GetVolumePath(ind,path);
625 gGeoManager->cd(path);
626 global[nc] = *gGeoManager->GetCurrentMatrix();
74ea065c 627 nc++;
628 }
629
78c25bbc 630 if (nc == 0 ) {
115179c6 631 AliDebug(1,Form("No available clusters for the track number %d",iseed));
78c25bbc 632 fnunmatch++;
633 delete trackTOFin;
634 continue;
635 }
636
115179c6 637 AliDebug(1,Form(" Number of available TOF clusters for the track number %d: %d",iseed,nc));
638
74ea065c 639 //start fine propagation
640
641 Int_t nStepsDone = 0;
642 for( Int_t istep=0; istep<nSteps; istep++){
643
78c25bbc 644 // First of all, propagate the track...
645 Float_t xs = AliTOFGeometry::RinTOF()+istep*stepSize;
9a4d9088 646 if (!(trackTOFin->PropagateTo(xs))) break;
74ea065c 647
78c25bbc 648 // ...and then, if necessary, rotate the track
649 Double_t ymax = xs*TMath::Tan(0.5*AliTOFGeometry::GetAlpha());
650 Double_t ysect = trackTOFin->GetY();
74ea065c 651 if (ysect > ymax) {
9a4d9088 652 if (!(trackTOFin->Rotate(AliTOFGeometry::GetAlpha()))) break;
74ea065c 653 } else if (ysect <-ymax) {
9a4d9088 654 if (!(trackTOFin->Rotate(-AliTOFGeometry::GetAlpha()))) break;
74ea065c 655 }
656
74ea065c 657 nStepsDone++;
115179c6 658 AliDebug(3,Form(" current step %d (%d) - nStepsDone=%d",istep,nSteps,nStepsDone));
74ea065c 659
660 // store the running point (Globalrf) - fine propagation
661
6c94f330 662 Double_t r[3];
663 trackTOFin->GetXYZ(r);
78c25bbc 664 trackPos[0][nStepsDone-1]= (Float_t) r[0];
665 trackPos[1][nStepsDone-1]= (Float_t) r[1];
666 trackPos[2][nStepsDone-1]= (Float_t) r[2];
667 trackPos[3][nStepsDone-1]= trackTOFin->GetIntegratedLength();
74ea065c 668 }
669
670
78c25bbc 671#if 0
672 /*****************/
673 /**** OLD CODE ***/
674 /*****************/
675
74ea065c 676 Int_t nfound = 0;
d01bf4f4 677 Bool_t accept = kFALSE;
6819758a 678 Bool_t isInside = kFALSE;
74ea065c 679 for (Int_t istep=0; istep<nStepsDone; istep++) {
680
53884c34 681 Float_t ctrackPos[3];
ff826920 682 ctrackPos[0] = trackPos[0][istep];
683 ctrackPos[1] = trackPos[1][istep];
684 ctrackPos[2] = trackPos[2][istep];
74ea065c 685
686 //now see whether the track matches any of the TOF clusters
687
524da123 688 Float_t dist3d[3];
ff826920 689 accept = kFALSE;
690 for (Int_t i=0; i<nc; i++) {
8104fec9 691 isInside = fGeom->IsInsideThePad((TGeoHMatrix*)(&global[i]),ctrackPos,dist3d);
d01bf4f4 692
6819758a 693 if ( mLastStep ) {
694 Float_t yLoc = dist3d[1];
695 Float_t rLoc = TMath::Sqrt(dist3d[0]*dist3d[0]+dist3d[2]*dist3d[2]);
696 accept = (TMath::Abs(yLoc)<padDepth*0.5 && rLoc<dCut);
115179c6 697 AliDebug(3," I am in the case mLastStep==kTRUE ");
d01bf4f4 698 }
ff826920 699 else {
d01bf4f4 700 accept = isInside;
701 }
ff826920 702 if (accept) {
6819758a 703
de60fa8a 704 fTOFtrackPoints->AddLast(new AliTOFtrackPoint(clind[i],
705 TMath::Sqrt(dist3d[0]*dist3d[0] + dist3d[1]*dist3d[1] + dist3d[2]*dist3d[2]),
78c25bbc 706 dist3d[2],dist3d[0],dist3d[1],
707 AliTOFGeometry::RinTOF()+istep*stepSize,trackPos[3][istep]));
de60fa8a 708
115179c6 709 AliDebug(3,Form(" dist3dLoc[0] = %f, dist3dLoc[1] = %f, dist3dLoc[2] = %f ",dist3d[0],dist3d[1],dist3d[2]));
74ea065c 710 nfound++;
d01bf4f4 711 if(accept &&!mLastStep)break;
74ea065c 712 }//end if accept
524da123 713
74ea065c 714 } //end for on the clusters
d01bf4f4 715 if(accept &&!mLastStep)break;
74ea065c 716 } //end for on the steps
717
78c25bbc 718 /*****************/
719 /**** OLD CODE ***/
720 /*****************/
721#endif
722
78c25bbc 723 if ( nStepsDone == 0 ) {
115179c6 724 AliDebug(1,Form(" No track points for the track number %d",iseed));
78c25bbc 725 fnunmatch++;
726 delete trackTOFin;
727 continue;
728 }
729
115179c6 730 AliDebug(2,Form(" Number of steps done for the track number %d: %d",iseed,nStepsDone));
731
78c25bbc 732 /*****************/
733 /**** NEW CODE ***/
734 /*****************/
735
115179c6 736 Int_t *isClusterMatchable = NULL;
737 if(nc){
738 isClusterMatchable = new Int_t[nc];
739 for (Int_t i=0; i<nc; i++) isClusterMatchable[i] = kFALSE;
740 }
741
78c25bbc 742 Int_t nfound = 0;
743 Bool_t accept = kFALSE;
744 Bool_t isInside = kFALSE;
745 for (Int_t istep=0; istep<nStepsDone; istep++) {
746
747 Bool_t gotInsideCluster = kFALSE;
748 Int_t trackInsideCluster = -1;
749
750 Float_t ctrackPos[3];
751 ctrackPos[0] = trackPos[0][istep];
752 ctrackPos[1] = trackPos[1][istep];
753 ctrackPos[2] = trackPos[2][istep];
754
755 //now see whether the track matches any of the TOF clusters
756
757 Float_t dist3d[3]={0.,0.,0.};
758 accept = kFALSE;
759 for (Int_t i=0; i<nc; i++) {
760
761 // ***** NEW *****
762 /* check whether track was inside another cluster
763 * and in case inhibit this cluster.
764 * this will allow to only go on and add track points for
765 * that cluster where the track got inside first */
766 if (gotInsideCluster && trackInsideCluster != i) {
115179c6 767 AliDebug(3,Form(" A - istep=%d ~ %d %d ~ nfound=%d",istep,trackInsideCluster,i,nfound));
78c25bbc 768 continue;
769 }
115179c6 770 AliDebug(3,Form(" B - istep=%d ~ %d %d ~ nfound=%d",istep,trackInsideCluster,i,nfound));
78c25bbc 771
772 /* check whether track is inside this cluster */
773 for (Int_t hh=0; hh<3; hh++) dist3d[hh]=0.;
774 isInside = fGeom->IsInsideThePad((TGeoHMatrix*)(&global[i]),ctrackPos,dist3d);
775
776 // ***** NEW *****
777 /* if track is inside this cluster set flags which will then
778 * inhibit to add track points for the other clusters */
779 if (isInside) {
780 gotInsideCluster = kTRUE;
781 trackInsideCluster = i;
782 }
783
784 if ( mLastStep ) {
785 Float_t yLoc = dist3d[1];
786 Float_t rLoc = TMath::Sqrt(dist3d[0]*dist3d[0]+dist3d[2]*dist3d[2]);
787 accept = (TMath::Abs(yLoc)<padDepth*0.5 && rLoc<dCut);
115179c6 788 AliDebug(3," I am in the case mLastStep==kTRUE ");
78c25bbc 789 }
790
791 //***** NEW *****
792 /* add point everytime that:
793 * - the track is inside the cluster
794 * - the track got inside the cluster, even when it eventually exited the cluster
795 * - the tracks is within dCut from the cluster
796 */
797 if (accept || isInside || gotInsideCluster) {
798
799 fTOFtrackPoints->AddLast(new AliTOFtrackPoint(clind[i],
800 TMath::Sqrt(dist3d[0]*dist3d[0] + dist3d[1]*dist3d[1] + dist3d[2]*dist3d[2]),
801 dist3d[2],dist3d[0],dist3d[1],
802 AliTOFGeometry::RinTOF()+istep*stepSize,trackPos[3][istep]));
803
804 AliDebug(2,Form(" dist3dLoc[0] = %f, dist3dLoc[1] = %f, dist3dLoc[2] = %f ",dist3d[0],dist3d[1],dist3d[2]));
805 nfound++;
806
115179c6 807 AliDebug(3,Form(" C - istep=%d ~ %d %d ~ nfound=%d",istep,trackInsideCluster,i,nfound));
49436743 808
809 // store the match in the ESD
810 if (mLastStep==2 && !isClusterMatchable[i]) { // add TOF clusters to the track
811 //
115179c6 812 isClusterMatchable[i] = kTRUE;
115179c6 813 //Tracking info
814 Double_t mom=t->GetP();
815 AliDebug(3,Form(" Momentum for track %d -> %f", iseed,mom));
816 Double_t time[AliPID::kSPECIESC];
817 // read from old structure (the one used by TPC in reco)
818 for(Int_t isp=0;isp<AliPID::kSPECIESC;isp++){
819 time[isp] = t->GetIntegratedTimesOld(isp); // in ps
820 Double_t mass=AliPID::ParticleMass(isp);
821 Double_t momz = mom*AliPID::ParticleCharge(isp);
822 time[isp]+=(trackPos[3][istep]-trackPos[3][0])/kSpeedOfLight*TMath::Sqrt(momz*momz+mass*mass)/momz;
823 //time[isp]+=(trackPos[3][istep]-trackPos[3][0])/kSpeedOfLight*TMath::Sqrt(mom*mom+mass*mass)/mom;
824 }
49436743 825 //
826 AliESDTOFCluster* esdTOFCl = GetESDTOFCluster(clind[i]);
827 if(!esdTOFCl->Update(t->GetID(),dist3d[1],dist3d[0],dist3d[2],trackPos[3][istep],time))//x,y,z -> tracking RF
828 t->AddTOFcluster(esdTOFCl->GetESDID());
115179c6 829 }
830
78c25bbc 831 // ***** NEW *****
832 /* do not break loop in any case
833 * if the track got inside a cluster all other clusters
834 * are inhibited */
835 // if(accept &&!mLastStep)break;
836
837 }//end if accept
838
839 } //end for on the clusters
840
841 // ***** NEW *****
842 /* do not break loop in any case
843 * if the track got inside a cluster all other clusters
844 * are inhibited but we want to go on adding track points */
845 // if(accept &&!mLastStep)break;
846
847 } //end for on the steps
115179c6 848 if(nc) delete[] isClusterMatchable;
78c25bbc 849
74ea065c 850 if (nfound == 0 ) {
115179c6 851 AliDebug(1,Form("No track points for the track number %d",iseed));
74ea065c 852 fnunmatch++;
7bf28302 853 delete trackTOFin;
74ea065c 854 continue;
855 }
856
115179c6 857 AliDebug(1,Form(" Number of track points for the track number %d: %d",iseed,nfound));
858
74ea065c 859 // now choose the cluster to be matched with the track.
860
90b234fe 861 Int_t idclus=-1;
74ea065c 862 Float_t recL = 0.;
863 Float_t xpos=0.;
864 Float_t mindist=1000.;
e0ddb533 865 Float_t mindistZ=0.;
24322e5c 866 Float_t mindistY=0.;
78c25bbc 867 Float_t mindistX=stepSize;
868 for (Int_t iclus= 0; iclus<nfound;iclus++) {
de60fa8a 869 AliTOFtrackPoint *matchableTOFcluster = (AliTOFtrackPoint*)fTOFtrackPoints->At(iclus);
78c25bbc 870 //if ( matchableTOFcluster->Distance()<mindist ) {
871 if ( TMath::Abs(matchableTOFcluster->DistanceX())<TMath::Abs(mindistX) &&
872 TMath::Abs(matchableTOFcluster->DistanceX())<=stepSize ) {
de60fa8a 873 mindist = matchableTOFcluster->Distance();
78c25bbc 874 mindistZ = matchableTOFcluster->DistanceZ(); // Z distance in the
875 // RF of the hit pad
876 // closest to the
877 // reconstructed
878 // track
de60fa8a 879 mindistY = matchableTOFcluster->DistanceY(); // Y distance in the
880 // RF of the hit pad
881 // closest to the
882 // reconstructed
883 // track
78c25bbc 884 mindistX = matchableTOFcluster->DistanceX(); // X distance in the
885 // RF of the hit pad
886 // closest to the
887 // reconstructed
888 // track
889 xpos = matchableTOFcluster->PropRadius();
de60fa8a 890 idclus = matchableTOFcluster->Index();
78c25bbc 891 recL = matchableTOFcluster->Length();// + corrLen*0.5;
892
115179c6 893 AliDebug(2,Form(" %d(%d) --- %f (%f, %f, %f), step=%f -- idclus=%d --- seed=%d, trackId=%d, trackLab=%d", iclus,nfound,
78c25bbc 894 mindist,mindistX,mindistY,mindistZ,stepSize,idclus,iseed,track->GetSeedIndex(),track->GetLabel()));
895
74ea065c 896 }
de60fa8a 897 } // loop on found TOF track points
74ea065c 898
78c25bbc 899 if (TMath::Abs(mindistX)>stepSize && idclus!=-1) {
115179c6 900 AliInfo(Form(" %d - not matched --- but idclus=%d, trackId=%d, trackLab=%d",iseed,
78c25bbc 901 idclus,track->GetSeedIndex(),track->GetLabel()));
902 idclus=-1;
903 }
904
1d834a1e 905 if (idclus==-1) {
906 AliDebug(1,Form("Reconstructed track %d doesn't match any TOF cluster", iseed));
78c25bbc 907 fnunmatch++;
1d834a1e 908 delete trackTOFin;
909 continue;
910 }
d01bf4f4 911
115179c6 912 AliDebug(1,Form(" %d - matched",iseed));
78c25bbc 913
914 fnmatch++;
915
74ea065c 916 AliTOFcluster *c=fClusters[idclus];
de60fa8a 917
115179c6 918 AliDebug(3, Form("%7d %7d %10d %10d %10d %10d %7d",
32ead898 919 iseed,
3a646035 920 fnmatch-1,
32ead898 921 TMath::Abs(trackTOFin->GetLabel()),
922 c->GetLabel(0), c->GetLabel(1), c->GetLabel(2),
923 idclus)); // AdC
924
e0ddb533 925 c->Use();
74ea065c 926
927 // Track length correction for matching Step 2
78c25bbc 928 /*
de60fa8a 929 if (mLastStep) {
930 Float_t rc = TMath::Sqrt(c->GetR()*c->GetR() + c->GetZ()*c->GetZ());
931 Float_t rt = TMath::Sqrt(trackPos[0][70]*trackPos[0][70]
932 +trackPos[1][70]*trackPos[1][70]
933 +trackPos[2][70]*trackPos[2][70]);
934 Float_t dlt=rc-rt;
74ea065c 935 recL=trackPos[3][70]+dlt;
de60fa8a 936 }
78c25bbc 937 */
74ea065c 938 if (
939 (c->GetLabel(0)==TMath::Abs(trackTOFin->GetLabel()))
940 ||
941 (c->GetLabel(1)==TMath::Abs(trackTOFin->GetLabel()))
942 ||
943 (c->GetLabel(2)==TMath::Abs(trackTOFin->GetLabel()))
944 ) {
945 fngoodmatch++;
d3c7bfac 946
6819758a 947 AliDebug(2,Form(" track label good %5d",trackTOFin->GetLabel()));
d3c7bfac 948
74ea065c 949 }
53884c34 950 else {
74ea065c 951 fnbadmatch++;
d3c7bfac 952
6819758a 953 AliDebug(2,Form(" track label bad %5d",trackTOFin->GetLabel()));
d3c7bfac 954
74ea065c 955 }
956
957 delete trackTOFin;
958
a533f541 959 // Store quantities to be used in the TOF Calibration
ba66add8 960 Float_t tToT=AliTOFGeometry::ToTBinWidth()*c->GetToT()*1E-3; // in ns
7aeeaf38 961 t->SetTOFsignalToT(tToT);
6819758a 962 Float_t rawTime=AliTOFGeometry::TdcBinWidth()*c->GetTDCRAW()+kTimeOffset; // RAW time,in ps
d321691a 963 t->SetTOFsignalRaw(rawTime);
964 t->SetTOFsignalDz(mindistZ);
46d7d82e 965 t->SetTOFsignalDx(mindistY);
8b441e14 966 t->SetTOFDeltaBC(c->GetDeltaBC());
967 t->SetTOFL0L1(c->GetL0L1Latency());
6819758a 968
24322e5c 969 Float_t info[10] = {mindist,mindistY,mindistZ,
970 0.,0.,0.,0.,0.,0.,0.};
971 t->SetTOFInfo(info);
115179c6 972 AliDebug(3,Form(" distance=%f; residual in the pad reference frame: dX=%f, dZ=%f", info[0],info[1],info[2]));
24322e5c 973
974
a533f541 975 Int_t ind[5];
976 ind[0]=c->GetDetInd(0);
977 ind[1]=c->GetDetInd(1);
978 ind[2]=c->GetDetInd(2);
979 ind[3]=c->GetDetInd(3);
980 ind[4]=c->GetDetInd(4);
ba66add8 981 Int_t calindex = AliTOFGeometry::GetIndex(ind);
a533f541 982 t->SetTOFCalChannel(calindex);
11c7ff68 983
984 // keep track of the track labels in the matched cluster
985 Int_t tlab[3];
986 tlab[0]=c->GetLabel(0);
987 tlab[1]=c->GetLabel(1);
988 tlab[2]=c->GetLabel(2);
115179c6 989 AliDebug(3,Form(" tdc time of the matched track %6d = ",c->GetTDC()));
6819758a 990 Double_t tof=AliTOFGeometry::TdcBinWidth()*c->GetTDC()+kTimeOffset; // in ps
115179c6 991 AliDebug(3,Form(" tof time of the matched track: %f = ",tof));
5478df1f 992 Double_t tofcorr=tof;
993 if(timeWalkCorr)tofcorr=CorrectTimeWalk(mindistZ,tof);
115179c6 994 AliDebug(3,Form(" tof time of the matched track, after TW corr: %f = ",tofcorr));
5478df1f 995 //Set TOF time signal and pointer to the matched cluster
996 t->SetTOFsignal(tofcorr);
ee77ad87 997 t->SetTOFcluster(idclus); // pointing to the recPoints tree
5478df1f 998
115179c6 999 AliDebug(3,Form(" Setting TOF raw time: %f, z distance: %f corrected time: %f ",rawTime,mindistZ,tofcorr));
6819758a 1000
5478df1f 1001 //Tracking info
115179c6 1002 Double_t time[AliPID::kSPECIESC];
1003 // read from old structure (the one used by TPC in reco)
1004 for(Int_t isp=0;isp<AliPID::kSPECIESC;isp++){
1005 time[isp] = t->GetIntegratedTimesOld(isp); // in ps
1006 }
74ea065c 1007 Double_t mom=t->GetP();
115179c6 1008 AliDebug(3,Form(" Momentum for track %d -> %f", iseed,mom));
1009 for (Int_t j=0;j<AliPID::kSPECIESC;j++) {
304864ab 1010 Double_t mass=AliPID::ParticleMass(j);
115179c6 1011 Double_t momz = mom*AliPID::ParticleCharge(j);
1012 time[j]+=(recL-trackPos[3][0])/kSpeedOfLight*TMath::Sqrt(momz*momz+mass*mass)/momz;
1013 //time[j]+=(recL-trackPos[3][0])/kSpeedOfLight*TMath::Sqrt(mom*mom+mass*mass)/mom;
74ea065c 1014 }
1015
1016 AliTOFtrack *trackTOFout = new AliTOFtrack(*t);
9a4d9088 1017 if (!(trackTOFout->PropagateTo(xpos))) {
1018 delete trackTOFout;
1019 continue;
1020 }
77a9ea9a 1021
78c25bbc 1022 // If necessary, rotate the track
1023 Double_t yATxposMax=xpos*TMath::Tan(0.5*AliTOFGeometry::GetAlpha());
1024 Double_t yATxpos=trackTOFout->GetY();
1025 if (yATxpos > yATxposMax) {
9a4d9088 1026 if (!(trackTOFout->Rotate(AliTOFGeometry::GetAlpha()))) {
1027 delete trackTOFout;
1028 continue;
1029 }
78c25bbc 1030 } else if (yATxpos < -yATxposMax) {
9a4d9088 1031 if (!(trackTOFout->Rotate(-AliTOFGeometry::GetAlpha()))) {
1032 delete trackTOFout;
1033 continue;
1034 }
78c25bbc 1035 }
1036
115179c6 1037 // Fill the track residual histograms and update track only if in the first two step (0 and 1)
1038 if(mLastStep < 2){
1039 FillResiduals(trackTOFout,c,kFALSE);
77a9ea9a 1040
115179c6 1041 t->UpdateTrackParams(trackTOFout,AliESDtrack::kTOFout);
5478df1f 1042
115179c6 1043// don't update old structure with TOF info
1044// t->SetIntegratedLength(recL);
1045// t->SetIntegratedTimes(time);
1046// t->SetTOFLabel(tlab);
5478df1f 1047
49436743 1048 // add tof cluster to the track also for step 2
1049 AliESDTOFCluster* esdTOFCl = GetESDTOFCluster(idclus);
1050 esdTOFCl->Update(t->GetID(),mindistY,mindist,mindistZ,recL,time);
1051 t->AddTOFcluster(esdTOFCl->GetESDID());
1052 /* RS?
115179c6 1053 if(idclus < 20000){
1054 fClusterESD[idclus]->Update(t->GetID(),mindistY,mindist,mindistZ,recL,time);//x,y,z -> tracking RF
1055
1056 t->AddTOFcluster(idclus);
1057 }
1058 else{
1059 AliInfo("Too many TOF clusters matched with tracks (> 20000)");
1060 }
49436743 1061 */
115179c6 1062 }
5664c6ed 1063 // Fill Reco-QA histos for Reconstruction
1064 fHRecNClus->Fill(nc);
1065 fHRecDist->Fill(mindist);
38c767fa 1066 if (cov[0]>=0.)
1067 fHRecSigYVsP->Fill(mom,TMath::Sqrt(cov[0]));
1068 else
57bd70af 1069 fHRecSigYVsP->Fill(mom,-TMath::Sqrt(-cov[0]));
38c767fa 1070 if (cov[2]>=0.)
1071 fHRecSigZVsP->Fill(mom,TMath::Sqrt(cov[2]));
1072 else
57bd70af 1073 fHRecSigZVsP->Fill(mom,-TMath::Sqrt(-cov[2]));
e0ddb533 1074 fHRecSigYVsPWin->Fill(mom,dphi*sensRadius);
5664c6ed 1075 fHRecSigZVsPWin->Fill(mom,dz);
1076
1077 // Fill Tree for on-the-fly offline Calibration
1078
53884c34 1079 if ( !((t->GetStatus() & AliESDtrack::kTIME)==0 ) ) {
5664c6ed 1080 fIch=calindex;
1081 fToT=tToT;
5478df1f 1082 fTime=rawTime;
5664c6ed 1083 fExpTimePi=time[2];
1084 fExpTimeKa=time[3];
1085 fExpTimePr=time[4];
1086 fCalTree->Fill();
1087 }
74ea065c 1088 delete trackTOFout;
1089 }
de60fa8a 1090
115179c6 1091
7bf28302 1092 for (Int_t ii=0; ii<4; ii++) delete [] trackPos[ii];
128563f6 1093 delete [] clind;
ba66add8 1094
74ea065c 1095}
1096//_________________________________________________________________________
7b61cd9c 1097Int_t AliTOFtracker::LoadClusters(TTree *cTree) {
74ea065c 1098 //--------------------------------------------------------------------
1099 //This function loads the TOF clusters
1100 //--------------------------------------------------------------------
1101
ba66add8 1102 Int_t npadX = AliTOFGeometry::NpadX();
1103 Int_t npadZ = AliTOFGeometry::NpadZ();
1104 Int_t nStripA = AliTOFGeometry::NStripA();
1105 Int_t nStripB = AliTOFGeometry::NStripB();
1106 Int_t nStripC = AliTOFGeometry::NStripC();
5664c6ed 1107
7b61cd9c 1108 TBranch *branch=cTree->GetBranch("TOF");
74ea065c 1109 if (!branch) {
7b61cd9c 1110 AliError("can't get the branch with the TOF clusters !");
74ea065c 1111 return 1;
1112 }
1113
9d802709 1114 static TClonesArray dummy("AliTOFcluster",10000);
1115 dummy.Clear();
1116 TClonesArray *clusters=&dummy;
7b61cd9c 1117 branch->SetAddress(&clusters);
74ea065c 1118
7b61cd9c 1119 cTree->GetEvent(0);
1120 Int_t nc=clusters->GetEntriesFast();
5664c6ed 1121 fHDigNClus->Fill(nc);
1122
7b61cd9c 1123 AliInfo(Form("Number of clusters: %d",nc));
74ea065c 1124
ba597140 1125 fN = 0;
115179c6 1126 fNTOFmatched = 0;
115179c6 1127
7b61cd9c 1128 for (Int_t i=0; i<nc; i++) {
1129 AliTOFcluster *c=(AliTOFcluster*)clusters->UncheckedAt(i);
16a2e36a 1130//PH fClusters[i]=new AliTOFcluster(*c); fN++;
1131 fClusters[i]=c; fN++;
49436743 1132 c->SetESDID(-1);
5664c6ed 1133 // Fill Digits QA histos
1134
1135 Int_t isector = c->GetDetInd(0);
1136 Int_t iplate = c->GetDetInd(1);
1137 Int_t istrip = c->GetDetInd(2);
1138 Int_t ipadX = c->GetDetInd(4);
1139 Int_t ipadZ = c->GetDetInd(3);
1140
ba66add8 1141 Float_t time =(AliTOFGeometry::TdcBinWidth()*c->GetTDC())*1E-3; // in ns
1142 Float_t tot = (AliTOFGeometry::TdcBinWidth()*c->GetToT())*1E-3;//in ns
115179c6 1143
49436743 1144 /* RS?
115179c6 1145 Int_t ind[5];
1146 ind[0]=isector;
1147 ind[1]=iplate;
1148 ind[2]=istrip;
fedc2fd0 1149 ind[3]=ipadZ;
1150 ind[4]=ipadX;
115179c6 1151 Int_t calindex = AliTOFGeometry::GetIndex(ind);
1152 Int_t tofLabels[3]={c->GetLabel(0),c->GetLabel(1),c->GetLabel(2)};
49436743 1153 */
5664c6ed 1154 Int_t stripOffset = 0;
1155 switch (iplate) {
1156 case 0:
1157 stripOffset = 0;
1158 break;
1159 case 1:
1160 stripOffset = nStripC;
1161 break;
1162 case 2:
1163 stripOffset = nStripC+nStripB;
1164 break;
1165 case 3:
1166 stripOffset = nStripC+nStripB+nStripA;
1167 break;
1168 case 4:
1169 stripOffset = nStripC+nStripB+nStripA+nStripB;
1170 break;
1171 default:
1172 AliError(Form("Wrong plate number in TOF (%d) !",iplate));
1173 break;
1174 };
1175 Int_t zindex=npadZ*(istrip+stripOffset)+(ipadZ+1);
1176 Int_t phiindex=npadX*isector+ipadX+1;
1177 fHDigClusMap->Fill(zindex,phiindex);
1178 fHDigClusTime->Fill(time);
1179 fHDigClusToT->Fill(tot);
1180
49436743 1181 fNTOFmatched++; // RS: Actually number of clusters
1182 /* RS?
115179c6 1183 if(fNTOFmatched < 20000){
49436743 1184 fHit[fNTOFmatched] = new AliESDTOFHit(AliTOFGeometry::TdcBinWidth()*c->GetTDC(),
1185 AliTOFGeometry::TdcBinWidth()*c->GetTDCRAW(),
1186 AliTOFGeometry::ToTBinWidth()*c->GetToT()*1E-3,
1187 calindex,tofLabels,c->GetL0L1Latency(),
1188 c->GetDeltaBC(),i,c->GetZ(),c->GetR(),c->GetPhi());
115179c6 1189 fNTOFmatched++;
1190 }
49436743 1191 */
7b61cd9c 1192 }
74ea065c 1193
74ea065c 1194 return 0;
1195}
1196//_________________________________________________________________________
1197void AliTOFtracker::UnloadClusters() {
1198 //--------------------------------------------------------------------
1199 //This function unloads TOF clusters
1200 //--------------------------------------------------------------------
7b61cd9c 1201 for (Int_t i=0; i<fN; i++) {
16a2e36a 1202//PH delete fClusters[i];
7b61cd9c 1203 fClusters[i] = 0x0;
74ea065c 1204 }
49436743 1205 /* RS
1206 for(Int_t i=0; i< 20000;i++){
1207 if(fClusterESD[i]){
1208 delete fClusterESD[i];
1209 fClusterESD[i] = NULL;
1210 }
1211 if(fHit[i]){
1212 delete fHit[i];
1213 fHit[i] = NULL;
1214 }
1215 }
1216 */
7b61cd9c 1217 fN=0;
49436743 1218 fNTOFmatched = 0;
74ea065c 1219}
1220
1221//_________________________________________________________________________
1222Int_t AliTOFtracker::FindClusterIndex(Double_t z) const {
1223 //--------------------------------------------------------------------
1224 // This function returns the index of the nearest cluster
1225 //--------------------------------------------------------------------
1226 if (fN==0) return 0;
1227 if (z <= fClusters[0]->GetZ()) return 0;
1228 if (z > fClusters[fN-1]->GetZ()) return fN;
1229 Int_t b=0, e=fN-1, m=(b+e)/2;
1230 for (; b<e; m=(b+e)/2) {
1231 if (z > fClusters[m]->GetZ()) b=m+1;
1232 else e=m;
1233 }
1234 return m;
1235}
d4754572 1236
1237//_________________________________________________________________________
1238Bool_t AliTOFtracker::GetTrackPoint(Int_t index, AliTrackPoint& p) const
1239{
1240 // Get track space point with index i
1241 // Coordinates are in the global system
1242 AliTOFcluster *cl = fClusters[index];
1243 Float_t xyz[3];
1244 xyz[0] = cl->GetR()*TMath::Cos(cl->GetPhi());
1245 xyz[1] = cl->GetR()*TMath::Sin(cl->GetPhi());
1246 xyz[2] = cl->GetZ();
468f26c6 1247 Float_t phiangle = (Int_t(cl->GetPhi()*TMath::RadToDeg()/20.)+0.5)*20.*TMath::DegToRad();
1248 Float_t sinphi = TMath::Sin(phiangle), cosphi = TMath::Cos(phiangle);
ba66add8 1249 Float_t tiltangle = AliTOFGeometry::GetAngles(cl->GetDetInd(1),cl->GetDetInd(2))*TMath::DegToRad();
468f26c6 1250 Float_t sinth = TMath::Sin(tiltangle), costh = TMath::Cos(tiltangle);
ba66add8 1251 Float_t sigmay2 = AliTOFGeometry::XPad()*AliTOFGeometry::XPad()/12.;
1252 Float_t sigmaz2 = AliTOFGeometry::ZPad()*AliTOFGeometry::ZPad()/12.;
468f26c6 1253 Float_t cov[6];
1254 cov[0] = sinphi*sinphi*sigmay2 + cosphi*cosphi*sinth*sinth*sigmaz2;
1255 cov[1] = -sinphi*cosphi*sigmay2 + sinphi*cosphi*sinth*sinth*sigmaz2;
1256 cov[2] = -cosphi*sinth*costh*sigmaz2;
1257 cov[3] = cosphi*cosphi*sigmay2 + sinphi*sinphi*sinth*sinth*sigmaz2;
1258 cov[4] = -sinphi*sinth*costh*sigmaz2;
1259 cov[5] = costh*costh*sigmaz2;
1260 p.SetXYZ(xyz[0],xyz[1],xyz[2],cov);
d4754572 1261
1262 // Detector numbering scheme
ba66add8 1263 Int_t nSector = AliTOFGeometry::NSectors();
1264 Int_t nPlate = AliTOFGeometry::NPlates();
1265 Int_t nStripA = AliTOFGeometry::NStripA();
1266 Int_t nStripB = AliTOFGeometry::NStripB();
1267 Int_t nStripC = AliTOFGeometry::NStripC();
d4754572 1268
1269 Int_t isector = cl->GetDetInd(0);
1270 if (isector >= nSector)
1271 AliError(Form("Wrong sector number in TOF (%d) !",isector));
1272 Int_t iplate = cl->GetDetInd(1);
1273 if (iplate >= nPlate)
1274 AliError(Form("Wrong plate number in TOF (%d) !",iplate));
1275 Int_t istrip = cl->GetDetInd(2);
1276
1277 Int_t stripOffset = 0;
1278 switch (iplate) {
1279 case 0:
1280 stripOffset = 0;
1281 break;
1282 case 1:
1283 stripOffset = nStripC;
1284 break;
1285 case 2:
1286 stripOffset = nStripC+nStripB;
1287 break;
1288 case 3:
1289 stripOffset = nStripC+nStripB+nStripA;
1290 break;
1291 case 4:
1292 stripOffset = nStripC+nStripB+nStripA+nStripB;
1293 break;
1294 default:
1295 AliError(Form("Wrong plate number in TOF (%d) !",iplate));
1296 break;
1297 };
1298
1299 Int_t idet = (2*(nStripC+nStripB)+nStripA)*isector +
1300 stripOffset +
1301 istrip;
ae079791 1302 UShort_t volid = AliGeomManager::LayerToVolUID(AliGeomManager::kTOF,idet);
d4754572 1303 p.SetVolumeID((UShort_t)volid);
1304 return kTRUE;
1305}
5664c6ed 1306//_________________________________________________________________________
1307void AliTOFtracker::InitCheckHists() {
1308
1309 //Init histos for Digits/Reco QA and Calibration
1310
1311
0366f10f 1312 TDirectory *dir = gDirectory;
1313 TFile *logFileTOF = 0;
1314
1315 TSeqCollection *list = gROOT->GetListOfFiles();
1316 int n = list->GetEntries();
1317 Bool_t isThere=kFALSE;
1318 for(int i=0; i<n; i++) {
1319 logFileTOF = (TFile*)list->At(i);
1320 if (strstr(logFileTOF->GetName(), "TOFQA.root")){
1321 isThere=kTRUE;
1322 break;
1323 }
1324 }
1325
1326 if(!isThere)logFileTOF = new TFile( "TOFQA.root","RECREATE");
1327 logFileTOF->cd();
1328
5664c6ed 1329 fCalTree = new TTree("CalTree", "Tree for TOF calibration");
1330 fCalTree->Branch("TOFchannelindex",&fIch,"iTOFch/I");
1331 fCalTree->Branch("ToT",&fToT,"TOFToT/F");
1332 fCalTree->Branch("TOFtime",&fTime,"TOFtime/F");
1333 fCalTree->Branch("PionExpTime",&fExpTimePi,"PiExpTime/F");
1334 fCalTree->Branch("KaonExpTime",&fExpTimeKa,"KaExpTime/F");
1335 fCalTree->Branch("ProtonExpTime",&fExpTimePr,"PrExpTime/F");
1336
1337 //Digits "QA"
1338 fHDigClusMap = new TH2F("TOFDig_ClusMap", "",182,0.5,182.5,864, 0.5,864.5);
1339 fHDigNClus = new TH1F("TOFDig_NClus", "",200,0.5,200.5);
1340 fHDigClusTime = new TH1F("TOFDig_ClusTime", "",2000,0.,200.);
1341 fHDigClusToT = new TH1F("TOFDig_ClusToT", "",500,0.,100);
1342
1343 //Reco "QA"
1344 fHRecNClus =new TH1F("TOFRec_NClusW", "",50,0.5,50.5);
1345 fHRecDist=new TH1F("TOFRec_Dist", "",50,0.5,10.5);
1346 fHRecSigYVsP=new TH2F("TOFDig_SigYVsP", "",40,0.,4.,100, 0.,5.);
1347 fHRecSigZVsP=new TH2F("TOFDig_SigZVsP", "",40,0.,4.,100, 0.,5.);
1348 fHRecSigYVsPWin=new TH2F("TOFDig_SigYVsPWin", "",40,0.,4.,100, 0.,50.);
1349 fHRecSigZVsPWin=new TH2F("TOFDig_SigZVsPWin", "",40,0.,4.,100, 0.,50.);
0366f10f 1350
1351 dir->cd();
1352
5664c6ed 1353}
1354
1355//_________________________________________________________________________
1356void AliTOFtracker::SaveCheckHists() {
1357
1358 //write histos for Digits/Reco QA and Calibration
1359
1360 TDirectory *dir = gDirectory;
5664c6ed 1361 TFile *logFileTOF = 0;
1362
1363 TSeqCollection *list = gROOT->GetListOfFiles();
d200609f 1364 int n = list->GetEntries();
5664c6ed 1365 Bool_t isThere=kFALSE;
d200609f 1366 for(int i=0; i<n; i++) {
5664c6ed 1367 logFileTOF = (TFile*)list->At(i);
1368 if (strstr(logFileTOF->GetName(), "TOFQA.root")){
1369 isThere=kTRUE;
1370 break;
1371 }
1372 }
1373
0366f10f 1374 if(!isThere) {
1375 AliError(Form("File TOFQA.root not found!! not wring histograms...."));
1376 return;
1377 }
5664c6ed 1378 logFileTOF->cd();
1379 fHDigClusMap->Write(fHDigClusMap->GetName(), TObject::kOverwrite);
1380 fHDigNClus->Write(fHDigNClus->GetName(), TObject::kOverwrite);
1381 fHDigClusTime->Write(fHDigClusTime->GetName(), TObject::kOverwrite);
1382 fHDigClusToT->Write(fHDigClusToT->GetName(), TObject::kOverwrite);
1383 fHRecNClus->Write(fHRecNClus->GetName(), TObject::kOverwrite);
1384 fHRecDist->Write(fHRecDist->GetName(), TObject::kOverwrite);
1385 fHRecSigYVsP->Write(fHRecSigYVsP->GetName(), TObject::kOverwrite);
1386 fHRecSigZVsP->Write(fHRecSigZVsP->GetName(), TObject::kOverwrite);
1387 fHRecSigYVsPWin->Write(fHRecSigYVsPWin->GetName(), TObject::kOverwrite);
1388 fHRecSigZVsPWin->Write(fHRecSigZVsPWin->GetName(), TObject::kOverwrite);
1389 fCalTree->Write(fCalTree->GetName(),TObject::kOverwrite);
1390 logFileTOF->Flush();
1391
1392 dir->cd();
1393 }
e0ddb533 1394//_________________________________________________________________________
f31a249f 1395Float_t AliTOFtracker::CorrectTimeWalk( Float_t dist, Float_t tof) const {
e0ddb533 1396
1397 //dummy, for the moment
1398 Float_t tofcorr=0.;
ba66add8 1399 if(dist<AliTOFGeometry::ZPad()*0.5){
e0ddb533 1400 tofcorr=tof;
1401 //place here the actual correction
1402 }else{
1403 tofcorr=tof;
1404 }
1405 return tofcorr;
1406}
1407//_________________________________________________________________________
128563f6 1408
1409void AliTOFtracker::FillClusterArray(TObjArray* arr) const
1410{
1411 //
1412 // Returns the TOF cluster array
1413 //
1414
1415 if (fN==0)
1416 arr = 0x0;
1417 else
1418 for (Int_t i=0; i<fN; ++i) arr->Add(fClusters[i]);
1419
1420}
ff826920 1421
49436743 1422//_________________________________________________________________________
1423AliESDTOFCluster* AliTOFtracker::GetESDTOFCluster(int clID)
1424{
1425 // get ESDTOFcluster corresponding to fClusters[clID]. If the original cluster
1426 // was not stored yet in the ESD, first do this
1427 AliTOFcluster *c = fClusters[clID];
1428 AliESDTOFCluster *clESD = 0;
1429 int esdID = c->GetESDID(); // was this cluster already stored in the ESD clusters?
1430 TClonesArray* esdTOFClArr = fESDEv->GetESDTOFClusters();
1431 if (esdID<0) { // cluster was not stored yet, do this
1432 esdID = esdTOFClArr->GetEntriesFast();
1433 c->SetESDID(esdID);
1434 // first store the hits of the cluster
1435 TClonesArray* esdTOFHitArr = fESDEv->GetESDTOFHits();
1436 int nh = esdTOFHitArr->GetEntriesFast();
1437 Int_t tofLabels[3]={c->GetLabel(0),c->GetLabel(1),c->GetLabel(2)};
1438 Int_t ind[5] = {c->GetDetInd(0), c->GetDetInd(1), c->GetDetInd(2), c->GetDetInd(3), c->GetDetInd(4) };
1439 Int_t calindex = AliTOFGeometry::GetIndex(ind);
1440 /*AliESDTOFHit* esdHit = */
1441 new ( (*esdTOFHitArr)[nh] )
1442 AliESDTOFHit( AliTOFGeometry::TdcBinWidth()*c->GetTDC(),
1443 AliTOFGeometry::TdcBinWidth()*c->GetTDCRAW(),
1444 AliTOFGeometry::ToTBinWidth()*c->GetToT()*1E-3,
1445 calindex,tofLabels,c->GetL0L1Latency(),
1446 c->GetDeltaBC(),esdID,c->GetZ(),c->GetR(),c->GetPhi());
1447 //
1448 clESD = new( (*esdTOFClArr)[esdID] ) AliESDTOFCluster( clID );
1449 clESD->SetEvent(fESDEv);
1450 clESD->SetStatus( c->GetStatus() );
1451 clESD->SetESDID(esdID);
1452 //
1453 // register hits in the cluster
1454 clESD->AddESDTOFHitIndex(nh);
1455 }
1456 else clESD = (AliESDTOFCluster*)esdTOFClArr->At(esdID); // cluster is aready stored in the ESD
1457 //
1458 return clESD;
1459 //
1460}