]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDtrackerV1.cxx
speed up for HLT (Konstantin Markus Alex Raphaelle)
[u/mrichter/AliRoot.git] / TRD / AliTRDtrackerV1.cxx
CommitLineData
bcb6fb78 1
e4f2f73d 2/**************************************************************************
972ef65e 3* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4* *
5* Author: The ALICE Off-line Project. *
6* Contributors are mentioned in the code where appropriate. *
7* *
8* Permission to use, copy, modify and distribute this software and its *
9* documentation strictly for non-commercial purposes is hereby granted *
10* without fee, provided that the above copyright notice appears in all *
11* copies and that both the copyright notice and this permission notice *
12* appear in the supporting documentation. The authors make no claims *
13* about the suitability of this software for any purpose. It is *
14* provided "as is" without express or implied warranty. *
15**************************************************************************/
e4f2f73d 16
17/* $Id$ */
18
19///////////////////////////////////////////////////////////////////////////////
20// //
21// Track finder //
22// //
23// Authors: //
24// Alex Bercuci <A.Bercuci@gsi.de> //
25// Markus Fasel <M.Fasel@gsi.de> //
26// //
27///////////////////////////////////////////////////////////////////////////////
28
bb56afff 29// #include <Riostream.h>
30// #include <stdio.h>
31// #include <string.h>
e4f2f73d 32
33#include <TBranch.h>
bb56afff 34#include <TDirectory.h>
e4f2f73d 35#include <TLinearFitter.h>
e4f2f73d 36#include <TTree.h>
37#include <TClonesArray.h>
e4f2f73d 38#include <TTreeStream.h>
39
40#include "AliLog.h"
41#include "AliESDEvent.h"
bb56afff 42#include "AliGeomManager.h"
e4f2f73d 43#include "AliRieman.h"
44#include "AliTrackPointArray.h"
45
e4f2f73d 46#include "AliTRDgeometry.h"
47#include "AliTRDpadPlane.h"
e4f2f73d 48#include "AliTRDcalibDB.h"
e4f2f73d 49#include "AliTRDReconstructor.h"
50#include "AliTRDCalibraFillHisto.h"
e4f2f73d 51#include "AliTRDrecoParam.h"
bb56afff 52
53#include "AliTRDcluster.h"
e4f2f73d 54#include "AliTRDseedV1.h"
0906e73e 55#include "AliTRDtrackV1.h"
bb56afff 56#include "AliTRDtrackerV1.h"
57#include "AliTRDtrackerDebug.h"
58#include "AliTRDtrackingChamber.h"
59#include "AliTRDchamberTimeBin.h"
60
e4f2f73d 61
e4f2f73d 62
63ClassImp(AliTRDtrackerV1)
eb38ed55 64
65
66const Float_t AliTRDtrackerV1::fgkMinClustersInTrack = 0.5; //
67const Float_t AliTRDtrackerV1::fgkLabelFraction = 0.8; //
68const Double_t AliTRDtrackerV1::fgkMaxChi2 = 12.0; //
69const Double_t AliTRDtrackerV1::fgkMaxSnp = 0.95; // Maximum local sine of the azimuthal angle
70const Double_t AliTRDtrackerV1::fgkMaxStep = 2.0; // Maximal step size in propagation
d76231c8 71Double_t AliTRDtrackerV1::fgTopologicQA[kNConfigs] = {
41702fec 72 0.1112, 0.1112, 0.1112, 0.0786, 0.0786,
73 0.0786, 0.0786, 0.0579, 0.0579, 0.0474,
74 0.0474, 0.0408, 0.0335, 0.0335, 0.0335
e4f2f73d 75};
2985ffcb 76Int_t AliTRDtrackerV1::fgNTimeBins = 0;
eb38ed55 77TTreeSRedirector *AliTRDtrackerV1::fgDebugStreamer = 0x0;
78AliRieman* AliTRDtrackerV1::fgRieman = 0x0;
79TLinearFitter* AliTRDtrackerV1::fgTiltedRieman = 0x0;
80TLinearFitter* AliTRDtrackerV1::fgTiltedRiemanConstrained = 0x0;
e4f2f73d 81
82//____________________________________________________________________
3a039a31 83AliTRDtrackerV1::AliTRDtrackerV1(AliTRDReconstructor *rec)
41702fec 84 :AliTracker()
06b32d95 85 ,fReconstructor(0x0)
41702fec 86 ,fGeom(new AliTRDgeometry())
87 ,fClusters(0x0)
88 ,fTracklets(0x0)
89 ,fTracks(0x0)
90 ,fSieveSeeding(0)
e4f2f73d 91{
41702fec 92 //
93 // Default constructor.
94 //
a7ac01d2 95 AliTRDcalibDB *trd = 0x0;
96 if (!(trd = AliTRDcalibDB::Instance())) {
41702fec 97 AliFatal("Could not get calibration object");
98 }
a7ac01d2 99
100 if(!fgNTimeBins) fgNTimeBins = trd->GetNumberOfTimeBins();
41702fec 101
053767a4 102 for (Int_t isector = 0; isector < AliTRDgeometry::kNsector; isector++) new(&fTrSec[isector]) AliTRDtrackingSector(fGeom, isector);
3a039a31 103
d611c74f 104 for(Int_t isl =0; isl<kNSeedPlanes; isl++) fSeedTB[isl] = 0x0;
d20df6fc 105
3a039a31 106 // Initialize debug stream
06b32d95 107 if(rec) SetReconstructor(rec);
eb38ed55 108}
109
e4f2f73d 110//____________________________________________________________________
111AliTRDtrackerV1::~AliTRDtrackerV1()
112{
41702fec 113 //
114 // Destructor
115 //
116
117 if(fgDebugStreamer) delete fgDebugStreamer;
118 if(fgRieman) delete fgRieman;
119 if(fgTiltedRieman) delete fgTiltedRieman;
120 if(fgTiltedRiemanConstrained) delete fgTiltedRiemanConstrained;
d611c74f 121 for(Int_t isl =0; isl<kNSeedPlanes; isl++) if(fSeedTB[isl]) delete fSeedTB[isl];
41702fec 122 if(fTracks) {fTracks->Delete(); delete fTracks;}
123 if(fTracklets) {fTracklets->Delete(); delete fTracklets;}
48f8adf3 124 if(fClusters) {
125 fClusters->Delete(); delete fClusters;
126 }
41702fec 127 if(fGeom) delete fGeom;
e4f2f73d 128}
129
130//____________________________________________________________________
131Int_t AliTRDtrackerV1::Clusters2Tracks(AliESDEvent *esd)
132{
41702fec 133 //
134 // Steering stand alone tracking for full TRD detector
135 //
136 // Parameters :
137 // esd : The ESD event. On output it contains
138 // the ESD tracks found in TRD.
139 //
140 // Output :
141 // Number of tracks found in the TRD detector.
142 //
143 // Detailed description
144 // 1. Launch individual SM trackers.
145 // See AliTRDtrackerV1::Clusters2TracksSM() for details.
146 //
147
3a039a31 148 if(!fReconstructor->GetRecoParam() ){
149 AliError("Reconstruction configuration not initialized. Call first AliTRDReconstructor::SetRecoParam().");
41702fec 150 return 0;
151 }
152
153 //AliInfo("Start Track Finder ...");
154 Int_t ntracks = 0;
053767a4 155 for(int ism=0; ism<AliTRDgeometry::kNsector; ism++){
41702fec 156 // for(int ism=1; ism<2; ism++){
157 //AliInfo(Form("Processing supermodule %i ...", ism));
158 ntracks += Clusters2TracksSM(ism, esd);
159 }
160 AliInfo(Form("Number of found tracks : %d", ntracks));
161 return ntracks;
e4f2f73d 162}
163
0906e73e 164
165//_____________________________________________________________________________
eb38ed55 166Bool_t AliTRDtrackerV1::GetTrackPoint(Int_t index, AliTrackPoint &p) const
0906e73e 167{
41702fec 168 //AliInfo(Form("Asking for tracklet %d", index));
169
2f7514a6 170 AliTRDseedV1 *tracklet = GetTracklet(index);
171 if (!tracklet) return kFALSE;
41702fec 172
173 // get detector for this tracklet
174 AliTRDcluster *cl = 0x0;
175 Int_t ic = 0; do; while(!(cl = tracklet->GetClusters(ic++)));
176 Int_t idet = cl->GetDetector();
177
178 Double_t local[3];
179 local[0] = tracklet->GetX0();
180 local[1] = tracklet->GetYfit(0);
181 local[2] = tracklet->GetZfit(0);
182 Double_t global[3];
183 fGeom->RotateBack(idet, local, global);
184 p.SetXYZ(global[0],global[1],global[2]);
185
186
187 // setting volume id
188 AliGeomManager::ELayerID iLayer = AliGeomManager::kTRD1;
053767a4 189 switch (fGeom->GetLayer(idet)) {
41702fec 190 case 0:
191 iLayer = AliGeomManager::kTRD1;
192 break;
193 case 1:
194 iLayer = AliGeomManager::kTRD2;
195 break;
196 case 2:
197 iLayer = AliGeomManager::kTRD3;
198 break;
199 case 3:
200 iLayer = AliGeomManager::kTRD4;
201 break;
202 case 4:
203 iLayer = AliGeomManager::kTRD5;
204 break;
205 case 5:
206 iLayer = AliGeomManager::kTRD6;
207 break;
208 };
053767a4 209 Int_t modId = fGeom->GetSector(idet) * fGeom->Nstack() + fGeom->GetStack(idet);
41702fec 210 UShort_t volid = AliGeomManager::LayerToVolUID(iLayer, modId);
211 p.SetVolumeID(volid);
212
213 return kTRUE;
0906e73e 214}
215
eb38ed55 216//____________________________________________________________________
217TLinearFitter* AliTRDtrackerV1::GetTiltedRiemanFitter()
218{
41702fec 219 if(!fgTiltedRieman) fgTiltedRieman = new TLinearFitter(4, "hyp4");
220 return fgTiltedRieman;
eb38ed55 221}
0906e73e 222
eb38ed55 223//____________________________________________________________________
224TLinearFitter* AliTRDtrackerV1::GetTiltedRiemanFitterConstraint()
225{
41702fec 226 if(!fgTiltedRiemanConstrained) fgTiltedRiemanConstrained = new TLinearFitter(2, "hyp2");
227 return fgTiltedRiemanConstrained;
eb38ed55 228}
41702fec 229
eb38ed55 230//____________________________________________________________________
231AliRieman* AliTRDtrackerV1::GetRiemanFitter()
232{
053767a4 233 if(!fgRieman) fgRieman = new AliRieman(AliTRDtrackingChamber::kNTimeBins * AliTRDgeometry::kNlayer);
41702fec 234 return fgRieman;
eb38ed55 235}
41702fec 236
0906e73e 237//_____________________________________________________________________________
238Int_t AliTRDtrackerV1::PropagateBack(AliESDEvent *event)
239{
41702fec 240 //
241 // Gets seeds from ESD event. The seeds are AliTPCtrack's found and
242 // backpropagated by the TPC tracker. Each seed is first propagated
243 // to the TRD, and then its prolongation is searched in the TRD.
244 // If sufficiently long continuation of the track is found in the TRD
245 // the track is updated, otherwise it's stored as originaly defined
246 // by the TPC tracker.
247 //
248
249 // Calibration monitor
250 AliTRDCalibraFillHisto *calibra = AliTRDCalibraFillHisto::Instance();
251 if (!calibra) AliInfo("Could not get Calibra instance\n");
252
253 Int_t found = 0; // number of tracks found
254 Float_t foundMin = 20.0;
255
d611c74f 256 Float_t *quality = 0x0;
257 Int_t *index = 0x0;
41702fec 258 Int_t nSeed = event->GetNumberOfTracks();
d611c74f 259 if(nSeed){
260 quality = new Float_t[nSeed];
261 index = new Int_t[nSeed];
262 for (Int_t iSeed = 0; iSeed < nSeed; iSeed++) {
263 AliESDtrack *seed = event->GetTrack(iSeed);
264 Double_t covariance[15];
265 seed->GetExternalCovariance(covariance);
266 quality[iSeed] = covariance[0] + covariance[2];
267 }
268 // Sort tracks according to covariance of local Y and Z
269 TMath::Sort(nSeed,quality,index,kFALSE);
41702fec 270 }
41702fec 271
272 // Backpropagate all seeds
273 Int_t expectedClr;
274 AliTRDtrackV1 track;
275 for (Int_t iSeed = 0; iSeed < nSeed; iSeed++) {
276
277 // Get the seeds in sorted sequence
278 AliESDtrack *seed = event->GetTrack(index[iSeed]);
279
280 // Check the seed status
281 ULong_t status = seed->GetStatus();
282 if ((status & AliESDtrack::kTPCout) == 0) continue;
283 if ((status & AliESDtrack::kTRDout) != 0) continue;
284
285 // Do the back prolongation
286 new(&track) AliTRDtrackV1(*seed);
287 //track->Print();
288 //Int_t lbl = seed->GetLabel();
289 //track.SetSeedLabel(lbl);
e4d4864b 290
291 // Make backup and mark entrance in the TRD
76b60503 292 seed->UpdateTrackParams(&track, AliESDtrack::kTRDin);
293 seed->UpdateTrackParams(&track, AliESDtrack::kTRDbackup);
41702fec 294 Float_t p4 = track.GetC();
ae3fbe1f 295 expectedClr = FollowBackProlongation(track);
296
297 if (expectedClr<0) continue; // Back prolongation failed
298
299 if(expectedClr){
d611c74f 300 found++;
41702fec 301 // computes PID for track
302 track.CookPID();
303 // update calibration references using this track
304 if(calibra->GetHisto2d()) calibra->UpdateHistogramsV1(&track);
305 // save calibration object
306 if ((track.GetNumberOfClusters() > 15) && (track.GetNumberOfClusters() > 0.5*expectedClr)) {
307 seed->UpdateTrackParams(&track, AliESDtrack::kTRDout);
308
309 track.UpdateESDtrack(seed);
310
311 // Add TRD track to ESDfriendTrack
3a039a31 312 if (fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 0 /*&& quality TODO*/){
41702fec 313 AliTRDtrackV1 *calibTrack = new AliTRDtrackV1(track);
314 calibTrack->SetOwner();
315 seed->AddCalibObject(calibTrack);
316 }
317 }
318 }
319
320 if ((TMath::Abs(track.GetC() - p4) / TMath::Abs(p4) < 0.2) ||(track.Pt() > 0.8)) {
321 //
322 // Make backup for back propagation
323 //
324 Int_t foundClr = track.GetNumberOfClusters();
325 if (foundClr >= foundMin) {
326 //AliInfo(Form("Making backup track ncls [%d]...", foundClr));
327 //track.CookdEdx();
328 //track.CookdEdxTimBin(seed->GetID());
329 track.CookLabel(1. - fgkLabelFraction);
330 if(track.GetBackupTrack()) UseClusters(track.GetBackupTrack());
41702fec 331
332 // Sign only gold tracks
333 if (track.GetChi2() / track.GetNumberOfClusters() < 4) {
76b60503 334 if ((seed->GetKinkIndex(0) == 0) && (track.Pt() < 1.5)){
335 //UseClusters(&track);
336 }
41702fec 337 }
338 Bool_t isGold = kFALSE;
339
340 // Full gold track
341 if (track.GetChi2() / track.GetNumberOfClusters() < 5) {
342 if (track.GetBackupTrack()) seed->UpdateTrackParams(track.GetBackupTrack(),AliESDtrack::kTRDbackup);
343
344 isGold = kTRUE;
345 }
346
347 // Almost gold track
348 if ((!isGold) && (track.GetNCross() == 0) && (track.GetChi2() / track.GetNumberOfClusters() < 7)) {
349 //seed->UpdateTrackParams(track, AliESDtrack::kTRDbackup);
350 if (track.GetBackupTrack()) seed->UpdateTrackParams(track.GetBackupTrack(),AliESDtrack::kTRDbackup);
351
352 isGold = kTRUE;
353 }
354
355 if ((!isGold) && (track.GetBackupTrack())) {
356 if ((track.GetBackupTrack()->GetNumberOfClusters() > foundMin) && ((track.GetBackupTrack()->GetChi2()/(track.GetBackupTrack()->GetNumberOfClusters()+1)) < 7)) {
357 seed->UpdateTrackParams(track.GetBackupTrack(),AliESDtrack::kTRDbackup);
358 isGold = kTRUE;
359 }
360 }
361
362 //if ((track->StatusForTOF() > 0) && (track->GetNCross() == 0) && (Float_t(track->GetNumberOfClusters()) / Float_t(track->GetNExpected()) > 0.4)) {
363 //seed->UpdateTrackParams(track->GetBackupTrack(), AliESDtrack::kTRDbackup);
364 //}
365 }
366 }
367
368 // Propagation to the TOF (I.Belikov)
369 if (track.IsStopped() == kFALSE) {
370 Double_t xtof = 371.0;
371 Double_t xTOF0 = 370.0;
372
373 Double_t c2 = track.GetSnp() + track.GetC() * (xtof - track.GetX());
374 if (TMath::Abs(c2) >= 0.99) continue;
375
ae3fbe1f 376 if (!PropagateToX(track, xTOF0, fgkMaxStep)) continue;
41702fec 377
378 // Energy losses taken to the account - check one more time
379 c2 = track.GetSnp() + track.GetC() * (xtof - track.GetX());
380 if (TMath::Abs(c2) >= 0.99) continue;
381
382 //if (!PropagateToX(*track,xTOF0,fgkMaxStep)) {
383 // fHBackfit->Fill(7);
384 //delete track;
385 // continue;
386 //}
387
388 Double_t ymax = xtof * TMath::Tan(0.5 * AliTRDgeometry::GetAlpha());
389 Double_t y;
390 track.GetYAt(xtof,GetBz(),y);
391 if (y > ymax) {
392 if (!track.Rotate( AliTRDgeometry::GetAlpha())) continue;
393 }else if (y < -ymax) {
394 if (!track.Rotate(-AliTRDgeometry::GetAlpha())) continue;
395 }
396
397 if (track.PropagateTo(xtof)) {
398 seed->UpdateTrackParams(&track, AliESDtrack::kTRDout);
399 track.UpdateESDtrack(seed);
41702fec 400 }
401 } else {
402 if ((track.GetNumberOfClusters() > 15) && (track.GetNumberOfClusters() > 0.5*expectedClr)) {
403 seed->UpdateTrackParams(&track, AliESDtrack::kTRDout);
404
405 track.UpdateESDtrack(seed);
41702fec 406 }
407 }
408
409 seed->SetTRDQuality(track.StatusForTOF());
410 seed->SetTRDBudget(track.GetBudget(0));
411 }
d611c74f 412 if(index) delete [] index;
413 if(quality) delete [] quality;
41702fec 414
415
416 AliInfo(Form("Number of seeds: %d", nSeed));
417 AliInfo(Form("Number of back propagated TRD tracks: %d", found));
418
d611c74f 419 // run stand alone tracking
3a039a31 420 if (fReconstructor->IsSeeding()) Clusters2Tracks(event);
41702fec 421
422 return 0;
0906e73e 423}
424
425
426//____________________________________________________________________
427Int_t AliTRDtrackerV1::RefitInward(AliESDEvent *event)
428{
41702fec 429 //
430 // Refits tracks within the TRD. The ESD event is expected to contain seeds
431 // at the outer part of the TRD.
432 // The tracks are propagated to the innermost time bin
433 // of the TRD and the ESD event is updated
434 // Origin: Thomas KUHR (Thomas.Kuhr@cern.ch)
435 //
436
437 Int_t nseed = 0; // contor for loaded seeds
438 Int_t found = 0; // contor for updated TRD tracks
439
440
441 AliTRDtrackV1 track;
442 for (Int_t itrack = 0; itrack < event->GetNumberOfTracks(); itrack++) {
443 AliESDtrack *seed = event->GetTrack(itrack);
444 new(&track) AliTRDtrackV1(*seed);
445
446 if (track.GetX() < 270.0) {
447 seed->UpdateTrackParams(&track, AliESDtrack::kTRDbackup);
448 continue;
449 }
450
451 ULong_t status = seed->GetStatus();
e4d4864b 452 // reject tracks which failed propagation in the TRD
41702fec 453 if((status & AliESDtrack::kTRDout) == 0) continue;
e4d4864b 454
455 // reject tracks which are produced by the TRD stand alone track finder.
456 if((status & AliESDtrack::kTRDin) == 0) continue;
41702fec 457 nseed++;
458
459 track.ResetCovariance(50.0);
460
461 // do the propagation and processing
462 Bool_t kUPDATE = kFALSE;
463 Double_t xTPC = 250.0;
464 if(FollowProlongation(track)){
465 // Prolongate to TPC
466 if (PropagateToX(track, xTPC, fgkMaxStep)) { // -with update
467 seed->UpdateTrackParams(&track, AliESDtrack::kTRDrefit);
468 found++;
469 kUPDATE = kTRUE;
470 }
471 }
472
473 // Prolongate to TPC without update
474 if(!kUPDATE) {
475 AliTRDtrackV1 tt(*seed);
476 if (PropagateToX(tt, xTPC, fgkMaxStep)) seed->UpdateTrackParams(&tt, AliESDtrack::kTRDrefit);
477 }
478 }
479 AliInfo(Form("Number of loaded seeds: %d",nseed));
480 AliInfo(Form("Number of found tracks from loaded seeds: %d",found));
481
482 return 0;
0906e73e 483}
484
0906e73e 485//____________________________________________________________________
486Int_t AliTRDtrackerV1::FollowProlongation(AliTRDtrackV1 &t)
487{
41702fec 488 // Extrapolates the TRD track in the TPC direction.
489 //
490 // Parameters
491 // t : the TRD track which has to be extrapolated
492 //
493 // Output
494 // number of clusters attached to the track
495 //
496 // Detailed description
497 //
498 // Starting from current radial position of track <t> this function
499 // extrapolates the track through the 6 TRD layers. The following steps
500 // are being performed for each plane:
501 // 1. prepare track:
502 // a. get plane limits in the local x direction
503 // b. check crossing sectors
504 // c. check track inclination
505 // 2. search tracklet in the tracker list (see GetTracklet() for details)
506 // 3. evaluate material budget using the geo manager
507 // 4. propagate and update track using the tracklet information.
508 //
509 // Debug level 2
510 //
511
512 Int_t nClustersExpected = 0;
513 Int_t lastplane = 5; //GetLastPlane(&t);
514 for (Int_t iplane = lastplane; iplane >= 0; iplane--) {
515 Int_t index = 0;
516 AliTRDseedV1 *tracklet = GetTracklet(&t, iplane, index);
517 if(!tracklet) continue;
518 if(!tracklet->IsOK()) AliWarning("tracklet not OK");
519
520 Double_t x = tracklet->GetX0();
521 // reject tracklets which are not considered for inward refit
522 if(x > t.GetX()+fgkMaxStep) continue;
523
524 // append tracklet to track
525 t.SetTracklet(tracklet, index);
526
527 if (x < (t.GetX()-fgkMaxStep) && !PropagateToX(t, x+fgkMaxStep, fgkMaxStep)) break;
528 if (!AdjustSector(&t)) break;
529
530 // Start global position
531 Double_t xyz0[3];
532 t.GetXYZ(xyz0);
533
534 // End global position
535 Double_t alpha = t.GetAlpha(), y, z;
536 if (!t.GetProlongation(x,y,z)) break;
537 Double_t xyz1[3];
538 xyz1[0] = x * TMath::Cos(alpha) - y * TMath::Sin(alpha);
539 xyz1[1] = x * TMath::Sin(alpha) + y * TMath::Cos(alpha);
540 xyz1[2] = z;
541
542 // Get material budget
543 Double_t param[7];
544 AliTracker::MeanMaterialBudget(xyz0, xyz1, param);
545 Double_t xrho= param[0]*param[4];
546 Double_t xx0 = param[1]; // Get mean propagation parameters
547
548 // Propagate and update
549 t.PropagateTo(x, xx0, xrho);
550 if (!AdjustSector(&t)) break;
551
552 Double_t maxChi2 = t.GetPredictedChi2(tracklet);
553 if (maxChi2 < 1e+10 && t.Update(tracklet, maxChi2)){
554 nClustersExpected += tracklet->GetN();
555 }
556 }
557
3a039a31 558 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
41702fec 559 Int_t index;
560 for(int iplane=0; iplane<6; iplane++){
561 AliTRDseedV1 *tracklet = GetTracklet(&t, iplane, index);
562 if(!tracklet) continue;
563 t.SetTracklet(tracklet, index);
564 }
565
566 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
567 TTreeSRedirector &cstreamer = *fgDebugStreamer;
568 cstreamer << "FollowProlongation"
569 << "EventNumber=" << eventNumber
570 << "ncl=" << nClustersExpected
571 //<< "track.=" << &t
572 << "\n";
573 }
574
575 return nClustersExpected;
0906e73e 576
577}
578
579//_____________________________________________________________________________
580Int_t AliTRDtrackerV1::FollowBackProlongation(AliTRDtrackV1 &t)
581{
41702fec 582 // Extrapolates the TRD track in the TOF direction.
583 //
584 // Parameters
585 // t : the TRD track which has to be extrapolated
586 //
587 // Output
588 // number of clusters attached to the track
589 //
590 // Detailed description
591 //
592 // Starting from current radial position of track <t> this function
593 // extrapolates the track through the 6 TRD layers. The following steps
594 // are being performed for each plane:
595 // 1. prepare track:
596 // a. get plane limits in the local x direction
597 // b. check crossing sectors
598 // c. check track inclination
599 // 2. build tracklet (see AliTRDseed::AttachClusters() for details)
600 // 3. evaluate material budget using the geo manager
601 // 4. propagate and update track using the tracklet information.
602 //
603 // Debug level 2
604 //
605
606 Int_t nClustersExpected = 0;
607 Double_t clength = AliTRDgeometry::AmThick() + AliTRDgeometry::DrThick();
608 AliTRDtrackingChamber *chamber = 0x0;
609
3b57a3f7 610 AliTRDseedV1 tracklet, *ptrTracklet = 0x0;
181d2c97 611 // in case of stand alone tracking we store all the pointers to the tracklets in a temporary array
612 AliTRDseedV1 *tracklets[kNPlanes];
613 memset(tracklets, 0, sizeof(AliTRDseedV1 *) * kNPlanes);
614 for(Int_t ip = 0; ip < kNPlanes; ip++){
615 tracklets[ip] = t.GetTracklet(ip);
616 t.UnsetTracklet(ip);
617 }
3b57a3f7 618
053767a4 619 // Loop through the TRD layers
620 for (Int_t ilayer = 0; ilayer < AliTRDgeometry::Nlayer(); ilayer++) {
41702fec 621 // BUILD TRACKLET IF NOT ALREADY BUILT
622 Double_t x = 0., y, z, alpha;
181d2c97 623 ptrTracklet = tracklets[ilayer];
41702fec 624 if(!ptrTracklet){
053767a4 625 ptrTracklet = new(&tracklet) AliTRDseedV1(ilayer);
43d6ad34 626 ptrTracklet->SetReconstructor(fReconstructor);
41702fec 627 alpha = t.GetAlpha();
053767a4 628 Int_t sector = Int_t(alpha/AliTRDgeometry::GetAlpha() + (alpha>0. ? 0 : AliTRDgeometry::kNsector));
41702fec 629
630 if(!fTrSec[sector].GetNChambers()) continue;
631
053767a4 632 if((x = fTrSec[sector].GetX(ilayer)) < 1.) continue;
41702fec 633
43d6ad34 634 if (!t.GetProlongation(x, y, z)) return -nClustersExpected;
053767a4 635 Int_t stack = fGeom->GetStack(z, ilayer);
41702fec 636 Int_t nCandidates = stack >= 0 ? 1 : 2;
637 z -= stack >= 0 ? 0. : 4.;
638
639 for(int icham=0; icham<nCandidates; icham++, z+=8){
053767a4 640 if((stack = fGeom->GetStack(z, ilayer)) < 0) continue;
41702fec 641
053767a4 642 if(!(chamber = fTrSec[sector].GetChamber(stack, ilayer))) continue;
41702fec 643
3a039a31 644 if(chamber->GetNClusters() < fgNTimeBins*fReconstructor->GetRecoParam() ->GetFindableClusters()) continue;
41702fec 645
646 x = chamber->GetX();
647
053767a4 648 AliTRDpadPlane *pp = fGeom->GetPadPlane(ilayer, stack);
aec26713 649 tracklet.SetTilt(TMath::Tan(TMath::DegToRad()*pp->GetTiltingAngle()));
41702fec 650 tracklet.SetPadLength(pp->GetLengthIPad());
053767a4 651 tracklet.SetPlane(ilayer);
41702fec 652 tracklet.SetX0(x);
653 if(!tracklet.Init(&t)){
654 t.SetStopped(kTRUE);
655 return nClustersExpected;
656 }
657 if(!tracklet.AttachClustersIter(chamber, 1000.)) continue;
658 tracklet.Init(&t);
659
3a039a31 660 if(tracklet.GetN() < fgNTimeBins*fReconstructor->GetRecoParam() ->GetFindableClusters()) continue;
41702fec 661
662 break;
663 }
76b60503 664 //ptrTracklet->UseClusters();
41702fec 665 }
666 if(!ptrTracklet->IsOK()){
667 if(x < 1.) continue; //temporary
43d6ad34 668 if(!PropagateToX(t, x-fgkMaxStep, fgkMaxStep)) return -nClustersExpected;
669 if(!AdjustSector(&t)) return -nClustersExpected;
670 if(TMath::Abs(t.GetSnp()) > fgkMaxSnp) return -nClustersExpected;
41702fec 671 continue;
672 }
673
674 // Propagate closer to the current chamber if neccessary
675 x -= clength;
43d6ad34 676 if (x > (fgkMaxStep + t.GetX()) && !PropagateToX(t, x-fgkMaxStep, fgkMaxStep)) return -nClustersExpected;
677 if (!AdjustSector(&t)) return -nClustersExpected;
678 if (TMath::Abs(t.GetSnp()) > fgkMaxSnp) return -nClustersExpected;
41702fec 679
680 // load tracklet to the tracker and the track
681 ptrTracklet = SetTracklet(ptrTracklet);
682 t.SetTracklet(ptrTracklet, fTracklets->GetEntriesFast()-1);
683
684
685 // Calculate the mean material budget along the path inside the chamber
686 //Calculate global entry and exit positions of the track in chamber (only track prolongation)
687 Double_t xyz0[3]; // entry point
688 t.GetXYZ(xyz0);
689 alpha = t.GetAlpha();
690 x = ptrTracklet->GetX0();
43d6ad34 691 if (!t.GetProlongation(x, y, z)) return -nClustersExpected;
41702fec 692 Double_t xyz1[3]; // exit point
693 xyz1[0] = x * TMath::Cos(alpha) - y * TMath::Sin(alpha);
694 xyz1[1] = +x * TMath::Sin(alpha) + y * TMath::Cos(alpha);
695 xyz1[2] = z;
696 Double_t param[7];
697 AliTracker::MeanMaterialBudget(xyz0, xyz1, param);
698 // The mean propagation parameters
699 Double_t xrho = param[0]*param[4]; // density*length
700 Double_t xx0 = param[1]; // radiation length
701
702 // Propagate and update track
43d6ad34 703 if (!t.PropagateTo(x, xx0, xrho)) return -nClustersExpected;
704 if (!AdjustSector(&t)) return -nClustersExpected;
41702fec 705 Double_t maxChi2 = t.GetPredictedChi2(ptrTracklet);
43d6ad34 706 if (!t.Update(ptrTracklet, maxChi2)) return -nClustersExpected;
ae3fbe1f 707 if (maxChi2<1e+10) {
41702fec 708 nClustersExpected += ptrTracklet->GetN();
709 //t.SetTracklet(&tracklet, index);
710 }
711 // Reset material budget if 2 consecutive gold
053767a4 712 if(ilayer>0 && t.GetTracklet(ilayer-1) && ptrTracklet->GetN() + t.GetTracklet(ilayer-1)->GetN() > 20) t.SetBudget(2, 0.);
41702fec 713
714 // Make backup of the track until is gold
715 // TO DO update quality check of the track.
716 // consider comparison with fTimeBinsRange
717 Float_t ratio0 = ptrTracklet->GetN() / Float_t(fgNTimeBins);
718 //Float_t ratio1 = Float_t(t.GetNumberOfClusters()+1) / Float_t(t.GetNExpected()+1);
719 //printf("tracklet.GetChi2() %f [< 18.0]\n", tracklet.GetChi2());
720 //printf("ratio0 %f [> 0.8]\n", ratio0);
721 //printf("ratio1 %f [> 0.6]\n", ratio1);
722 //printf("ratio0+ratio1 %f [> 1.5]\n", ratio0+ratio1);
723 //printf("t.GetNCross() %d [== 0]\n", t.GetNCross());
724 //printf("TMath::Abs(t.GetSnp()) %f [< 0.85]\n", TMath::Abs(t.GetSnp()));
725 //printf("t.GetNumberOfClusters() %d [> 20]\n", t.GetNumberOfClusters());
726
727 if (//(tracklet.GetChi2() < 18.0) && TO DO check with FindClusters and move it to AliTRDseed::Update
728 (ratio0 > 0.8) &&
729 //(ratio1 > 0.6) &&
730 //(ratio0+ratio1 > 1.5) &&
731 (t.GetNCross() == 0) &&
732 (TMath::Abs(t.GetSnp()) < 0.85) &&
733 (t.GetNumberOfClusters() > 20)) t.MakeBackupTrack();
734
053767a4 735 } // end layers loop
41702fec 736
3a039a31 737 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
41702fec 738 TTreeSRedirector &cstreamer = *fgDebugStreamer;
739 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
740 //AliTRDtrackV1 *debugTrack = new AliTRDtrackV1(t);
741 //debugTrack->SetOwner();
742 cstreamer << "FollowBackProlongation"
743 << "EventNumber=" << eventNumber
744 << "ncl=" << nClustersExpected
745 //<< "track.=" << debugTrack
746 << "\n";
747 }
748
749 return nClustersExpected;
0906e73e 750}
751
eb38ed55 752//_________________________________________________________________________
753Float_t AliTRDtrackerV1::FitRieman(AliTRDseedV1 *tracklets, Double_t *chi2, Int_t *planes){
41702fec 754 //
755 // Fits a Riemann-circle to the given points without tilting pad correction.
756 // The fit is performed using an instance of the class AliRieman (equations
757 // and transformations see documentation of this class)
758 // Afterwards all the tracklets are Updated
759 //
760 // Parameters: - Array of tracklets (AliTRDseedV1)
761 // - Storage for the chi2 values (beginning with direction z)
762 // - Seeding configuration
763 // Output: - The curvature
764 //
765 AliRieman *fitter = AliTRDtrackerV1::GetRiemanFitter();
766 fitter->Reset();
767 Int_t allplanes[] = {0, 1, 2, 3, 4, 5};
768 Int_t *ppl = &allplanes[0];
769 Int_t maxLayers = 6;
770 if(planes){
771 maxLayers = 4;
772 ppl = planes;
773 }
774 for(Int_t il = 0; il < maxLayers; il++){
775 if(!tracklets[ppl[il]].IsOK()) continue;
776 fitter->AddPoint(tracklets[ppl[il]].GetX0(), tracklets[ppl[il]].GetYfitR(0), tracklets[ppl[il]].GetZProb(),1,10);
777 }
778 fitter->Update();
779 // Set the reference position of the fit and calculate the chi2 values
780 memset(chi2, 0, sizeof(Double_t) * 2);
781 for(Int_t il = 0; il < maxLayers; il++){
782 // Reference positions
783 tracklets[ppl[il]].Init(fitter);
784
785 // chi2
786 if((!tracklets[ppl[il]].IsOK()) && (!planes)) continue;
787 chi2[0] += tracklets[ppl[il]].GetChi2Y();
788 chi2[1] += tracklets[ppl[il]].GetChi2Z();
789 }
790 return fitter->GetC();
eb38ed55 791}
792
793//_________________________________________________________________________
794void AliTRDtrackerV1::FitRieman(AliTRDcluster **seedcl, Double_t chi2[2])
795{
41702fec 796 //
797 // Performs a Riemann helix fit using the seedclusters as spacepoints
798 // Afterwards the chi2 values are calculated and the seeds are updated
799 //
800 // Parameters: - The four seedclusters
801 // - The tracklet array (AliTRDseedV1)
802 // - The seeding configuration
803 // - Chi2 array
804 //
805 // debug level 2
806 //
807 AliRieman *fitter = AliTRDtrackerV1::GetRiemanFitter();
808 fitter->Reset();
809 for(Int_t i = 0; i < 4; i++)
810 fitter->AddPoint(seedcl[i]->GetX(), seedcl[i]->GetY(), seedcl[i]->GetZ(), 1, 10);
811 fitter->Update();
812
813
814 // Update the seed and calculated the chi2 value
815 chi2[0] = 0; chi2[1] = 0;
816 for(Int_t ipl = 0; ipl < kNSeedPlanes; ipl++){
817 // chi2
818 chi2[0] += (seedcl[ipl]->GetZ() - fitter->GetZat(seedcl[ipl]->GetX())) * (seedcl[ipl]->GetZ() - fitter->GetZat(seedcl[ipl]->GetX()));
819 chi2[1] += (seedcl[ipl]->GetY() - fitter->GetYat(seedcl[ipl]->GetX())) * (seedcl[ipl]->GetY() - fitter->GetYat(seedcl[ipl]->GetX()));
820 }
eb38ed55 821}
822
823
824//_________________________________________________________________________
825Float_t AliTRDtrackerV1::FitTiltedRiemanConstraint(AliTRDseedV1 *tracklets, Double_t zVertex)
826{
41702fec 827 //
828 // Fits a helix to the clusters. Pad tilting is considered. As constraint it is
829 // assumed that the vertex position is set to 0.
830 // This method is very usefull for high-pt particles
831 // Basis for the fit: (x - x0)^2 + (y - y0)^2 - R^2 = 0
832 // x0, y0: Center of the circle
833 // Measured y-position: ymeas = y - tan(phiT)(zc - zt)
834 // zc: center of the pad row
835 // Equation which has to be fitted (after transformation):
836 // a + b * u + e * v + 2*(ymeas + tan(phiT)(z - zVertex))*t = 0
837 // Transformation:
838 // t = 1/(x^2 + y^2)
839 // u = 2 * x * t
840 // v = 2 * x * tan(phiT) * t
841 // Parameters in the equation:
842 // a = -1/y0, b = x0/y0, e = dz/dx
843 //
844 // The Curvature is calculated by the following equation:
845 // - curv = a/Sqrt(b^2 + 1) = 1/R
846 // Parameters: - the 6 tracklets
847 // - the Vertex constraint
848 // Output: - the Chi2 value of the track
849 //
850 // debug level 5
851 //
852
853 TLinearFitter *fitter = GetTiltedRiemanFitterConstraint();
854 fitter->StoreData(kTRUE);
855 fitter->ClearPoints();
856 AliTRDcluster *cl = 0x0;
857
858 Float_t x, y, z, w, t, error, tilt;
859 Double_t uvt[2];
860 Int_t nPoints = 0;
053767a4 861 for(Int_t ilr = 0; ilr < AliTRDgeometry::kNlayer; ilr++){
862 if(!tracklets[ilr].IsOK()) continue;
41702fec 863 for(Int_t itb = 0; itb < fgNTimeBins; itb++){
053767a4 864 if(!tracklets[ilr].IsUsable(itb)) continue;
865 cl = tracklets[ilr].GetClusters(itb);
41702fec 866 x = cl->GetX();
867 y = cl->GetY();
868 z = cl->GetZ();
053767a4 869 tilt = tracklets[ilr].GetTilt();
41702fec 870 // Transformation
871 t = 1./(x * x + y * y);
872 uvt[0] = 2. * x * t;
873 uvt[1] = 2. * x * t * tilt ;
874 w = 2. * (y + tilt * (z - zVertex)) * t;
875 error = 2. * 0.2 * t;
876 fitter->AddPoint(uvt, w, error);
877 nPoints++;
878 }
879 }
880 fitter->Eval();
881
882 // Calculate curvature
883 Double_t a = fitter->GetParameter(0);
884 Double_t b = fitter->GetParameter(1);
885 Double_t curvature = a/TMath::Sqrt(b*b + 1);
886
887 Float_t chi2track = fitter->GetChisquare()/Double_t(nPoints);
888 for(Int_t ip = 0; ip < AliTRDtrackerV1::kNPlanes; ip++)
889 tracklets[ip].SetCC(curvature);
890
3a039a31 891/* if(fReconstructor->GetStreamLevel() >= 5){
41702fec 892 //Linear Model on z-direction
893 Double_t xref = CalculateReferenceX(tracklets); // Relative to the middle of the stack
894 Double_t slope = fitter->GetParameter(2);
895 Double_t zref = slope * xref;
896 Float_t chi2Z = CalculateChi2Z(tracklets, zref, slope, xref);
897 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
898 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
899 TTreeSRedirector &treeStreamer = *fgDebugStreamer;
900 treeStreamer << "FitTiltedRiemanConstraint"
901 << "EventNumber=" << eventNumber
902 << "CandidateNumber=" << candidateNumber
903 << "Curvature=" << curvature
904 << "Chi2Track=" << chi2track
905 << "Chi2Z=" << chi2Z
906 << "zref=" << zref
907 << "\n";
3a039a31 908 }*/
41702fec 909 return chi2track;
eb38ed55 910}
911
912//_________________________________________________________________________
913Float_t AliTRDtrackerV1::FitTiltedRieman(AliTRDseedV1 *tracklets, Bool_t sigError)
914{
41702fec 915 //
916 // Performs a Riemann fit taking tilting pad correction into account
917 // The equation of a Riemann circle, where the y position is substituted by the
918 // measured y-position taking pad tilting into account, has to be transformed
919 // into a 4-dimensional hyperplane equation
920 // Riemann circle: (x-x0)^2 + (y-y0)^2 -R^2 = 0
921 // Measured y-Position: ymeas = y - tan(phiT)(zc - zt)
922 // zc: center of the pad row
923 // zt: z-position of the track
924 // The z-position of the track is assumed to be linear dependent on the x-position
925 // Transformed equation: a + b * u + c * t + d * v + e * w - 2 * (ymeas + tan(phiT) * zc) * t = 0
926 // Transformation: u = 2 * x * t
927 // v = 2 * tan(phiT) * t
928 // w = 2 * tan(phiT) * (x - xref) * t
929 // t = 1 / (x^2 + ymeas^2)
930 // Parameters: a = -1/y0
931 // b = x0/y0
932 // c = (R^2 -x0^2 - y0^2)/y0
933 // d = offset
934 // e = dz/dx
935 // If the offset respectively the slope in z-position is impossible, the parameters are fixed using
936 // results from the simple riemann fit. Afterwards the fit is redone.
937 // The curvature is calculated according to the formula:
938 // curv = a/(1 + b^2 + c*a) = 1/R
939 //
940 // Paramters: - Array of tracklets (connected to the track candidate)
941 // - Flag selecting the error definition
942 // Output: - Chi2 values of the track (in Parameter list)
943 //
944 TLinearFitter *fitter = GetTiltedRiemanFitter();
945 fitter->StoreData(kTRUE);
946 fitter->ClearPoints();
947 AliTRDLeastSquare zfitter;
948 AliTRDcluster *cl = 0x0;
949
950 Double_t xref = CalculateReferenceX(tracklets);
951 Double_t x, y, z, t, tilt, dx, w, we;
952 Double_t uvt[4];
953 Int_t nPoints = 0;
954 // Containers for Least-square fitter
955 for(Int_t ipl = 0; ipl < kNPlanes; ipl++){
956 if(!tracklets[ipl].IsOK()) continue;
957 for(Int_t itb = 0; itb < fgNTimeBins; itb++){
958 if(!(cl = tracklets[ipl].GetClusters(itb))) continue;
959 if (!tracklets[ipl].IsUsable(itb)) continue;
960 x = cl->GetX();
961 y = cl->GetY();
962 z = cl->GetZ();
963 tilt = tracklets[ipl].GetTilt();
964 dx = x - xref;
965 // Transformation
966 t = 1./(x*x + y*y);
967 uvt[0] = 2. * x * t;
968 uvt[1] = t;
969 uvt[2] = 2. * tilt * t;
970 uvt[3] = 2. * tilt * dx * t;
971 w = 2. * (y + tilt*z) * t;
972 // error definition changes for the different calls
973 we = 2. * t;
974 we *= sigError ? tracklets[ipl].GetSigmaY() : 0.2;
975 fitter->AddPoint(uvt, w, we);
976 zfitter.AddPoint(&x, z, static_cast<Double_t>(TMath::Sqrt(cl->GetSigmaZ2())));
977 nPoints++;
978 }
979 }
980 fitter->Eval();
981 zfitter.Eval();
982
983 Double_t offset = fitter->GetParameter(3);
984 Double_t slope = fitter->GetParameter(4);
985
986 // Linear fitter - not possible to make boundaries
987 // Do not accept non possible z and dzdx combinations
988 Bool_t acceptablez = kTRUE;
989 Double_t zref = 0.0;
990 for (Int_t iLayer = 0; iLayer < kNPlanes; iLayer++) {
991 if(!tracklets[iLayer].IsOK()) continue;
992 zref = offset + slope * (tracklets[iLayer].GetX0() - xref);
993 if (TMath::Abs(tracklets[iLayer].GetZProb() - zref) > tracklets[iLayer].GetPadLength() * 0.5 + 1.0)
994 acceptablez = kFALSE;
995 }
996 if (!acceptablez) {
997 Double_t dzmf = zfitter.GetFunctionParameter(1);
998 Double_t zmf = zfitter.GetFunctionValue(&xref);
999 fgTiltedRieman->FixParameter(3, zmf);
1000 fgTiltedRieman->FixParameter(4, dzmf);
1001 fitter->Eval();
1002 fitter->ReleaseParameter(3);
1003 fitter->ReleaseParameter(4);
1004 offset = fitter->GetParameter(3);
1005 slope = fitter->GetParameter(4);
1006 }
1007
1008 // Calculate Curvarture
1009 Double_t a = fitter->GetParameter(0);
1010 Double_t b = fitter->GetParameter(1);
1011 Double_t c = fitter->GetParameter(2);
1012 Double_t curvature = 1.0 + b*b - c*a;
1013 if (curvature > 0.0)
1014 curvature = a / TMath::Sqrt(curvature);
1015
1016 Double_t chi2track = fitter->GetChisquare()/Double_t(nPoints);
1017
1018 // Update the tracklets
1019 Double_t dy, dz;
1020 for(Int_t iLayer = 0; iLayer < AliTRDtrackerV1::kNPlanes; iLayer++) {
1021
1022 x = tracklets[iLayer].GetX0();
1023 y = 0;
1024 z = 0;
1025 dy = 0;
1026 dz = 0;
1027
1028 // y: R^2 = (x - x0)^2 + (y - y0)^2
1029 // => y = y0 +/- Sqrt(R^2 - (x - x0)^2)
1030 // R = Sqrt() = 1/Curvature
1031 // => y = y0 +/- Sqrt(1/Curvature^2 - (x - x0)^2)
1032 Double_t res = (x * a + b); // = (x - x0)/y0
1033 res *= res;
1034 res = 1.0 - c * a + b * b - res; // = (R^2 - (x - x0)^2)/y0^2
1035 if (res >= 0) {
1036 res = TMath::Sqrt(res);
1037 y = (1.0 - res) / a;
1038 }
1039
1040 // dy: R^2 = (x - x0)^2 + (y - y0)^2
1041 // => y = +/- Sqrt(R^2 - (x - x0)^2) + y0
1042 // => dy/dx = (x - x0)/Sqrt(R^2 - (x - x0)^2)
1043 // Curvature: cr = 1/R = a/Sqrt(1 + b^2 - c*a)
1044 // => dy/dx = (x - x0)/(1/(cr^2) - (x - x0)^2)
1045 Double_t x0 = -b / a;
1046 if (-c * a + b * b + 1 > 0) {
1047 if (1.0/(curvature * curvature) - (x - x0) * (x - x0) > 0.0) {
1048 Double_t yderiv = (x - x0) / TMath::Sqrt(1.0/(curvature * curvature) - (x - x0) * (x - x0));
1049 if (a < 0) yderiv *= -1.0;
1050 dy = yderiv;
1051 }
1052 }
1053 z = offset + slope * (x - xref);
1054 dz = slope;
1055 tracklets[iLayer].SetYref(0, y);
1056 tracklets[iLayer].SetYref(1, dy);
1057 tracklets[iLayer].SetZref(0, z);
1058 tracklets[iLayer].SetZref(1, dz);
1059 tracklets[iLayer].SetC(curvature);
1060 tracklets[iLayer].SetChi2(chi2track);
1061 }
1062
3a039a31 1063/* if(fReconstructor->GetStreamLevel() >=5){
41702fec 1064 TTreeSRedirector &cstreamer = *fgDebugStreamer;
1065 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
1066 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
1067 Double_t chi2z = CalculateChi2Z(tracklets, offset, slope, xref);
1068 cstreamer << "FitTiltedRieman0"
1069 << "EventNumber=" << eventNumber
1070 << "CandidateNumber=" << candidateNumber
1071 << "xref=" << xref
1072 << "Chi2Z=" << chi2z
1073 << "\n";
3a039a31 1074 }*/
41702fec 1075 return chi2track;
eb38ed55 1076}
1077
3b57a3f7 1078
9e333711 1079//____________________________________________________________________
1080Double_t AliTRDtrackerV1::FitLine(AliTRDtrackV1 *track, AliTRDseedV1 *tracklets, Bool_t err, Int_t np, AliTrackPoint *points)
1081{
1082 AliTRDLeastSquare yfitter, zfitter;
1083 AliTRDcluster *cl = 0x0;
1084
1085 AliTRDseedV1 work[kNPlanes], *tracklet = 0x0;
1086 if(!tracklets){
1087 for(Int_t ipl = 0; ipl < kNPlanes; ipl++){
1088 if(!(tracklet = track->GetTracklet(ipl))) continue;
1089 if(!tracklet->IsOK()) continue;
1090 new(&work[ipl]) AliTRDseedV1(*tracklet);
1091 }
1092 tracklets = &work[0];
1093 }
1094
1095 Double_t xref = CalculateReferenceX(tracklets);
1096 Double_t x, y, z, dx, ye, yr, tilt;
1097 for(Int_t ipl = 0; ipl < kNPlanes; ipl++){
1098 if(!tracklets[ipl].IsOK()) continue;
1099 for(Int_t itb = 0; itb < fgNTimeBins; itb++){
1100 if(!(cl = tracklets[ipl].GetClusters(itb))) continue;
1101 if (!tracklets[ipl].IsUsable(itb)) continue;
1102 x = cl->GetX();
1103 z = cl->GetZ();
1104 dx = x - xref;
1105 zfitter.AddPoint(&dx, z, static_cast<Double_t>(TMath::Sqrt(cl->GetSigmaZ2())));
1106 }
1107 }
1108 zfitter.Eval();
1109 Double_t z0 = zfitter.GetFunctionParameter(0);
1110 Double_t dzdx = zfitter.GetFunctionParameter(1);
1111 for(Int_t ipl = 0; ipl < kNPlanes; ipl++){
1112 if(!tracklets[ipl].IsOK()) continue;
1113 for(Int_t itb = 0; itb < fgNTimeBins; itb++){
1114 if(!(cl = tracklets[ipl].GetClusters(itb))) continue;
1115 if (!tracklets[ipl].IsUsable(itb)) continue;
1116 x = cl->GetX();
1117 y = cl->GetY();
1118 z = cl->GetZ();
1119 tilt = tracklets[ipl].GetTilt();
1120 dx = x - xref;
1121 yr = y + tilt*(z - z0 - dzdx*dx);
1122 // error definition changes for the different calls
1123 ye = tilt*TMath::Sqrt(cl->GetSigmaZ2());
1124 ye += err ? tracklets[ipl].GetSigmaY() : 0.2;
1125 yfitter.AddPoint(&dx, yr, ye);
1126 }
1127 }
1128 yfitter.Eval();
1129 Double_t y0 = yfitter.GetFunctionParameter(0);
1130 Double_t dydx = yfitter.GetFunctionParameter(1);
1131 Double_t chi2 = 0.;//yfitter.GetChisquare()/Double_t(nPoints);
1132
1133 //update track points array
1134 if(np && points){
1135 Float_t xyz[3];
1136 for(int ip=0; ip<np; ip++){
1137 points[ip].GetXYZ(xyz);
1138 xyz[1] = y0 + dydx * (xyz[0] - xref);
1139 xyz[2] = z0 + dzdx * (xyz[0] - xref);
1140 points[ip].SetXYZ(xyz);
1141 }
1142 }
1143 return chi2;
1144}
1145
1146
3b57a3f7 1147//_________________________________________________________________________
1148Double_t AliTRDtrackerV1::FitRiemanTilt(AliTRDtrackV1 *track, AliTRDseedV1 *tracklets, Bool_t sigError, Int_t np, AliTrackPoint *points)
1149{
41702fec 1150 //
1151 // Performs a Riemann fit taking tilting pad correction into account
1152 // The equation of a Riemann circle, where the y position is substituted by the
1153 // measured y-position taking pad tilting into account, has to be transformed
1154 // into a 4-dimensional hyperplane equation
1155 // Riemann circle: (x-x0)^2 + (y-y0)^2 -R^2 = 0
1156 // Measured y-Position: ymeas = y - tan(phiT)(zc - zt)
1157 // zc: center of the pad row
1158 // zt: z-position of the track
1159 // The z-position of the track is assumed to be linear dependent on the x-position
1160 // Transformed equation: a + b * u + c * t + d * v + e * w - 2 * (ymeas + tan(phiT) * zc) * t = 0
1161 // Transformation: u = 2 * x * t
1162 // v = 2 * tan(phiT) * t
1163 // w = 2 * tan(phiT) * (x - xref) * t
1164 // t = 1 / (x^2 + ymeas^2)
1165 // Parameters: a = -1/y0
1166 // b = x0/y0
1167 // c = (R^2 -x0^2 - y0^2)/y0
1168 // d = offset
1169 // e = dz/dx
1170 // If the offset respectively the slope in z-position is impossible, the parameters are fixed using
1171 // results from the simple riemann fit. Afterwards the fit is redone.
1172 // The curvature is calculated according to the formula:
1173 // curv = a/(1 + b^2 + c*a) = 1/R
1174 //
1175 // Paramters: - Array of tracklets (connected to the track candidate)
1176 // - Flag selecting the error definition
1177 // Output: - Chi2 values of the track (in Parameter list)
1178 //
1179 TLinearFitter *fitter = GetTiltedRiemanFitter();
1180 fitter->StoreData(kTRUE);
1181 fitter->ClearPoints();
1182 AliTRDLeastSquare zfitter;
1183 AliTRDcluster *cl = 0x0;
3b57a3f7 1184
1185 AliTRDseedV1 work[kNPlanes], *tracklet = 0x0;
1186 if(!tracklets){
1187 for(Int_t ipl = 0; ipl < kNPlanes; ipl++){
1188 if(!(tracklet = track->GetTracklet(ipl))) continue;
1189 if(!tracklet->IsOK()) continue;
1190 new(&work[ipl]) AliTRDseedV1(*tracklet);
1191 }
1192 tracklets = &work[0];
1193 }
1194
41702fec 1195 Double_t xref = CalculateReferenceX(tracklets);
1196 Double_t x, y, z, t, tilt, dx, w, we;
1197 Double_t uvt[4];
1198 Int_t nPoints = 0;
1199 // Containers for Least-square fitter
1200 for(Int_t ipl = 0; ipl < kNPlanes; ipl++){
1201 if(!tracklets[ipl].IsOK()) continue;
1202 for(Int_t itb = 0; itb < fgNTimeBins; itb++){
1203 if(!(cl = tracklets[ipl].GetClusters(itb))) continue;
1204 if (!tracklets[ipl].IsUsable(itb)) continue;
1205 x = cl->GetX();
1206 y = cl->GetY();
1207 z = cl->GetZ();
1208 tilt = tracklets[ipl].GetTilt();
1209 dx = x - xref;
1210 // Transformation
1211 t = 1./(x*x + y*y);
1212 uvt[0] = 2. * x * t;
1213 uvt[1] = t;
1214 uvt[2] = 2. * tilt * t;
1215 uvt[3] = 2. * tilt * dx * t;
1216 w = 2. * (y + tilt*z) * t;
1217 // error definition changes for the different calls
1218 we = 2. * t;
1219 we *= sigError ? tracklets[ipl].GetSigmaY() : 0.2;
1220 fitter->AddPoint(uvt, w, we);
1221 zfitter.AddPoint(&x, z, static_cast<Double_t>(TMath::Sqrt(cl->GetSigmaZ2())));
1222 nPoints++;
1223 }
1224 }
aec26713 1225 if(fitter->Eval()) return 1.E10;
1226
41702fec 1227 Double_t z0 = fitter->GetParameter(3);
1228 Double_t dzdx = fitter->GetParameter(4);
3b57a3f7 1229
1230
1231 // Linear fitter - not possible to make boundaries
1232 // Do not accept non possible z and dzdx combinations
1233 Bool_t accept = kTRUE;
1234 Double_t zref = 0.0;
1235 for (Int_t iLayer = 0; iLayer < kNPlanes; iLayer++) {
1236 if(!tracklets[iLayer].IsOK()) continue;
1237 zref = z0 + dzdx * (tracklets[iLayer].GetX0() - xref);
1238 if (TMath::Abs(tracklets[iLayer].GetZProb() - zref) > tracklets[iLayer].GetPadLength() * 0.5 + 1.0)
1239 accept = kFALSE;
1240 }
1241 if (!accept) {
41702fec 1242 zfitter.Eval();
3b57a3f7 1243 Double_t dzmf = zfitter.GetFunctionParameter(1);
1244 Double_t zmf = zfitter.GetFunctionValue(&xref);
1245 fitter->FixParameter(3, zmf);
1246 fitter->FixParameter(4, dzmf);
1247 fitter->Eval();
1248 fitter->ReleaseParameter(3);
1249 fitter->ReleaseParameter(4);
1250 z0 = fitter->GetParameter(3); // = zmf ?
1251 dzdx = fitter->GetParameter(4); // = dzmf ?
1252 }
1253
1254 // Calculate Curvature
1255 Double_t a = fitter->GetParameter(0);
1256 Double_t b = fitter->GetParameter(1);
1257 Double_t c = fitter->GetParameter(2);
1258 Double_t y0 = 1. / a;
1259 Double_t x0 = -b * y0;
1260 Double_t R = TMath::Sqrt(y0*y0 + x0*x0 - c*y0);
1261 Double_t C = 1.0 + b*b - c*a;
1262 if (C > 0.0) C = a / TMath::Sqrt(C);
1263
1264 // Calculate chi2 of the fit
1265 Double_t chi2 = fitter->GetChisquare()/Double_t(nPoints);
1266
1267 // Update the tracklets
1268 if(!track){
1269 for(Int_t ip = 0; ip < kNPlanes; ip++) {
1270 x = tracklets[ip].GetX0();
1271 Double_t tmp = TMath::Sqrt(R*R-(x-x0)*(x-x0));
1272
1273 // y: R^2 = (x - x0)^2 + (y - y0)^2
1274 // => y = y0 +/- Sqrt(R^2 - (x - x0)^2)
1275 tracklets[ip].SetYref(0, y0 - (y0>0.?1.:-1)*tmp);
1276 // => dy/dx = (x - x0)/Sqrt(R^2 - (x - x0)^2)
1277 tracklets[ip].SetYref(1, (x - x0) / tmp);
1278 tracklets[ip].SetZref(0, z0 + dzdx * (x - xref));
1279 tracklets[ip].SetZref(1, dzdx);
1280 tracklets[ip].SetC(C);
1281 tracklets[ip].SetChi2(chi2);
1282 }
1283 }
1284
1285 //update track points array
1286 if(np && points){
1287 Float_t xyz[3];
1288 for(int ip=0; ip<np; ip++){
1289 points[ip].GetXYZ(xyz);
1290 xyz[1] = y0 - (y0>0.?1.:-1)*TMath::Sqrt(R*R-(xyz[0]-x0)*(xyz[0]-x0));
1291 xyz[2] = z0 + dzdx * (xyz[0] - xref);
1292 points[ip].SetXYZ(xyz);
1293 }
1294 }
1295
3a039a31 1296/* if(fReconstructor->GetStreamLevel() >=5){
3b57a3f7 1297 TTreeSRedirector &cstreamer = *fgDebugStreamer;
1298 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
1299 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
1300 Double_t chi2z = CalculateChi2Z(tracklets, z0, dzdx, xref);
1301 cstreamer << "FitRiemanTilt"
1302 << "EventNumber=" << eventNumber
1303 << "CandidateNumber=" << candidateNumber
1304 << "xref=" << xref
1305 << "Chi2Z=" << chi2z
1306 << "\n";
3a039a31 1307 }*/
3b57a3f7 1308 return chi2;
1309}
1310
1311
1bf51039 1312//____________________________________________________________________
1313Double_t AliTRDtrackerV1::FitKalman(AliTRDtrackV1 *track, AliTRDseedV1 *tracklets, Bool_t up, Int_t np, AliTrackPoint *points)
1314{
1315// Kalman filter implementation for the TRD.
1316// It returns the positions of the fit in the array "points"
1317//
1318// Author : A.Bercuci@gsi.de
1319
1320 //printf("Start track @ x[%f]\n", track->GetX());
1321
1322 //prepare marker points along the track
1323 Int_t ip = np ? 0 : 1;
1324 while(ip<np){
1325 if((up?-1:1) * (track->GetX() - points[ip].GetX()) > 0.) break;
1326 //printf("AliTRDtrackerV1::FitKalman() : Skip track marker x[%d] = %7.3f. Before track start ( %7.3f ).\n", ip, points[ip].GetX(), track->GetX());
1327 ip++;
1328 }
1329 //if(points) printf("First marker point @ x[%d] = %f\n", ip, points[ip].GetX());
1330
1331
1332 AliTRDseedV1 tracklet, *ptrTracklet = 0x0;
1333
1334 //Loop through the TRD planes
1335 for (Int_t jplane = 0; jplane < kNPlanes; jplane++) {
1336 // GET TRACKLET OR BUILT IT
1337 Int_t iplane = up ? jplane : kNPlanes - 1 - jplane;
1338 if(tracklets){
1339 if(!(ptrTracklet = &tracklets[iplane])) continue;
1340 }else{
1341 if(!(ptrTracklet = track->GetTracklet(iplane))){
1342 /*AliTRDtrackerV1 *tracker = 0x0;
1343 if(!(tracker = dynamic_cast<AliTRDtrackerV1*>( AliTRDReconstructor::Tracker()))) continue;
1344 ptrTracklet = new(&tracklet) AliTRDseedV1(iplane);
1345 if(!tracker->MakeTracklet(ptrTracklet, track)) */
1346 continue;
1347 }
1348 }
1349 if(!ptrTracklet->IsOK()) continue;
1350
1351 Double_t x = ptrTracklet->GetX0();
1352
1353 while(ip < np){
1354 //don't do anything if next marker is after next update point.
1355 if((up?-1:1) * (points[ip].GetX() - x) - fgkMaxStep < 0) break;
1356
1357 //printf("Propagate to x[%d] = %f\n", ip, points[ip].GetX());
1358
1359 if(((up?-1:1) * (points[ip].GetX() - track->GetX()) < 0) && !PropagateToX(*track, points[ip].GetX(), fgkMaxStep)) return -1.;
1360
1361 Double_t xyz[3]; // should also get the covariance
1362 track->GetXYZ(xyz); points[ip].SetXYZ(xyz[0], xyz[1], xyz[2]);
1363 ip++;
1364 }
1365 //printf("plane[%d] tracklet[%p] x[%f]\n", iplane, ptrTracklet, x);
1366
1367 //Propagate closer to the next update point
1368 if(((up?-1:1) * (x - track->GetX()) + fgkMaxStep < 0) && !PropagateToX(*track, x + (up?-1:1)*fgkMaxStep, fgkMaxStep)) return -1.;
1369
1370 if(!AdjustSector(track)) return -1;
1371 if(TMath::Abs(track->GetSnp()) > fgkMaxSnp) return -1;
1372
1373 //load tracklet to the tracker and the track
1374/* Int_t index;
1375 if((index = FindTracklet(ptrTracklet)) < 0){
1376 ptrTracklet = SetTracklet(&tracklet);
1377 index = fTracklets->GetEntriesFast()-1;
1378 }
1379 track->SetTracklet(ptrTracklet, index);*/
1380
1381
1382 // register tracklet to track with tracklet creation !!
1383 // PropagateBack : loaded tracklet to the tracker and update index
1384 // RefitInward : update index
1385 // MakeTrack : loaded tracklet to the tracker and update index
1386 if(!tracklets) track->SetTracklet(ptrTracklet, -1);
1387
1388
1389 //Calculate the mean material budget along the path inside the chamber
1390 Double_t xyz0[3]; track->GetXYZ(xyz0);
1391 Double_t alpha = track->GetAlpha();
1392 Double_t xyz1[3], y, z;
1393 if(!track->GetProlongation(x, y, z)) return -1;
1394 xyz1[0] = x * TMath::Cos(alpha) - y * TMath::Sin(alpha);
1395 xyz1[1] = +x * TMath::Sin(alpha) + y * TMath::Cos(alpha);
1396 xyz1[2] = z;
1397 Double_t param[7];
1398 AliTracker::MeanMaterialBudget(xyz0, xyz1, param);
1399 Double_t xrho = param[0]*param[4]; // density*length
1400 Double_t xx0 = param[1]; // radiation length
1401
1402 //Propagate the track
1403 track->PropagateTo(x, xx0, xrho);
1404 if (!AdjustSector(track)) break;
1405
1406 //Update track
1407 Double_t chi2 = track->GetPredictedChi2(ptrTracklet);
1408 if(chi2<1e+10) track->Update(ptrTracklet, chi2);
1409
1410 if(!up) continue;
1411
1412 //Reset material budget if 2 consecutive gold
1413 if(iplane>0 && track->GetTracklet(iplane-1) && ptrTracklet->GetN() + track->GetTracklet(iplane-1)->GetN() > 20) track->SetBudget(2, 0.);
1414 } // end planes loop
1415
1416 // extrapolation
1417 while(ip < np){
1418 if(((up?-1:1) * (points[ip].GetX() - track->GetX()) < 0) && !PropagateToX(*track, points[ip].GetX(), fgkMaxStep)) return -1.;
1419
1420 Double_t xyz[3]; // should also get the covariance
1421 track->GetXYZ(xyz); points[ip].SetXYZ(xyz[0], xyz[1], xyz[2]);
1422 ip++;
1423 }
1424
1425 return track->GetChi2();
1426}
3b57a3f7 1427
eb38ed55 1428//_________________________________________________________________________
bb56afff 1429Float_t AliTRDtrackerV1::CalculateChi2Z(AliTRDseedV1 *tracklets, Double_t offset, Double_t slope, Double_t xref)
eb38ed55 1430{
41702fec 1431 //
1432 // Calculates the chi2-value of the track in z-Direction including tilting pad correction.
1433 // A linear dependence on the x-value serves as a model.
1434 // The parameters are related to the tilted Riemann fit.
1435 // Parameters: - Array of tracklets (AliTRDseedV1) related to the track candidate
1436 // - the offset for the reference x
1437 // - the slope
1438 // - the reference x position
1439 // Output: - The Chi2 value of the track in z-Direction
1440 //
1441 Float_t chi2Z = 0, nLayers = 0;
053767a4 1442 for (Int_t iLayer = 0; iLayer < AliTRDgeometry::kNlayer; iLayer++) {
41702fec 1443 if(!tracklets[iLayer].IsOK()) continue;
1444 Double_t z = offset + slope * (tracklets[iLayer].GetX0() - xref);
1445 chi2Z += TMath::Abs(tracklets[iLayer].GetMeanz() - z);
1446 nLayers++;
1447 }
1448 chi2Z /= TMath::Max((nLayers - 3.0),1.0);
1449 return chi2Z;
eb38ed55 1450}
1451
bccda319 1452//_____________________________________________________________________________
1453Int_t AliTRDtrackerV1::PropagateToX(AliTRDtrackV1 &t, Double_t xToGo, Double_t maxStep)
1454{
41702fec 1455 //
1456 // Starting from current X-position of track <t> this function
1457 // extrapolates the track up to radial position <xToGo>.
1458 // Returns 1 if track reaches the plane, and 0 otherwise
1459 //
bccda319 1460
41702fec 1461 const Double_t kEpsilon = 0.00001;
bccda319 1462
41702fec 1463 // Current track X-position
1464 Double_t xpos = t.GetX();
bccda319 1465
41702fec 1466 // Direction: inward or outward
1467 Double_t dir = (xpos < xToGo) ? 1.0 : -1.0;
bccda319 1468
41702fec 1469 while (((xToGo - xpos) * dir) > kEpsilon) {
bccda319 1470
41702fec 1471 Double_t xyz0[3];
1472 Double_t xyz1[3];
1473 Double_t param[7];
1474 Double_t x;
1475 Double_t y;
1476 Double_t z;
bccda319 1477
41702fec 1478 // The next step size
1479 Double_t step = dir * TMath::Min(TMath::Abs(xToGo-xpos),maxStep);
bccda319 1480
41702fec 1481 // Get the global position of the starting point
1482 t.GetXYZ(xyz0);
bccda319 1483
41702fec 1484 // X-position after next step
1485 x = xpos + step;
bccda319 1486
41702fec 1487 // Get local Y and Z at the X-position of the next step
1488 if (!t.GetProlongation(x,y,z)) {
1489 return 0; // No prolongation possible
1490 }
bccda319 1491
41702fec 1492 // The global position of the end point of this prolongation step
1493 xyz1[0] = x * TMath::Cos(t.GetAlpha()) - y * TMath::Sin(t.GetAlpha());
1494 xyz1[1] = +x * TMath::Sin(t.GetAlpha()) + y * TMath::Cos(t.GetAlpha());
1495 xyz1[2] = z;
bccda319 1496
41702fec 1497 // Calculate the mean material budget between start and
1498 // end point of this prolongation step
1499 AliTracker::MeanMaterialBudget(xyz0, xyz1, param);
bccda319 1500
41702fec 1501 // Propagate the track to the X-position after the next step
1502 if (!t.PropagateTo(x,param[1],param[0]*param[4])) {
1503 return 0;
1504 }
bccda319 1505
41702fec 1506 // Rotate the track if necessary
1507 AdjustSector(&t);
bccda319 1508
41702fec 1509 // New track X-position
1510 xpos = t.GetX();
bccda319 1511
41702fec 1512 }
bccda319 1513
41702fec 1514 return 1;
bccda319 1515
1516}
1517
eb38ed55 1518
1519//_____________________________________________________________________________
1520Int_t AliTRDtrackerV1::ReadClusters(TClonesArray* &array, TTree *clusterTree) const
1521{
41702fec 1522 //
1523 // Reads AliTRDclusters from the file.
1524 // The names of the cluster tree and branches
1525 // should match the ones used in AliTRDclusterizer::WriteClusters()
1526 //
1527
1528 Int_t nsize = Int_t(clusterTree->GetTotBytes() / (sizeof(AliTRDcluster)));
1529 TObjArray *clusterArray = new TObjArray(nsize+1000);
1530
1531 TBranch *branch = clusterTree->GetBranch("TRDcluster");
1532 if (!branch) {
1533 AliError("Can't get the branch !");
1534 return 1;
1535 }
1536 branch->SetAddress(&clusterArray);
1537
1538 if(!fClusters){
1539 array = new TClonesArray("AliTRDcluster", nsize);
1540 array->SetOwner(kTRUE);
1541 }
1542
1543 // Loop through all entries in the tree
1544 Int_t nEntries = (Int_t) clusterTree->GetEntries();
1545 Int_t nbytes = 0;
1546 Int_t ncl = 0;
1547 AliTRDcluster *c = 0x0;
1548 for (Int_t iEntry = 0; iEntry < nEntries; iEntry++) {
1549 // Import the tree
1550 nbytes += clusterTree->GetEvent(iEntry);
1551
1552 // Get the number of points in the detector
1553 Int_t nCluster = clusterArray->GetEntriesFast();
1554 for (Int_t iCluster = 0; iCluster < nCluster; iCluster++) {
1555 if(!(c = (AliTRDcluster *) clusterArray->UncheckedAt(iCluster))) continue;
1556 c->SetInChamber();
1557 new((*fClusters)[ncl++]) AliTRDcluster(*c);
1558 delete (clusterArray->RemoveAt(iCluster));
1559 }
1560
1561 }
1562 delete clusterArray;
1563
1564 return 0;
eb38ed55 1565}
1566
1567//_____________________________________________________________________________
1568Int_t AliTRDtrackerV1::LoadClusters(TTree *cTree)
1569{
41702fec 1570 //
66f6bfd9 1571 // Fills clusters into TRD tracking sectors
41702fec 1572 //
41702fec 1573
48f8adf3 1574 if(!fReconstructor->IsWritingClusters()){
1575 fClusters = AliTRDReconstructor::GetClusters();
1576 } else {
66f6bfd9 1577 if (ReadClusters(fClusters, cTree)) {
1578 AliError("Problem with reading the clusters !");
1579 return 1;
1580 }
1581 }
1582 SetClustersOwner();
1583
48f8adf3 1584 if(!fClusters || !fClusters->GetEntriesFast()){
66f6bfd9 1585 AliInfo("No TRD clusters");
41702fec 1586 return 1;
1587 }
66f6bfd9 1588
1589 //Int_t nin =
1590 BuildTrackingContainers();
1591
1592 //Int_t ncl = fClusters->GetEntriesFast();
1593 //AliInfo(Form("Clusters %d [%6.2f %% in the active volume]", ncl, 100.*float(nin)/ncl));
1594
1595 return 0;
1596}
1597
1598//_____________________________________________________________________________
1599Int_t AliTRDtrackerV1::LoadClusters(TClonesArray *clusters)
1600{
1601 //
1602 // Fills clusters into TRD tracking sectors
1603 // Function for use in the HLT
1604
1605 if(!clusters || !clusters->GetEntriesFast()){
1606 AliInfo("No TRD clusters");
41702fec 1607 return 1;
1608 }
1609
66f6bfd9 1610 fClusters = clusters;
1611 SetClustersOwner();
1612
1613 //Int_t nin =
1614 BuildTrackingContainers();
1615
1616 //Int_t ncl = fClusters->GetEntriesFast();
1617 //AliInfo(Form("Clusters %d [%6.2f %% in the active volume]", ncl, 100.*float(nin)/ncl));
1618
1619 return 0;
1620}
1621
1622
1623//____________________________________________________________________
1624Int_t AliTRDtrackerV1::BuildTrackingContainers()
1625{
1626// Building tracking containers for clusters
1627
1628 Int_t nin =0, icl = fClusters->GetEntriesFast();
41702fec 1629 while (icl--) {
1630 AliTRDcluster *c = (AliTRDcluster *) fClusters->UncheckedAt(icl);
1631 if(c->IsInChamber()) nin++;
1632 Int_t detector = c->GetDetector();
1633 Int_t sector = fGeom->GetSector(detector);
053767a4 1634 Int_t stack = fGeom->GetStack(detector);
1635 Int_t layer = fGeom->GetLayer(detector);
41702fec 1636
053767a4 1637 fTrSec[sector].GetChamber(stack, layer, kTRUE)->InsertCluster(c, icl);
41702fec 1638 }
b0a48c4d 1639
1640 const AliTRDCalDet *cal = AliTRDcalibDB::Instance()->GetT0Det();
053767a4 1641 for(int isector =0; isector<AliTRDgeometry::kNsector; isector++){
41702fec 1642 if(!fTrSec[isector].GetNChambers()) continue;
b0a48c4d 1643 fTrSec[isector].Init(fReconstructor, cal);
41702fec 1644 }
66f6bfd9 1645
1646 return nin;
eb38ed55 1647}
1648
1649
66f6bfd9 1650
0906e73e 1651//____________________________________________________________________
1652void AliTRDtrackerV1::UnloadClusters()
1653{
41702fec 1654 //
1655 // Clears the arrays of clusters and tracks. Resets sectors and timebins
1656 //
0906e73e 1657
41702fec 1658 if(fTracks) fTracks->Delete();
1659 if(fTracklets) fTracklets->Delete();
66f6bfd9 1660 if(fClusters && IsClustersOwner()) fClusters->Delete();
48f8adf3 1661 if(fClusters){
1662 if(IsClustersOwner()) fClusters->Delete();
1663
1664 // save clusters array in the reconstructor for further use.
1665 if(!fReconstructor->IsWritingClusters()){
1666 AliTRDReconstructor::SetClusters(fClusters);
1667 SetClustersOwner(kFALSE);
1668 } else AliTRDReconstructor::SetClusters(0x0);
1669 }
0906e73e 1670
053767a4 1671 for (int i = 0; i < AliTRDgeometry::kNsector; i++) fTrSec[i].Clear();
0906e73e 1672
41702fec 1673 // Increment the Event Number
1674 AliTRDtrackerDebug::SetEventNumber(AliTRDtrackerDebug::GetEventNumber() + 1);
eb38ed55 1675}
0906e73e 1676
eb38ed55 1677//_____________________________________________________________________________
1678Bool_t AliTRDtrackerV1::AdjustSector(AliTRDtrackV1 *track)
1679{
41702fec 1680 //
1681 // Rotates the track when necessary
1682 //
1683
1684 Double_t alpha = AliTRDgeometry::GetAlpha();
1685 Double_t y = track->GetY();
1686 Double_t ymax = track->GetX()*TMath::Tan(0.5*alpha);
1687
1688 if (y > ymax) {
1689 if (!track->Rotate( alpha)) {
1690 return kFALSE;
1691 }
1692 }
1693 else if (y < -ymax) {
1694 if (!track->Rotate(-alpha)) {
1695 return kFALSE;
1696 }
1697 }
1698
1699 return kTRUE;
0906e73e 1700
1701}
1702
eb38ed55 1703
0906e73e 1704//____________________________________________________________________
1705AliTRDseedV1* AliTRDtrackerV1::GetTracklet(AliTRDtrackV1 *track, Int_t p, Int_t &idx)
1706{
41702fec 1707 // Find tracklet for TRD track <track>
1708 // Parameters
1709 // - track
1710 // - sector
1711 // - plane
1712 // - index
1713 // Output
1714 // tracklet
1715 // index
1716 // Detailed description
1717 //
1718 idx = track->GetTrackletIndex(p);
1719 AliTRDseedV1 *tracklet = (idx==0xffff) ? 0x0 : (AliTRDseedV1*)fTracklets->UncheckedAt(idx);
1720
1721 return tracklet;
0906e73e 1722}
1723
1724//____________________________________________________________________
3b57a3f7 1725AliTRDseedV1* AliTRDtrackerV1::SetTracklet(AliTRDseedV1 *tracklet)
0906e73e 1726{
41702fec 1727 // Add this tracklet to the list of tracklets stored in the tracker
1728 //
1729 // Parameters
1730 // - tracklet : pointer to the tracklet to be added to the list
1731 //
1732 // Output
1733 // - the index of the new tracklet in the tracker tracklets list
1734 //
1735 // Detailed description
1736 // Build the tracklets list if it is not yet created (late initialization)
1737 // and adds the new tracklet to the list.
1738 //
1739 if(!fTracklets){
053767a4 1740 fTracklets = new TClonesArray("AliTRDseedV1", AliTRDgeometry::Nsector()*kMaxTracksStack);
41702fec 1741 fTracklets->SetOwner(kTRUE);
1742 }
1743 Int_t nentries = fTracklets->GetEntriesFast();
1744 return new ((*fTracklets)[nentries]) AliTRDseedV1(*tracklet);
972ef65e 1745}
1746
d20df6fc 1747//____________________________________________________________________
1748AliTRDtrackV1* AliTRDtrackerV1::SetTrack(AliTRDtrackV1 *track)
1749{
1750 // Add this track to the list of tracks stored in the tracker
1751 //
1752 // Parameters
1753 // - track : pointer to the track to be added to the list
1754 //
1755 // Output
1756 // - the pointer added
1757 //
1758 // Detailed description
1759 // Build the tracks list if it is not yet created (late initialization)
1760 // and adds the new track to the list.
1761 //
1762 if(!fTracks){
053767a4 1763 fTracks = new TClonesArray("AliTRDtrackV1", AliTRDgeometry::Nsector()*kMaxTracksStack);
d20df6fc 1764 fTracks->SetOwner(kTRUE);
1765 }
1766 Int_t nentries = fTracks->GetEntriesFast();
1767 return new ((*fTracks)[nentries]) AliTRDtrackV1(*track);
1768}
1769
1770
0906e73e 1771
e4f2f73d 1772//____________________________________________________________________
eb38ed55 1773Int_t AliTRDtrackerV1::Clusters2TracksSM(Int_t sector, AliESDEvent *esd)
e4f2f73d 1774{
41702fec 1775 //
1776 // Steer tracking for one SM.
1777 //
1778 // Parameters :
1779 // sector : Array of (SM) propagation layers containing clusters
1780 // esd : The current ESD event. On output it contains the also
1781 // the ESD (TRD) tracks found in this SM.
1782 //
1783 // Output :
1784 // Number of tracks found in this TRD supermodule.
1785 //
1786 // Detailed description
1787 //
1788 // 1. Unpack AliTRDpropagationLayers objects for each stack.
1789 // 2. Launch stack tracking.
1790 // See AliTRDtrackerV1::Clusters2TracksStack() for details.
1791 // 3. Pack results in the ESD event.
1792 //
1793
1794 // allocate space for esd tracks in this SM
1795 TClonesArray esdTrackList("AliESDtrack", 2*kMaxTracksStack);
1796 esdTrackList.SetOwner();
1797
1798 Int_t nTracks = 0;
1799 Int_t nChambers = 0;
1800 AliTRDtrackingChamber **stack = 0x0, *chamber = 0x0;
053767a4 1801 for(int istack = 0; istack<AliTRDgeometry::kNstack; istack++){
41702fec 1802 if(!(stack = fTrSec[sector].GetStack(istack))) continue;
1803 nChambers = 0;
053767a4 1804 for(int ilayer=0; ilayer<AliTRDgeometry::kNlayer; ilayer++){
1805 if(!(chamber = stack[ilayer])) continue;
3a039a31 1806 if(chamber->GetNClusters() < fgNTimeBins * fReconstructor->GetRecoParam() ->GetFindableClusters()) continue;
41702fec 1807 nChambers++;
053767a4 1808 //AliInfo(Form("sector %d stack %d layer %d clusters %d", sector, istack, ilayer, chamber->GetNClusters()));
41702fec 1809 }
1810 if(nChambers < 4) continue;
1811 //AliInfo(Form("Doing stack %d", istack));
1812 nTracks += Clusters2TracksStack(stack, &esdTrackList);
1813 }
1814 //AliInfo(Form("Found %d tracks in SM %d [%d]\n", nTracks, sector, esd->GetNumberOfTracks()));
1815
1816 for(int itrack=0; itrack<nTracks; itrack++)
1817 esd->AddTrack((AliESDtrack*)esdTrackList[itrack]);
1818
1819 // Reset Track and Candidate Number
1820 AliTRDtrackerDebug::SetCandidateNumber(0);
1821 AliTRDtrackerDebug::SetTrackNumber(0);
1822 return nTracks;
e4f2f73d 1823}
1824
1825//____________________________________________________________________
eb38ed55 1826Int_t AliTRDtrackerV1::Clusters2TracksStack(AliTRDtrackingChamber **stack, TClonesArray *esdTrackList)
e4f2f73d 1827{
41702fec 1828 //
1829 // Make tracks in one TRD stack.
1830 //
1831 // Parameters :
1832 // layer : Array of stack propagation layers containing clusters
1833 // esdTrackList : Array of ESD tracks found by the stand alone tracker.
1834 // On exit the tracks found in this stack are appended.
1835 //
1836 // Output :
1837 // Number of tracks found in this stack.
1838 //
1839 // Detailed description
1840 //
1841 // 1. Find the 3 most useful seeding chambers. See BuildSeedingConfigs() for details.
1842 // 2. Steer AliTRDtrackerV1::MakeSeeds() for 3 seeding layer configurations.
1843 // See AliTRDtrackerV1::MakeSeeds() for more details.
1844 // 3. Arrange track candidates in decreasing order of their quality
1845 // 4. Classify tracks in 5 categories according to:
1846 // a) number of layers crossed
1847 // b) track quality
1848 // 5. Sign clusters by tracks in decreasing order of track quality
1849 // 6. Build AliTRDtrack out of seeding tracklets
1850 // 7. Cook MC label
1851 // 8. Build ESD track and register it to the output list
1852 //
1853
b0a48c4d 1854 const AliTRDCalDet *cal = AliTRDcalibDB::Instance()->GetT0Det();
41702fec 1855 AliTRDtrackingChamber *chamber = 0x0;
1856 AliTRDseedV1 sseed[kMaxTracksStack*6]; // to be initialized
1857 Int_t pars[4]; // MakeSeeds parameters
1858
1859 //Double_t alpha = AliTRDgeometry::GetAlpha();
1860 //Double_t shift = .5 * alpha;
1861 Int_t configs[kNConfigs];
1862
1863 // Build initial seeding configurations
1864 Double_t quality = BuildSeedingConfigs(stack, configs);
3a039a31 1865 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
41702fec 1866 AliInfo(Form("Plane config %d %d %d Quality %f"
1867 , configs[0], configs[1], configs[2], quality));
1868 }
1869
1870 // Initialize contors
1871 Int_t ntracks, // number of TRD track candidates
1872 ntracks1, // number of registered TRD tracks/iter
1873 ntracks2 = 0; // number of all registered TRD tracks in stack
1874 fSieveSeeding = 0;
1875 do{
1876 // Loop over seeding configurations
1877 ntracks = 0; ntracks1 = 0;
1878 for (Int_t iconf = 0; iconf<3; iconf++) {
1879 pars[0] = configs[iconf];
1880 pars[1] = ntracks;
1881 ntracks = MakeSeeds(stack, &sseed[6*ntracks], pars);
1882 if(ntracks == kMaxTracksStack) break;
1883 }
3a039a31 1884 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1) AliInfo(Form("Candidate TRD tracks %d in iteration %d.", ntracks, fSieveSeeding));
41702fec 1885
1886 if(!ntracks) break;
1887
1888 // Sort the seeds according to their quality
1889 Int_t sort[kMaxTracksStack];
1890 TMath::Sort(ntracks, fTrackQuality, sort, kTRUE);
1891
1892 // Initialize number of tracks so far and logic switches
1893 Int_t ntracks0 = esdTrackList->GetEntriesFast();
1894 Bool_t signedTrack[kMaxTracksStack];
1895 Bool_t fakeTrack[kMaxTracksStack];
1896 for (Int_t i=0; i<ntracks; i++){
1897 signedTrack[i] = kFALSE;
1898 fakeTrack[i] = kFALSE;
1899 }
1900 //AliInfo("Selecting track candidates ...");
1901
1902 // Sieve clusters in decreasing order of track quality
1903 Double_t trackParams[7];
1904 // AliTRDseedV1 *lseed = 0x0;
1905 Int_t jSieve = 0, candidates;
1906 do{
1907 //AliInfo(Form("\t\tITER = %i ", jSieve));
1908
1909 // Check track candidates
1910 candidates = 0;
1911 for (Int_t itrack = 0; itrack < ntracks; itrack++) {
804bb02e 1912 Int_t trackIndex = sort[itrack];
1913 if (signedTrack[trackIndex] || fakeTrack[trackIndex]) continue;
41702fec 1914
1915
804bb02e 1916 // Calculate track parameters from tracklets seeds
804bb02e 1917 Int_t ncl = 0;
1918 Int_t nused = 0;
1919 Int_t nlayers = 0;
1920 Int_t findable = 0;
1921 for (Int_t jLayer = 0; jLayer < kNPlanes; jLayer++) {
1922 Int_t jseed = kNPlanes*trackIndex+jLayer;
1923 if(!sseed[jseed].IsOK()) continue;
1924 if (TMath::Abs(sseed[jseed].GetYref(0) / sseed[jseed].GetX0()) < 0.15) findable++;
1925
1926 sseed[jseed].UpdateUsed();
1927 ncl += sseed[jseed].GetN2();
1928 nused += sseed[jseed].GetNUsed();
1929 nlayers++;
804bb02e 1930 }
1931
41702fec 1932 // Filter duplicated tracks
1933 if (nused > 30){
1934 //printf("Skip %d nused %d\n", trackIndex, nused);
1935 fakeTrack[trackIndex] = kTRUE;
1936 continue;
1937 }
1938 if (Float_t(nused)/ncl >= .25){
1939 //printf("Skip %d nused/ncl >= .25\n", trackIndex);
1940 fakeTrack[trackIndex] = kTRUE;
1941 continue;
1942 }
1943
1944 // Classify tracks
1945 Bool_t skip = kFALSE;
1946 switch(jSieve){
1947 case 0:
1948 if(nlayers < 6) {skip = kTRUE; break;}
1949 if(TMath::Log(1.E-9+fTrackQuality[trackIndex]) < -5.){skip = kTRUE; break;}
1950 break;
1951
1952 case 1:
1953 if(nlayers < findable){skip = kTRUE; break;}
1954 if(TMath::Log(1.E-9+fTrackQuality[trackIndex]) < -4.){skip = kTRUE; break;}
1955 break;
1956
1957 case 2:
1958 if ((nlayers == findable) || (nlayers == 6)) { skip = kTRUE; break;}
1959 if (TMath::Log(1.E-9+fTrackQuality[trackIndex]) < -6.0){skip = kTRUE; break;}
1960 break;
1961
1962 case 3:
1963 if (TMath::Log(1.E-9+fTrackQuality[trackIndex]) < -5.){skip = kTRUE; break;}
1964 break;
1965
1966 case 4:
1967 if (nlayers == 3){skip = kTRUE; break;}
1968 //if (TMath::Log(1.E-9+fTrackQuality[trackIndex]) - nused/(nlayers-3.0) < -15.0){skip = kTRUE; break;}
1969 break;
1970 }
1971 if(skip){
1972 candidates++;
1973 //printf("REJECTED : %d [%d] nlayers %d trackQuality = %e nused %d\n", itrack, trackIndex, nlayers, fTrackQuality[trackIndex], nused);
1974 continue;
1975 }
1976 signedTrack[trackIndex] = kTRUE;
1977
41702fec 1978
1979 // Sign clusters
1980 AliTRDcluster *cl = 0x0; Int_t clusterIndex = -1;
be24510a 1981 for (Int_t jLayer = 0; jLayer < kNPlanes; jLayer++) {
41702fec 1982 Int_t jseed = kNPlanes*trackIndex+jLayer;
1983 if(!sseed[jseed].IsOK()) continue;
1984 if(TMath::Abs(sseed[jseed].GetYfit(1) - sseed[jseed].GetYfit(1)) >= .2) continue; // check this condition with Marian
1985 sseed[jseed].UseClusters();
1986 if(!cl){
1987 Int_t ic = 0;
1988 while(!(cl = sseed[jseed].GetClusters(ic))) ic++;
1989 clusterIndex = sseed[jseed].GetIndexes(ic);
1990 }
1991 }
1992 if(!cl) continue;
1993
1994
1995 // Build track parameters
1996 AliTRDseedV1 *lseed =&sseed[trackIndex*6];
e79f8eb0 1997/* Int_t idx = 0;
41702fec 1998 while(idx<3 && !lseed->IsOK()) {
1999 idx++;
2000 lseed++;
e79f8eb0 2001 }*/
e79f8eb0 2002 Double_t x = lseed->GetX0();// - 3.5;
41702fec 2003 trackParams[0] = x; //NEW AB
e79f8eb0 2004 trackParams[1] = lseed->GetYref(0); // lseed->GetYat(x);
2005 trackParams[2] = lseed->GetZref(0); // lseed->GetZat(x);
2006 trackParams[3] = TMath::Sin(TMath::ATan(lseed->GetYref(1)));
41702fec 2007 trackParams[4] = lseed->GetZref(1) / TMath::Sqrt(1. + lseed->GetYref(1) * lseed->GetYref(1));
be24510a 2008 trackParams[5] = lseed->GetC();
41702fec 2009 Int_t ich = 0; while(!(chamber = stack[ich])) ich++;
2010 trackParams[6] = fGeom->GetSector(chamber->GetDetector());/* *alpha+shift; // Supermodule*/
2011
3a039a31 2012 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
41702fec 2013 AliInfo(Form("Track %d [%d] nlayers %d trackQuality = %e nused %d, yref = %3.3f", itrack, trackIndex, nlayers, fTrackQuality[trackIndex], nused, trackParams[1]));
2014
2015 Int_t nclusters = 0;
2016 AliTRDseedV1 *dseed[6];
804bb02e 2017
2018 // Build track label - what happens if measured data ???
2019 Int_t labels[1000];
2020 Int_t outlab[1000];
2021 Int_t nlab = 0;
d877f55f 2022
2023 Int_t labelsall[1000];
2024 Int_t nlabelsall = 0;
2025 Int_t naccepted = 0;
2026
804bb02e 2027 for (Int_t iLayer = 0; iLayer < kNPlanes; iLayer++) {
2028 Int_t jseed = kNPlanes*trackIndex+iLayer;
2029 dseed[iLayer] = new AliTRDseedV1(sseed[jseed]);
2030 dseed[iLayer]->SetOwner();
2031 nclusters += sseed[jseed].GetN2();
2032 if(!sseed[jseed].IsOK()) continue;
2033 for(int ilab=0; ilab<2; ilab++){
2034 if(sseed[jseed].GetLabels(ilab) < 0) continue;
2035 labels[nlab] = sseed[jseed].GetLabels(ilab);
2036 nlab++;
2037 }
d877f55f 2038
2039 // Cooking label
2040 for (Int_t itime = 0; itime < fgNTimeBins; itime++) {
2041 if(!sseed[jseed].IsUsable(itime)) continue;
2042 naccepted++;
2043 Int_t tindex = 0, ilab = 0;
2044 while(ilab<3 && (tindex = sseed[jseed].GetClusters(itime)->GetLabel(ilab)) >= 0){
2045 labelsall[nlabelsall++] = tindex;
2046 ilab++;
2047 }
2048 }
41702fec 2049 }
804bb02e 2050 Freq(nlab,labels,outlab,kFALSE);
2051 Int_t label = outlab[0];
2052 Int_t frequency = outlab[1];
2053 Freq(nlabelsall,labelsall,outlab,kFALSE);
2054 Int_t label1 = outlab[0];
2055 Int_t label2 = outlab[2];
2056 Float_t fakeratio = (naccepted - outlab[1]) / Float_t(naccepted);
2057
41702fec 2058 //Int_t eventNrInFile = esd->GetEventNumberInFile();
2059 //AliInfo(Form("Number of clusters %d.", nclusters));
2060 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2061 Int_t trackNumber = AliTRDtrackerDebug::GetTrackNumber();
2062 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2063 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2064 cstreamer << "Clusters2TracksStack"
2065 << "EventNumber=" << eventNumber
2066 << "TrackNumber=" << trackNumber
2067 << "CandidateNumber=" << candidateNumber
2068 << "Iter=" << fSieveSeeding
2069 << "Like=" << fTrackQuality[trackIndex]
2070 << "S0.=" << dseed[0]
2071 << "S1.=" << dseed[1]
2072 << "S2.=" << dseed[2]
2073 << "S3.=" << dseed[3]
2074 << "S4.=" << dseed[4]
2075 << "S5.=" << dseed[5]
2076 << "p0=" << trackParams[0]
2077 << "p1=" << trackParams[1]
2078 << "p2=" << trackParams[2]
2079 << "p3=" << trackParams[3]
2080 << "p4=" << trackParams[4]
2081 << "p5=" << trackParams[5]
2082 << "p6=" << trackParams[6]
2083 << "Label=" << label
2084 << "Label1=" << label1
2085 << "Label2=" << label2
2086 << "FakeRatio=" << fakeratio
2087 << "Freq=" << frequency
2088 << "Ncl=" << ncl
2089 << "NLayers=" << nlayers
2090 << "Findable=" << findable
41702fec 2091 << "NUsed=" << nused
2092 << "\n";
2093 }
2094
2095 AliTRDtrackV1 *track = MakeTrack(&sseed[trackIndex*kNPlanes], trackParams);
2096 if(!track){
2097 AliWarning("Fail to build a TRD Track.");
2098 continue;
2099 }
76b60503 2100
41702fec 2101 //AliInfo("End of MakeTrack()");
098c3c3d 2102 AliESDtrack *esdTrack = new ((*esdTrackList)[ntracks0++]) AliESDtrack();
2103 esdTrack->UpdateTrackParams(track, AliESDtrack::kTRDout);
2104 esdTrack->SetLabel(track->GetLabel());
2105 track->UpdateESDtrack(esdTrack);
41702fec 2106 // write ESD-friends if neccessary
3a039a31 2107 if (fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 0){
41702fec 2108 AliTRDtrackV1 *calibTrack = new AliTRDtrackV1(*track);
2109 calibTrack->SetOwner();
098c3c3d 2110 esdTrack->AddCalibObject(calibTrack);
41702fec 2111 }
41702fec 2112 ntracks1++;
2113 AliTRDtrackerDebug::SetTrackNumber(AliTRDtrackerDebug::GetTrackNumber() + 1);
2114 }
2115
2116 jSieve++;
2117 } while(jSieve<5 && candidates); // end track candidates sieve
2118 if(!ntracks1) break;
2119
2120 // increment counters
2121 ntracks2 += ntracks1;
4302c900 2122
2123 if(fReconstructor->IsHLT()) break;
41702fec 2124 fSieveSeeding++;
2125
2126 // Rebuild plane configurations and indices taking only unused clusters into account
2127 quality = BuildSeedingConfigs(stack, configs);
3a039a31 2128 if(quality < 1.E-7) break; //fReconstructor->GetRecoParam() ->GetPlaneQualityThreshold()) break;
41702fec 2129
2130 for(Int_t ip = 0; ip < kNPlanes; ip++){
2131 if(!(chamber = stack[ip])) continue;
b0a48c4d 2132 chamber->Build(fGeom, cal);//Indices(fSieveSeeding);
41702fec 2133 }
2134
3a039a31 2135 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
41702fec 2136 AliInfo(Form("Sieve level %d Plane config %d %d %d Quality %f", fSieveSeeding, configs[0], configs[1], configs[2], quality));
2137 }
2138 } while(fSieveSeeding<10); // end stack clusters sieve
2139
2140
2141
2142 //AliInfo(Form("Registered TRD tracks %d in stack %d.", ntracks2, pars[1]));
2143
2144 return ntracks2;
e4f2f73d 2145}
2146
2147//___________________________________________________________________
eb38ed55 2148Double_t AliTRDtrackerV1::BuildSeedingConfigs(AliTRDtrackingChamber **stack, Int_t *configs)
e4f2f73d 2149{
41702fec 2150 //
2151 // Assign probabilities to chambers according to their
2152 // capability of producing seeds.
2153 //
2154 // Parameters :
2155 //
2156 // layers : Array of stack propagation layers for all 6 chambers in one stack
2157 // configs : On exit array of configuration indexes (see GetSeedingConfig()
2158 // for details) in the decreasing order of their seeding probabilities.
2159 //
2160 // Output :
2161 //
2162 // Return top configuration quality
2163 //
2164 // Detailed description:
2165 //
2166 // To each chamber seeding configuration (see GetSeedingConfig() for
2167 // the list of all configurations) one defines 2 quality factors:
2168 // - an apriori topological quality (see GetSeedingConfig() for details) and
2169 // - a data quality based on the uniformity of the distribution of
2170 // clusters over the x range (time bins population). See CookChamberQA() for details.
2171 // The overall chamber quality is given by the product of this 2 contributions.
2172 //
2173
2174 Double_t chamberQ[kNPlanes];
2175 AliTRDtrackingChamber *chamber = 0x0;
2176 for(int iplane=0; iplane<kNPlanes; iplane++){
2177 if(!(chamber = stack[iplane])) continue;
2178 chamberQ[iplane] = (chamber = stack[iplane]) ? chamber->GetQuality() : 0.;
2179 }
2180
2181 Double_t tconfig[kNConfigs];
2182 Int_t planes[4];
2183 for(int iconf=0; iconf<kNConfigs; iconf++){
2184 GetSeedingConfig(iconf, planes);
2185 tconfig[iconf] = fgTopologicQA[iconf];
2186 for(int iplane=0; iplane<4; iplane++) tconfig[iconf] *= chamberQ[planes[iplane]];
2187 }
2188
2189 TMath::Sort((Int_t)kNConfigs, tconfig, configs, kTRUE);
2190 // AliInfo(Form("q[%d] = %f", configs[0], tconfig[configs[0]]));
2191 // AliInfo(Form("q[%d] = %f", configs[1], tconfig[configs[1]]));
2192 // AliInfo(Form("q[%d] = %f", configs[2], tconfig[configs[2]]));
2193
2194 return tconfig[configs[0]];
e4f2f73d 2195}
2196
2197//____________________________________________________________________
eb38ed55 2198Int_t AliTRDtrackerV1::MakeSeeds(AliTRDtrackingChamber **stack, AliTRDseedV1 *sseed, Int_t *ipar)
e4f2f73d 2199{
41702fec 2200 //
2201 // Make tracklet seeds in the TRD stack.
2202 //
2203 // Parameters :
2204 // layers : Array of stack propagation layers containing clusters
2205 // sseed : Array of empty tracklet seeds. On exit they are filled.
2206 // ipar : Control parameters:
2207 // ipar[0] -> seeding chambers configuration
2208 // ipar[1] -> stack index
2209 // ipar[2] -> number of track candidates found so far
2210 //
2211 // Output :
2212 // Number of tracks candidates found.
2213 //
2214 // Detailed description
2215 //
2216 // The following steps are performed:
2217 // 1. Select seeding layers from seeding chambers
2218 // 2. Select seeding clusters from the seeding AliTRDpropagationLayerStack.
2219 // The clusters are taken from layer 3, layer 0, layer 1 and layer 2, in
2220 // this order. The parameters controling the range of accepted clusters in
2221 // layer 0, 1, and 2 are defined in AliTRDchamberTimeBin::BuildCond().
2222 // 3. Helix fit of the cluster set. (see AliTRDtrackerFitter::FitRieman(AliTRDcluster**))
2223 // 4. Initialize seeding tracklets in the seeding chambers.
2224 // 5. Filter 0.
2225 // Chi2 in the Y direction less than threshold ... (1./(3. - sLayer))
2226 // Chi2 in the Z direction less than threshold ... (1./(3. - sLayer))
2227 // 6. Attach clusters to seeding tracklets and find linear approximation of
2228 // the tracklet (see AliTRDseedV1::AttachClustersIter()). The number of used
2229 // clusters used by current seeds should not exceed ... (25).
2230 // 7. Filter 1.
2231 // All 4 seeding tracklets should be correctly constructed (see
2232 // AliTRDseedV1::AttachClustersIter())
2233 // 8. Helix fit of the seeding tracklets
2234 // 9. Filter 2.
2235 // Likelihood calculation of the fit. (See AliTRDtrackerV1::CookLikelihood() for details)
2236 // 10. Extrapolation of the helix fit to the other 2 chambers:
2237 // a) Initialization of extrapolation tracklet with fit parameters
2238 // b) Helix fit of tracklets
2239 // c) Attach clusters and linear interpolation to extrapolated tracklets
2240 // d) Helix fit of tracklets
2241 // 11. Improve seeding tracklets quality by reassigning clusters.
2242 // See AliTRDtrackerV1::ImproveSeedQuality() for details.
2243 // 12. Helix fit of all 6 seeding tracklets and chi2 calculation
2244 // 13. Hyperplane fit and track quality calculation. See AliTRDtrackerFitter::FitHyperplane() for details.
2245 // 14. Cooking labels for tracklets. Should be done only for MC
2246 // 15. Register seeds.
2247 //
2248
2249 AliTRDtrackingChamber *chamber = 0x0;
be24510a 2250 AliTRDcluster *c[kNSeedPlanes] = {0x0, 0x0, 0x0, 0x0}; // initilize seeding clusters
41702fec 2251 AliTRDseedV1 *cseed = &sseed[0]; // initialize tracklets for first track
2252 Int_t ncl, mcl; // working variable for looping over clusters
2253 Int_t index[AliTRDchamberTimeBin::kMaxClustersLayer], jndex[AliTRDchamberTimeBin::kMaxClustersLayer];
2254 // chi2 storage
2255 // chi2[0] = tracklet chi2 on the Z direction
2256 // chi2[1] = tracklet chi2 on the R direction
2257 Double_t chi2[4];
2258
e79f8eb0 2259 // Default positions for the anode wire in all 6 Layers in case of a stack with missing clusters
2260 // Positions taken using cosmic data taken with SM3 after rebuild
2261 Double_t x_def[kNPlanes] = {300.2, 312.8, 325.4, 338, 350.6, 363.2};
41702fec 2262
2263 // this should be data member of AliTRDtrack
2264 Double_t seedQuality[kMaxTracksStack];
2265
2266 // unpack control parameters
2267 Int_t config = ipar[0];
2268 Int_t ntracks = ipar[1];
2269 Int_t planes[kNSeedPlanes]; GetSeedingConfig(config, planes);
be24510a 2270 Int_t planesExt[kNPlanes-kNSeedPlanes]; GetExtrapolationConfig(config, planesExt);
2271
2272
41702fec 2273 // Init chambers geometry
2274 Int_t ic = 0; while(!(chamber = stack[ic])) ic++;
053767a4 2275 Int_t istack = fGeom->GetStack(chamber->GetDetector());
41702fec 2276 Double_t hL[kNPlanes]; // Tilting angle
2277 Float_t padlength[kNPlanes]; // pad lenghts
2278 AliTRDpadPlane *pp = 0x0;
2279 for(int iplane=0; iplane<kNPlanes; iplane++){
2280 pp = fGeom->GetPadPlane(iplane, istack);
bb79ccd5 2281 hL[iplane] = TMath::Tan(TMath::DegToRad()*pp->GetTiltingAngle());
41702fec 2282 padlength[iplane] = pp->GetLengthIPad();
2283 }
2284
3a039a31 2285 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
41702fec 2286 AliInfo(Form("Making seeds Stack[%d] Config[%d] Tracks[%d]...", istack, config, ntracks));
2287 }
2288
d611c74f 2289 ResetSeedTB();
41702fec 2290 Int_t nlayers = 0;
41702fec 2291 for(int isl=0; isl<kNSeedPlanes; isl++){
2292 if(!(chamber = stack[planes[isl]])) continue;
3a039a31 2293 if(!chamber->GetSeedingLayer(fSeedTB[isl], fGeom, fReconstructor)) continue;
41702fec 2294 nlayers++;
41702fec 2295 }
2296 if(nlayers < 4) return 0;
2297
2298
2299 // Start finding seeds
2300 Double_t cond0[4], cond1[4], cond2[4];
2301 Int_t icl = 0;
d611c74f 2302 while((c[3] = (*fSeedTB[3])[icl++])){
41702fec 2303 if(!c[3]) continue;
d611c74f 2304 fSeedTB[0]->BuildCond(c[3], cond0, 0);
2305 fSeedTB[0]->GetClusters(cond0, index, ncl);
41702fec 2306 //printf("Found c[3] candidates 0 %d\n", ncl);
2307 Int_t jcl = 0;
2308 while(jcl<ncl) {
d611c74f 2309 c[0] = (*fSeedTB[0])[index[jcl++]];
41702fec 2310 if(!c[0]) continue;
2311 Double_t dx = c[3]->GetX() - c[0]->GetX();
2312 Double_t theta = (c[3]->GetZ() - c[0]->GetZ())/dx;
2313 Double_t phi = (c[3]->GetY() - c[0]->GetY())/dx;
d611c74f 2314 fSeedTB[1]->BuildCond(c[0], cond1, 1, theta, phi);
2315 fSeedTB[1]->GetClusters(cond1, jndex, mcl);
41702fec 2316 //printf("Found c[0] candidates 1 %d\n", mcl);
2317
2318 Int_t kcl = 0;
2319 while(kcl<mcl) {
d611c74f 2320 c[1] = (*fSeedTB[1])[jndex[kcl++]];
2321 if(!c[1]) continue;
2322 fSeedTB[2]->BuildCond(c[1], cond2, 2, theta, phi);
2323 c[2] = fSeedTB[2]->GetNearestCluster(cond2);
2324 //printf("Found c[1] candidate 2 %p\n", c[2]);
2325 if(!c[2]) continue;
2326
2327 // AliInfo("Seeding clusters found. Building seeds ...");
2328 // for(Int_t i = 0; i < kNSeedPlanes; i++) printf("%i. coordinates: x = %6.3f, y = %6.3f, z = %6.3f\n", i, c[i]->GetX(), c[i]->GetY(), c[i]->GetZ());
2329
804bb02e 2330 for (Int_t il = 0; il < kNPlanes; il++) cseed[il].Reset();
41702fec 2331
d611c74f 2332 FitRieman(c, chi2);
2333
2334 AliTRDseedV1 *tseed = 0x0;
3a039a31 2335 for(int iLayer=0; iLayer<kNPlanes; iLayer++){
43d6ad34 2336 tseed = &cseed[iLayer];
2337 tseed->SetPlane(iLayer);
2338 tseed->SetTilt(hL[iLayer]);
2339 tseed->SetPadLength(padlength[iLayer]);
3a039a31 2340 tseed->SetReconstructor(fReconstructor);
e79f8eb0 2341 Double_t x_anode = stack[iLayer] ? stack[iLayer]->GetX() : x_def[iLayer];
2342 tseed->SetX0(x_anode);
d611c74f 2343 tseed->Init(GetRiemanFitter());
2344 }
2345
2346 Bool_t isFake = kFALSE;
3a039a31 2347 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 2){
d611c74f 2348 if (c[0]->GetLabel(0) != c[3]->GetLabel(0)) isFake = kTRUE;
2349 if (c[1]->GetLabel(0) != c[3]->GetLabel(0)) isFake = kTRUE;
2350 if (c[2]->GetLabel(0) != c[3]->GetLabel(0)) isFake = kTRUE;
2351
2352 Double_t xpos[4];
2353 for(Int_t l = 0; l < kNSeedPlanes; l++) xpos[l] = fSeedTB[l]->GetX();
2354 Float_t yref[4];
2355 for(int il=0; il<4; il++) yref[il] = cseed[planes[il]].GetYref(0);
2356 Int_t ll = c[3]->GetLabel(0);
2357 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2358 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2359 AliRieman *rim = GetRiemanFitter();
2360 TTreeSRedirector &cs0 = *fgDebugStreamer;
2361 cs0 << "MakeSeeds0"
2362 <<"EventNumber=" << eventNumber
2363 <<"CandidateNumber=" << candidateNumber
2364 <<"isFake=" << isFake
2365 <<"config=" << config
2366 <<"label=" << ll
2367 <<"chi2z=" << chi2[0]
2368 <<"chi2y=" << chi2[1]
2369 <<"Y2exp=" << cond2[0]
2370 <<"Z2exp=" << cond2[1]
2371 <<"X0=" << xpos[0] //layer[sLayer]->GetX()
2372 <<"X1=" << xpos[1] //layer[sLayer + 1]->GetX()
2373 <<"X2=" << xpos[2] //layer[sLayer + 2]->GetX()
2374 <<"X3=" << xpos[3] //layer[sLayer + 3]->GetX()
2375 <<"yref0=" << yref[0]
2376 <<"yref1=" << yref[1]
2377 <<"yref2=" << yref[2]
2378 <<"yref3=" << yref[3]
2379 <<"c0.=" << c[0]
2380 <<"c1.=" << c[1]
2381 <<"c2.=" << c[2]
2382 <<"c3.=" << c[3]
2383 <<"Seed0.=" << &cseed[planes[0]]
2384 <<"Seed1.=" << &cseed[planes[1]]
2385 <<"Seed2.=" << &cseed[planes[2]]
2386 <<"Seed3.=" << &cseed[planes[3]]
2387 <<"RiemanFitter.=" << rim
2388 <<"\n";
2389 }
3a039a31 2390 if(chi2[0] > fReconstructor->GetRecoParam() ->GetChi2Z()/*7./(3. - sLayer)*//*iter*/){
91834b8d 2391// //AliInfo(Form("Failed chi2 filter on chi2Z [%f].", chi2[0]));
d611c74f 2392 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2393 continue;
2394 }
3a039a31 2395 if(chi2[1] > fReconstructor->GetRecoParam() ->GetChi2Y()/*1./(3. - sLayer)*//*iter*/){
91834b8d 2396// //AliInfo(Form("Failed chi2 filter on chi2Y [%f].", chi2[1]));
d611c74f 2397 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2398 continue;
2399 }
2400 //AliInfo("Passed chi2 filter.");
2401
2402 // try attaching clusters to tracklets
2403 Int_t nUsedCl = 0;
2404 Int_t mlayers = 0;
be24510a 2405 for(int iLayer=0; iLayer<kNSeedPlanes; iLayer++){
d611c74f 2406 Int_t jLayer = planes[iLayer];
2407 if(!cseed[jLayer].AttachClustersIter(stack[jLayer], 5., kFALSE, c[iLayer])) continue;
2408 nUsedCl += cseed[jLayer].GetNUsed();
2409 if(nUsedCl > 25) break;
2410 mlayers++;
2411 }
be24510a 2412
2413 if(mlayers < kNSeedPlanes){
2414 //AliInfo(Form("Failed updating all seeds %d [%d].", mlayers, kNSeedPlanes));
2415 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2416 continue;
2417 }
2418
2419 // temporary exit door for the HLT
4302c900 2420 if(fReconstructor->IsHLT()){
be24510a 2421 // attach clusters to extrapolation chambers
2422 for(int iLayer=0; iLayer<kNPlanes-kNSeedPlanes; iLayer++){
2423 Int_t jLayer = planesExt[iLayer];
2424 if(!(chamber = stack[jLayer])) continue;
2425 cseed[jLayer].AttachClustersIter(chamber, 1000.);
2426 }
4302c900 2427 fTrackQuality[ntracks] = 1.; // dummy value
2428 ntracks++;
218ba867 2429 if(ntracks == kMaxTracksStack) return ntracks;
4302c900 2430 cseed += 6;
2431 continue;
2432 }
2433
be24510a 2434
d611c74f 2435 // fit tracklets and cook likelihood
2436 FitTiltedRieman(&cseed[0], kTRUE);// Update Seeds and calculate Likelihood
91834b8d 2437 Double_t like = CookLikelihood(&cseed[0], planes); // to be checked
d611c74f 2438
3a039a31 2439 if (TMath::Log(1.E-9 + like) < fReconstructor->GetRecoParam() ->GetTrackLikelihood()){
d611c74f 2440 //AliInfo(Form("Failed likelihood %f[%e].", TMath::Log(1.E-9 + like), like));
2441 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2442 continue;
2443 }
2444 //AliInfo(Form("Passed likelihood %f[%e].", TMath::Log(1.E-9 + like), like));
2445
2446 // book preliminary results
2447 seedQuality[ntracks] = like;
2448 fSeedLayer[ntracks] = config;/*sLayer;*/
2449
2450 // attach clusters to the extrapolation seeds
d611c74f 2451 Int_t nusedf = 0; // debug value
be24510a 2452 for(int iLayer=0; iLayer<kNPlanes-kNSeedPlanes; iLayer++){
2453 Int_t jLayer = planesExt[iLayer];
d611c74f 2454 if(!(chamber = stack[jLayer])) continue;
d611c74f 2455
2456 // fit extrapolated seed
2457 if ((jLayer == 0) && !(cseed[1].IsOK())) continue;
2458 if ((jLayer == 5) && !(cseed[4].IsOK())) continue;
2459 AliTRDseedV1 pseed = cseed[jLayer];
2460 if(!pseed.AttachClustersIter(chamber, 1000.)) continue;
2461 cseed[jLayer] = pseed;
2462 nusedf += cseed[jLayer].GetNUsed(); // debug value
2463 FitTiltedRieman(cseed, kTRUE);
2464 }
2465
2466 // AliInfo("Extrapolation done.");
2467 // Debug Stream containing all the 6 tracklets
3a039a31 2468 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 2){
d611c74f 2469 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2470 TLinearFitter *tiltedRieman = GetTiltedRiemanFitter();
2471 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2472 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2473 cstreamer << "MakeSeeds1"
2474 << "EventNumber=" << eventNumber
2475 << "CandidateNumber=" << candidateNumber
2476 << "S0.=" << &cseed[0]
2477 << "S1.=" << &cseed[1]
2478 << "S2.=" << &cseed[2]
2479 << "S3.=" << &cseed[3]
2480 << "S4.=" << &cseed[4]
2481 << "S5.=" << &cseed[5]
2482 << "FitterT.=" << tiltedRieman
2483 << "\n";
2484 }
2485
fb872574 2486 if(fReconstructor->GetRecoParam()->HasImproveTracklets() && ImproveSeedQuality(stack, cseed) < 4){
d611c74f 2487 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2488 continue;
2489 }
2490 //AliInfo("Improve seed quality done.");
2491
2492 // fit full track and cook likelihoods
2493 // Double_t curv = FitRieman(&cseed[0], chi2);
2494 // Double_t chi2ZF = chi2[0] / TMath::Max((mlayers - 3.), 1.);
2495 // Double_t chi2RF = chi2[1] / TMath::Max((mlayers - 3.), 1.);
2496
2497 // do the final track fitting (Once with vertex constraint and once without vertex constraint)
2498 Double_t chi2Vals[3];
2499 chi2Vals[0] = FitTiltedRieman(&cseed[0], kFALSE);
91834b8d 2500 if(fReconstructor->GetRecoParam()->IsVertexConstrained())
d611c74f 2501 chi2Vals[1] = FitTiltedRiemanConstraint(&cseed[0], GetZ()); // Do Vertex Constrained fit if desired
2502 else
2503 chi2Vals[1] = 1.;
2504 chi2Vals[2] = GetChi2Z(&cseed[0]) / TMath::Max((mlayers - 3.), 1.);
2505 // Chi2 definitions in testing stage
2506 //chi2Vals[2] = GetChi2ZTest(&cseed[0]);
2507 fTrackQuality[ntracks] = CalculateTrackLikelihood(&cseed[0], &chi2Vals[0]);
2508 //AliInfo("Hyperplane fit done\n");
2509
2510 // finalize tracklets
2511 Int_t labels[12];
2512 Int_t outlab[24];
2513 Int_t nlab = 0;
2514 for (Int_t iLayer = 0; iLayer < 6; iLayer++) {
2515 if (!cseed[iLayer].IsOK()) continue;
2516
2517 if (cseed[iLayer].GetLabels(0) >= 0) {
2518 labels[nlab] = cseed[iLayer].GetLabels(0);
2519 nlab++;
2520 }
2521
2522 if (cseed[iLayer].GetLabels(1) >= 0) {
2523 labels[nlab] = cseed[iLayer].GetLabels(1);
2524 nlab++;
2525 }
2526 }
2527 Freq(nlab,labels,outlab,kFALSE);
2528 Int_t label = outlab[0];
2529 Int_t frequency = outlab[1];
2530 for (Int_t iLayer = 0; iLayer < 6; iLayer++) {
2531 cseed[iLayer].SetFreq(frequency);
2532 cseed[iLayer].SetChi2Z(chi2[1]);
2533 }
2534
3a039a31 2535 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 2){
d611c74f 2536 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2537 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2538 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2539 TLinearFitter *fitterTC = GetTiltedRiemanFitterConstraint();
2540 TLinearFitter *fitterT = GetTiltedRiemanFitter();
91834b8d 2541 Int_t ncls = 0;
2542 for(Int_t iseed = 0; iseed < kNPlanes; iseed++){
2543 ncls += cseed[iseed].IsOK() ? cseed[iseed].GetN2() : 0;
2544 }
d611c74f 2545 cstreamer << "MakeSeeds2"
2546 << "EventNumber=" << eventNumber
2547 << "CandidateNumber=" << candidateNumber
2548 << "Chi2TR=" << chi2Vals[0]
2549 << "Chi2TC=" << chi2Vals[1]
2550 << "Nlayers=" << mlayers
91834b8d 2551 << "NClusters=" << ncls
d611c74f 2552 << "NUsedS=" << nUsedCl
2553 << "NUsed=" << nusedf
2554 << "Like=" << like
2555 << "S0.=" << &cseed[0]
2556 << "S1.=" << &cseed[1]
2557 << "S2.=" << &cseed[2]
2558 << "S3.=" << &cseed[3]
2559 << "S4.=" << &cseed[4]
2560 << "S5.=" << &cseed[5]
2561 << "Label=" << label
2562 << "Freq=" << frequency
2563 << "FitterT.=" << fitterT
2564 << "FitterTC.=" << fitterTC
2565 << "\n";
2566 }
2567
2568 ntracks++;
2569 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2570 if(ntracks == kMaxTracksStack){
2571 AliWarning(Form("Number of seeds reached maximum allowed (%d) in stack.", kMaxTracksStack));
2572 return ntracks;
2573 }
2574 cseed += 6;
41702fec 2575 }
2576 }
2577 }
41702fec 2578
2579 return ntracks;
e4f2f73d 2580}
2581
2582//_____________________________________________________________________________
0906e73e 2583AliTRDtrackV1* AliTRDtrackerV1::MakeTrack(AliTRDseedV1 *seeds, Double_t *params)
e4f2f73d 2584{
41702fec 2585 //
2586 // Build a TRD track out of tracklet candidates
2587 //
2588 // Parameters :
2589 // seeds : array of tracklets
2590 // params : track parameters (see MakeSeeds() function body for a detailed description)
2591 //
2592 // Output :
2593 // The TRD track.
2594 //
2595 // Detailed description
2596 //
2597 // To be discussed with Marian !!
2598 //
2599
41702fec 2600
2601 Double_t alpha = AliTRDgeometry::GetAlpha();
2602 Double_t shift = AliTRDgeometry::GetAlpha()/2.0;
2603 Double_t c[15];
2604
2605 c[ 0] = 0.2;
2606 c[ 1] = 0.0; c[ 2] = 2.0;
2607 c[ 3] = 0.0; c[ 4] = 0.0; c[ 5] = 0.02;
2608 c[ 6] = 0.0; c[ 7] = 0.0; c[ 8] = 0.0; c[ 9] = 0.1;
2609 c[10] = 0.0; c[11] = 0.0; c[12] = 0.0; c[13] = 0.0; c[14] = params[5]*params[5]*0.01;
2610
d20df6fc 2611 AliTRDtrackV1 track(seeds, &params[1], c, params[0], params[6]*alpha+shift);
2612 track.PropagateTo(params[0]-5.0);
91834b8d 2613 if(fReconstructor->IsHLT()){
2614 AliTRDseedV1 *ptrTracklet = 0x0;
2615 for(Int_t ip=0; ip<kNPlanes; ip++){
2616 track.UnsetTracklet(ip);
2617 ptrTracklet = SetTracklet(&seeds[ip]);
2618 track.SetTracklet(ptrTracklet, fTracklets->GetEntriesFast()-1);
2619 }
2620 return SetTrack(&track);
2621 }
393fda1c 2622
d20df6fc 2623 track.ResetCovariance(1);
e79f8eb0 2624 Int_t nc = TMath::Abs(FollowBackProlongation(track));
393fda1c 2625 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 5){
2626 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2627 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2628 Double_t p[5]; // Track Params for the Debug Stream
2629 track.GetExternalParameters(params[0], p);
2630 TTreeSRedirector &cs = *fgDebugStreamer;
2631 cs << "MakeTrack"
2632 << "EventNumber=" << eventNumber
2633 << "CandidateNumber=" << candidateNumber
2634 << "nc=" << nc
2635 << "X=" << params[0]
2636 << "Y=" << p[0]
2637 << "Z=" << p[1]
2638 << "snp=" << p[2]
2639 << "tnd=" << p[3]
2640 << "crv=" << p[4]
2641 << "Yin=" << params[1]
2642 << "Zin=" << params[2]
2643 << "snpin=" << params[3]
2644 << "tndin=" << params[4]
2645 << "crvin=" << params[5]
2646 << "track.=" << &track
2647 << "\n";
2648 }
d20df6fc 2649 if (nc < 30) return 0x0;
2650
2651 AliTRDtrackV1 *ptrTrack = SetTrack(&track);
48f8adf3 2652 ptrTrack->CookLabel(.9);
24253b0a 2653
d20df6fc 2654 // computes PID for track
2655 ptrTrack->CookPID();
2656 // update calibration references using this track
48f8adf3 2657 AliTRDCalibraFillHisto *calibra = AliTRDCalibraFillHisto::Instance();
2658 if (!calibra){
2659 AliInfo("Could not get Calibra instance\n");
2660 if(calibra->GetHisto2d()) calibra->UpdateHistogramsV1(ptrTrack);
2661 }
d20df6fc 2662 return ptrTrack;
e4f2f73d 2663}
2664
0906e73e 2665
e4f2f73d 2666//____________________________________________________________________
eb38ed55 2667Int_t AliTRDtrackerV1::ImproveSeedQuality(AliTRDtrackingChamber **stack, AliTRDseedV1 *cseed)
e4f2f73d 2668{
41702fec 2669 //
2670 // Sort tracklets according to "quality" and try to "improve" the first 4 worst
2671 //
2672 // Parameters :
2673 // layers : Array of propagation layers for a stack/supermodule
2674 // cseed : Array of 6 seeding tracklets which has to be improved
2675 //
2676 // Output :
2677 // cssed : Improved seeds
2678 //
2679 // Detailed description
2680 //
2681 // Iterative procedure in which new clusters are searched for each
2682 // tracklet seed such that the seed quality (see AliTRDseed::GetQuality())
2683 // can be maximized. If some optimization is found the old seeds are replaced.
2684 //
2685 // debug level: 7
2686 //
2687
2688 // make a local working copy
2689 AliTRDtrackingChamber *chamber = 0x0;
2690 AliTRDseedV1 bseed[6];
2691 Int_t nLayers = 0;
2692 for (Int_t jLayer = 0; jLayer < 6; jLayer++) bseed[jLayer] = cseed[jLayer];
2693
2694 Float_t lastquality = 10000.0;
2695 Float_t lastchi2 = 10000.0;
2696 Float_t chi2 = 1000.0;
2697
2698 for (Int_t iter = 0; iter < 4; iter++) {
2699 Float_t sumquality = 0.0;
2700 Float_t squality[6];
2701 Int_t sortindexes[6];
2702
2703 for (Int_t jLayer = 0; jLayer < 6; jLayer++) {
3a039a31 2704 squality[jLayer] = bseed[jLayer].IsOK() ? bseed[jLayer].GetQuality(kTRUE) : 1000.;
41702fec 2705 sumquality += squality[jLayer];
2706 }
2707 if ((sumquality >= lastquality) || (chi2 > lastchi2)) break;
2708
2709 nLayers = 0;
2710 lastquality = sumquality;
2711 lastchi2 = chi2;
2712 if (iter > 0) for (Int_t jLayer = 0; jLayer < 6; jLayer++) cseed[jLayer] = bseed[jLayer];
2713
2714 TMath::Sort(6, squality, sortindexes, kFALSE);
2715 for (Int_t jLayer = 5; jLayer > 1; jLayer--) {
2716 Int_t bLayer = sortindexes[jLayer];
2717 if(!(chamber = stack[bLayer])) continue;
2718 bseed[bLayer].AttachClustersIter(chamber, squality[bLayer], kTRUE);
2719 if(bseed[bLayer].IsOK()) nLayers++;
2720 }
2721
2722 chi2 = FitTiltedRieman(bseed, kTRUE);
3a039a31 2723 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 7){
41702fec 2724 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2725 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2726 TLinearFitter *tiltedRieman = GetTiltedRiemanFitter();
2727 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2728 cstreamer << "ImproveSeedQuality"
2729 << "EventNumber=" << eventNumber
2730 << "CandidateNumber=" << candidateNumber
2731 << "Iteration=" << iter
2732 << "S0.=" << &bseed[0]
2733 << "S1.=" << &bseed[1]
2734 << "S2.=" << &bseed[2]
2735 << "S3.=" << &bseed[3]
2736 << "S4.=" << &bseed[4]
2737 << "S5.=" << &bseed[5]
2738 << "FitterT.=" << tiltedRieman
2739 << "\n";
2740 }
2741 } // Loop: iter
2742
2743 // we are sure that at least 2 tracklets are OK !
2744 return nLayers+2;
e4f2f73d 2745}
2746
eb38ed55 2747//_________________________________________________________________________
2748Double_t AliTRDtrackerV1::CalculateTrackLikelihood(AliTRDseedV1 *tracklets, Double_t *chi2){
41702fec 2749 //
2750 // Calculates the Track Likelihood value. This parameter serves as main quality criterion for
2751 // the track selection
2752 // The likelihood value containes:
2753 // - The chi2 values from the both fitters and the chi2 values in z-direction from a linear fit
2754 // - The Sum of the Parameter |slope_ref - slope_fit|/Sigma of the tracklets
2755 // For all Parameters an exponential dependency is used
2756 //
2757 // Parameters: - Array of tracklets (AliTRDseedV1) related to the track candidate
2758 // - Array of chi2 values:
2759 // * Non-Constrained Tilted Riemann fit
2760 // * Vertex-Constrained Tilted Riemann fit
2761 // * z-Direction from Linear fit
2762 // Output: - The calculated track likelihood
2763 //
2764 // debug level 2
2765 //
2766
2767 Double_t sumdaf = 0, nLayers = 0;
2768 for (Int_t iLayer = 0; iLayer < kNPlanes; iLayer++) {
2769 if(!tracklets[iLayer].IsOK()) continue;
2770 sumdaf += TMath::Abs((tracklets[iLayer].GetYfit(1) - tracklets[iLayer].GetYref(1))/ tracklets[iLayer].GetSigmaY2());
2771 nLayers++;
2772 }
2773 sumdaf /= Float_t (nLayers - 2.0);
2774
2775 Double_t likeChi2Z = TMath::Exp(-chi2[2] * 0.14); // Chi2Z
3a039a31 2776 Double_t likeChi2TC = (fReconstructor->GetRecoParam() ->IsVertexConstrained()) ?
d20df6fc 2777 TMath::Exp(-chi2[1] * 0.677) : 1; // Constrained Tilted Riemann
41702fec 2778 Double_t likeChi2TR = TMath::Exp(-chi2[0] * 0.78); // Non-constrained Tilted Riemann
2779 Double_t likeAF = TMath::Exp(-sumdaf * 3.23);
2780 Double_t trackLikelihood = likeChi2Z * likeChi2TR * likeAF;
2781
3a039a31 2782 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 2){
41702fec 2783 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2784 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2785 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2786 cstreamer << "CalculateTrackLikelihood0"
2787 << "EventNumber=" << eventNumber
2788 << "CandidateNumber=" << candidateNumber
2789 << "LikeChi2Z=" << likeChi2Z
2790 << "LikeChi2TR=" << likeChi2TR
2791 << "LikeChi2TC=" << likeChi2TC
2792 << "LikeAF=" << likeAF
2793 << "TrackLikelihood=" << trackLikelihood
2794 << "\n";
2795 }
2796
2797 return trackLikelihood;
e4f2f73d 2798}
2799
2800//____________________________________________________________________
91834b8d 2801Double_t AliTRDtrackerV1::CookLikelihood(AliTRDseedV1 *cseed, Int_t planes[4])
e4f2f73d 2802{
41702fec 2803 //
2804 // Calculate the probability of this track candidate.
2805 //
2806 // Parameters :
2807 // cseeds : array of candidate tracklets
2808 // planes : array of seeding planes (see seeding configuration)
2809 // chi2 : chi2 values (on the Z and Y direction) from the rieman fit of the track.
2810 //
2811 // Output :
2812 // likelihood value
2813 //
2814 // Detailed description
2815 //
2816 // The track quality is estimated based on the following 4 criteria:
2817 // 1. precision of the rieman fit on the Y direction (likea)
2818 // 2. chi2 on the Y direction (likechi2y)
2819 // 3. chi2 on the Z direction (likechi2z)
2820 // 4. number of attached clusters compared to a reference value
2821 // (see AliTRDrecoParam::fkFindable) (likeN)
2822 //
2823 // The distributions for each type of probabilities are given below as of
2824 // (date). They have to be checked to assure consistency of estimation.
2825 //
2826
2827 // ratio of the total number of clusters/track which are expected to be found by the tracker.
91834b8d 2828 const AliTRDrecoParam *fRecoPars = fReconstructor->GetRecoParam();
41702fec 2829
91834b8d 2830 Double_t chi2y = GetChi2Y(&cseed[0]);
2831 Double_t chi2z = GetChi2Z(&cseed[0]);
2832
41702fec 2833 Int_t nclusters = 0;
2834 Double_t sumda = 0.;
2835 for(UChar_t ilayer = 0; ilayer < 4; ilayer++){
2836 Int_t jlayer = planes[ilayer];
2837 nclusters += cseed[jlayer].GetN2();
2838 sumda += TMath::Abs(cseed[jlayer].GetYfitR(1) - cseed[jlayer].GetYref(1));
2839 }
91834b8d 2840 Double_t likea = TMath::Exp(-sumda * fRecoPars->GetPhiCut());
41702fec 2841 Double_t likechi2y = 0.0000000001;
91834b8d 2842 if (fReconstructor->IsCosmic() || chi2y < 0.5) likechi2y += TMath::Exp(-TMath::Sqrt(chi2y) * fRecoPars->GetChi2YCut());
2843 Double_t likechi2z = TMath::Exp(-chi2z * fRecoPars->GetChi2ZCut());
2844 Double_t likeN = TMath::Exp(-(fRecoPars->GetMeanNclusters() - nclusters) / fRecoPars->GetSigmaNclusters());
41702fec 2845 Double_t like = likea * likechi2y * likechi2z * likeN;
2846
2847 // AliInfo(Form("sumda(%f) chi2[0](%f) chi2[1](%f) likea(%f) likechi2y(%f) likechi2z(%f) nclusters(%d) likeN(%f)", sumda, chi2[0], chi2[1], likea, likechi2y, likechi2z, nclusters, likeN));
3a039a31 2848 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 2){
41702fec 2849 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2850 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
91834b8d 2851 Int_t nTracklets = 0; Float_t mean_ncls = 0;
2852 for(Int_t iseed=0; iseed < kNPlanes; iseed++){
2853 if(!cseed[iseed].IsOK()) continue;
2854 nTracklets++;
2855 mean_ncls += cseed[iseed].GetN2();
2856 }
2857 if(nTracklets) mean_ncls /= nTracklets;
41702fec 2858 // The Debug Stream contains the seed
2859 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2860 cstreamer << "CookLikelihood"
2861 << "EventNumber=" << eventNumber
2862 << "CandidateNumber=" << candidateNumber
2863 << "tracklet0.=" << &cseed[0]
2864 << "tracklet1.=" << &cseed[1]
2865 << "tracklet2.=" << &cseed[2]
2866 << "tracklet3.=" << &cseed[3]
2867 << "tracklet4.=" << &cseed[4]
2868 << "tracklet5.=" << &cseed[5]
2869 << "sumda=" << sumda
91834b8d 2870 << "chi2y=" << chi2y
2871 << "chi2z=" << chi2z
41702fec 2872 << "likea=" << likea
2873 << "likechi2y=" << likechi2y
2874 << "likechi2z=" << likechi2z
2875 << "nclusters=" << nclusters
2876 << "likeN=" << likeN
2877 << "like=" << like
91834b8d 2878 << "meanncls=" << mean_ncls
41702fec 2879 << "\n";
2880 }
2881
2882 return like;
e4f2f73d 2883}
2884
eb38ed55 2885
e4f2f73d 2886
2887//____________________________________________________________________
0906e73e 2888void AliTRDtrackerV1::GetSeedingConfig(Int_t iconfig, Int_t planes[4])
e4f2f73d 2889{
41702fec 2890 //
2891 // Map seeding configurations to detector planes.
2892 //
2893 // Parameters :
2894 // iconfig : configuration index
2895 // planes : member planes of this configuration. On input empty.
2896 //
2897 // Output :
2898 // planes : contains the planes which are defining the configuration
2899 //
2900 // Detailed description
2901 //
2902 // Here is the list of seeding planes configurations together with
2903 // their topological classification:
2904 //
2905 // 0 - 5432 TQ 0
2906 // 1 - 4321 TQ 0
2907 // 2 - 3210 TQ 0
2908 // 3 - 5321 TQ 1
2909 // 4 - 4210 TQ 1
2910 // 5 - 5431 TQ 1
2911 // 6 - 4320 TQ 1
2912 // 7 - 5430 TQ 2
2913 // 8 - 5210 TQ 2
2914 // 9 - 5421 TQ 3
2915 // 10 - 4310 TQ 3
2916 // 11 - 5410 TQ 4
2917 // 12 - 5420 TQ 5
2918 // 13 - 5320 TQ 5
2919 // 14 - 5310 TQ 5
2920 //
2921 // The topologic quality is modeled as follows:
2922 // 1. The general model is define by the equation:
2923 // p(conf) = exp(-conf/2)
2924 // 2. According to the topologic classification, configurations from the same
2925 // class are assigned the agerage value over the model values.
2926 // 3. Quality values are normalized.
2927 //
2928 // The topologic quality distribution as function of configuration is given below:
2929 //Begin_Html
2930 // <img src="gif/topologicQA.gif">
2931 //End_Html
2932 //
2933
2934 switch(iconfig){
2935 case 0: // 5432 TQ 0
2936 planes[0] = 2;
2937 planes[1] = 3;
2938 planes[2] = 4;
2939 planes[3] = 5;
2940 break;
2941 case 1: // 4321 TQ 0
2942 planes[0] = 1;
2943 planes[1] = 2;
2944 planes[2] = 3;
2945 planes[3] = 4;
2946 break;
2947 case 2: // 3210 TQ 0
2948 planes[0] = 0;
2949 planes[1] = 1;
2950 planes[2] = 2;
2951 planes[3] = 3;
2952 break;
2953 case 3: // 5321 TQ 1
2954 planes[0] = 1;
2955 planes[1] = 2;
2956 planes[2] = 3;
2957 planes[3] = 5;
2958 break;
2959 case 4: // 4210 TQ 1
2960 planes[0] = 0;
2961 planes[1] = 1;
2962 planes[2] = 2;
2963 planes[3] = 4;
2964 break;
2965 case 5: // 5431 TQ 1
2966 planes[0] = 1;
2967 planes[1] = 3;
2968 planes[2] = 4;
2969 planes[3] = 5;
2970 break;
2971 case 6: // 4320 TQ 1
2972 planes[0] = 0;
2973 planes[1] = 2;
2974 planes[2] = 3;
2975 planes[3] = 4;
2976 break;
2977 case 7: // 5430 TQ 2
2978 planes[0] = 0;
2979 planes[1] = 3;
2980 planes[2] = 4;
2981 planes[3] = 5;
2982 break;
2983 case 8: // 5210 TQ 2
2984 planes[0] = 0;
2985 planes[1] = 1;
2986 planes[2] = 2;
2987 planes[3] = 5;
2988 break;
2989 case 9: // 5421 TQ 3
2990 planes[0] = 1;
2991 planes[1] = 2;
2992 planes[2] = 4;
2993 planes[3] = 5;
2994 break;
2995 case 10: // 4310 TQ 3
2996 planes[0] = 0;
2997 planes[1] = 1;
2998 planes[2] = 3;
2999 planes[3] = 4;
3000 break;
3001 case 11: // 5410 TQ 4
3002 planes[0] = 0;
3003 planes[1] = 1;
3004 planes[2] = 4;
3005 planes[3] = 5;
3006 break;
3007 case 12: // 5420 TQ 5
3008 planes[0] = 0;
3009 planes[1] = 2;
3010 planes[2] = 4;
3011 planes[3] = 5;
3012 break;
3013 case 13: // 5320 TQ 5
3014 planes[0] = 0;
3015 planes[1] = 2;
3016 planes[2] = 3;
3017 planes[3] = 5;
3018 break;
3019 case 14: // 5310 TQ 5
3020 planes[0] = 0;
3021 planes[1] = 1;
3022 planes[2] = 3;
3023 planes[3] = 5;
3024 break;
3025 }
e4f2f73d 3026}
3027
3028//____________________________________________________________________
0906e73e 3029void AliTRDtrackerV1::GetExtrapolationConfig(Int_t iconfig, Int_t planes[2])
e4f2f73d 3030{
41702fec 3031 //
3032 // Returns the extrapolation planes for a seeding configuration.
3033 //
3034 // Parameters :
3035 // iconfig : configuration index
3036 // planes : planes which are not in this configuration. On input empty.
3037 //
3038 // Output :
3039 // planes : contains the planes which are not in the configuration
3040 //
3041 // Detailed description
3042 //
3043
3044 switch(iconfig){
3045 case 0: // 5432 TQ 0
3046 planes[0] = 1;
3047 planes[1] = 0;
3048 break;
3049 case 1: // 4321 TQ 0
3050 planes[0] = 5;
3051 planes[1] = 0;
3052 break;
3053 case 2: // 3210 TQ 0
3054 planes[0] = 4;
3055 planes[1] = 5;
3056 break;
3057 case 3: // 5321 TQ 1
3058 planes[0] = 4;
3059 planes[1] = 0;
3060 break;
3061 case 4: // 4210 TQ 1
3062 planes[0] = 5;
3063 planes[1] = 3;
3064 break;
3065 case 5: // 5431 TQ 1
3066 planes[0] = 2;
3067 planes[1] = 0;
3068 break;
3069 case 6: // 4320 TQ 1
3070 planes[0] = 5;
3071 planes[1] = 1;
3072 break;
3073 case 7: // 5430 TQ 2
3074 planes[0] = 2;
3075 planes[1] = 1;
3076 break;
3077 case 8: // 5210 TQ 2
3078 planes[0] = 4;
3079 planes[1] = 3;
3080 break;
3081 case 9: // 5421 TQ 3
3082 planes[0] = 3;
3083 planes[1] = 0;
3084 break;
3085 case 10: // 4310 TQ 3
3086 planes[0] = 5;
3087 planes[1] = 2;
3088 break;
3089 case 11: // 5410 TQ 4
3090 planes[0] = 3;
3091 planes[1] = 2;
3092 break;
3093 case 12: // 5420 TQ 5
3094 planes[0] = 3;
3095 planes[1] = 1;
3096 break;
3097 case 13: // 5320 TQ 5
3098 planes[0] = 4;
3099 planes[1] = 1;
3100 break;
3101 case 14: // 5310 TQ 5
3102 planes[0] = 4;
3103 planes[1] = 2;
3104 break;
3105 }
e4f2f73d 3106}
eb38ed55 3107
3108//____________________________________________________________________
3109AliCluster* AliTRDtrackerV1::GetCluster(Int_t idx) const
3110{
41702fec 3111 Int_t ncls = fClusters->GetEntriesFast();
2f7514a6 3112 return idx >= 0 && idx < ncls ? (AliCluster*)fClusters->UncheckedAt(idx) : 0x0;
eb38ed55 3113}
3114
3b57a3f7 3115//____________________________________________________________________
3116AliTRDseedV1* AliTRDtrackerV1::GetTracklet(Int_t idx) const
3117{
41702fec 3118 Int_t ntrklt = fTracklets->GetEntriesFast();
2f7514a6 3119 return idx >= 0 && idx < ntrklt ? (AliTRDseedV1*)fTracklets->UncheckedAt(idx) : 0x0;
3b57a3f7 3120}
3121
3122//____________________________________________________________________
3123AliKalmanTrack* AliTRDtrackerV1::GetTrack(Int_t idx) const
3124{
41702fec 3125 Int_t ntrk = fTracks->GetEntriesFast();
2f7514a6 3126 return idx >= 0 && idx < ntrk ? (AliKalmanTrack*)fTracks->UncheckedAt(idx) : 0x0;
3b57a3f7 3127}
3128
bb56afff 3129//____________________________________________________________________
3130Float_t AliTRDtrackerV1::CalculateReferenceX(AliTRDseedV1 *tracklets){
41702fec 3131 //
3132 // Calculates the reference x-position for the tilted Rieman fit defined as middle
3133 // of the stack (middle between layers 2 and 3). For the calculation all the tracklets
3134 // are taken into account
3135 //
3136 // Parameters: - Array of tracklets(AliTRDseedV1)
3137 //
3138 // Output: - The reference x-position(Float_t)
3139 //
3140 Int_t nDistances = 0;
3141 Float_t meanDistance = 0.;
3142 Int_t startIndex = 5;
3143 for(Int_t il =5; il > 0; il--){
3144 if(tracklets[il].IsOK() && tracklets[il -1].IsOK()){
3145 Float_t xdiff = tracklets[il].GetX0() - tracklets[il -1].GetX0();
3146 meanDistance += xdiff;
3147 nDistances++;
3148 }
3149 if(tracklets[il].IsOK()) startIndex = il;
3150 }
3151 if(tracklets[0].IsOK()) startIndex = 0;
3152 if(!nDistances){
3153 // We should normally never get here
3154 Float_t xpos[2]; memset(xpos, 0, sizeof(Float_t) * 2);
3155 Int_t iok = 0, idiff = 0;
3156 // This attempt is worse and should be avoided:
3157 // check for two chambers which are OK and repeat this without taking the mean value
3158 // Strategy avoids a division by 0;
3159 for(Int_t il = 5; il >= 0; il--){
3160 if(tracklets[il].IsOK()){
3161 xpos[iok] = tracklets[il].GetX0();
3162 iok++;
3163 startIndex = il;
3164 }
3165 if(iok) idiff++; // to get the right difference;
3166 if(iok > 1) break;
3167 }
3168 if(iok > 1){
3169 meanDistance = (xpos[0] - xpos[1])/idiff;
3170 }
3171 else{
3172 // we have do not even have 2 layers which are OK? The we do not need to fit at all
3173 return 331.;
3174 }
3175 }
3176 else{
3177 meanDistance /= nDistances;
3178 }
3179 return tracklets[startIndex].GetX0() + (2.5 - startIndex) * meanDistance - 0.5 * (AliTRDgeometry::AmThick() + AliTRDgeometry::DrThick());
bb56afff 3180}
eb38ed55 3181
3182//_____________________________________________________________________________
3183Int_t AliTRDtrackerV1::Freq(Int_t n, const Int_t *inlist
41702fec 3184 , Int_t *outlist, Bool_t down)
eb38ed55 3185{
41702fec 3186 //
3187 // Sort eleements according occurancy
3188 // The size of output array has is 2*n
3189 //
3190
3191 if (n <= 0) {
3192 return 0;
3193 }
3194
3195 Int_t *sindexS = new Int_t[n]; // Temporary array for sorting
3196 Int_t *sindexF = new Int_t[2*n];
3197 for (Int_t i = 0; i < n; i++) {
3198 sindexF[i] = 0;
3199 }
3200
3201 TMath::Sort(n,inlist,sindexS,down);
3202
3203 Int_t last = inlist[sindexS[0]];
3204 Int_t val = last;
3205 sindexF[0] = 1;
3206 sindexF[0+n] = last;
3207 Int_t countPos = 0;
3208
3209 // Find frequency
3210 for (Int_t i = 1; i < n; i++) {
3211 val = inlist[sindexS[i]];
3212 if (last == val) {
3213 sindexF[countPos]++;
3214 }
3215 else {
3216 countPos++;
3217 sindexF[countPos+n] = val;
3218 sindexF[countPos]++;
3219 last = val;
3220 }
3221 }
3222 if (last == val) {
3223 countPos++;
3224 }
3225
3226 // Sort according frequency
3227 TMath::Sort(countPos,sindexF,sindexS,kTRUE);
3228
3229 for (Int_t i = 0; i < countPos; i++) {
3230 outlist[2*i ] = sindexF[sindexS[i]+n];
3231 outlist[2*i+1] = sindexF[sindexS[i]];
3232 }
3233
3234 delete [] sindexS;
3235 delete [] sindexF;
3236
3237 return countPos;
eb38ed55 3238
3239}
bb56afff 3240
06b32d95 3241
3242//____________________________________________________________________
3243void AliTRDtrackerV1::SetReconstructor(const AliTRDReconstructor *rec)
3244{
3245 fReconstructor = rec;
3246 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
3247 if(!fgDebugStreamer){
3248 TDirectory *savedir = gDirectory;
3249 fgDebugStreamer = new TTreeSRedirector("TRD.TrackerDebug.root");
3250 savedir->cd();
3251 }
3252 }
acd241e9 3253}
3254
bb56afff 3255//_____________________________________________________________________________
3256Float_t AliTRDtrackerV1::GetChi2Y(AliTRDseedV1 *tracklets) const
3257{
41702fec 3258 // Chi2 definition on y-direction
3259
3260 Float_t chi2 = 0;
3261 for(Int_t ipl = 0; ipl < kNPlanes; ipl++){
3262 if(!tracklets[ipl].IsOK()) continue;
91834b8d 3263 Double_t distLayer = (tracklets[ipl].GetYfit(0) - tracklets[ipl].GetYref(0));// /tracklets[ipl].GetSigmaY();
41702fec 3264 chi2 += distLayer * distLayer;
3265 }
3266 return chi2;
bb56afff 3267}
3268
d611c74f 3269//____________________________________________________________________
3270void AliTRDtrackerV1::ResetSeedTB()
3271{
3272// reset buffer for seeding time bin layers. If the time bin
3273// layers are not allocated this function allocates them
3274
3275 for(Int_t isl=0; isl<kNSeedPlanes; isl++){
3276 if(!fSeedTB[isl]) fSeedTB[isl] = new AliTRDchamberTimeBin();
3277 else fSeedTB[isl]->Clear();
3278 }
3279}
3280
bb56afff 3281//_____________________________________________________________________________
3282Float_t AliTRDtrackerV1::GetChi2Z(AliTRDseedV1 *tracklets) const
3283{
91834b8d 3284 // Calculates normalized chi2 in z-direction
41702fec 3285
3286 Float_t chi2 = 0;
91834b8d 3287 // chi2 = Sum ((z - zmu)/sigma)^2
3288 // Sigma for the z direction is defined as half of the padlength
41702fec 3289 for(Int_t ipl = 0; ipl < kNPlanes; ipl++){
3290 if(!tracklets[ipl].IsOK()) continue;
91834b8d 3291 Double_t distLayer = (tracklets[ipl].GetMeanz() - tracklets[ipl].GetZref(0)); // /(tracklets[ipl].GetPadLength()/2);
41702fec 3292 chi2 += distLayer * distLayer;
3293 }
3294 return chi2;
bb56afff 3295}
8acca6a3 3296
3297///////////////////////////////////////////////////////
3298// //
3299// Resources of class AliTRDLeastSquare //
3300// //
3301///////////////////////////////////////////////////////
3302
3303//_____________________________________________________________________________
3304AliTRDtrackerV1::AliTRDLeastSquare::AliTRDLeastSquare(){
41702fec 3305 //
3306 // Constructor of the nested class AliTRDtrackFitterLeastSquare
3307 //
3308 memset(fParams, 0, sizeof(Double_t) * 2);
3309 memset(fSums, 0, sizeof(Double_t) * 5);
3310 memset(fCovarianceMatrix, 0, sizeof(Double_t) * 3);
8acca6a3 3311
3312}
3313
3314//_____________________________________________________________________________
3315void AliTRDtrackerV1::AliTRDLeastSquare::AddPoint(Double_t *x, Double_t y, Double_t sigmaY){
41702fec 3316 //
3317 // Adding Point to the fitter
3318 //
3319 Double_t weight = 1/(sigmaY * sigmaY);
3320 Double_t &xpt = *x;
3321 // printf("Adding point x = %f, y = %f, sigma = %f\n", xpt, y, sigmaY);
3322 fSums[0] += weight;
3323 fSums[1] += weight * xpt;
3324 fSums[2] += weight * y;
3325 fSums[3] += weight * xpt * y;
3326 fSums[4] += weight * xpt * xpt;
3327 fSums[5] += weight * y * y;
8acca6a3 3328}
3329
3330//_____________________________________________________________________________
3331void AliTRDtrackerV1::AliTRDLeastSquare::RemovePoint(Double_t *x, Double_t y, Double_t sigmaY){
41702fec 3332 //
3333 // Remove Point from the sample
3334 //
3335 Double_t weight = 1/(sigmaY * sigmaY);
3336 Double_t &xpt = *x;
3337 fSums[0] -= weight;
3338 fSums[1] -= weight * xpt;
3339 fSums[2] -= weight * y;
3340 fSums[3] -= weight * xpt * y;
3341 fSums[4] -= weight * xpt * xpt;
3342 fSums[5] -= weight * y * y;
8acca6a3 3343}
3344
3345//_____________________________________________________________________________
3346void AliTRDtrackerV1::AliTRDLeastSquare::Eval(){
41702fec 3347 //
3348 // Evaluation of the fit:
3349 // Calculation of the parameters
3350 // Calculation of the covariance matrix
3351 //
3352
3353 Double_t denominator = fSums[0] * fSums[4] - fSums[1] *fSums[1];
aec26713 3354 if(denominator==0) return;
3355
41702fec 3356 // for(Int_t isum = 0; isum < 5; isum++)
3357 // printf("fSums[%d] = %f\n", isum, fSums[isum]);
3358 // printf("denominator = %f\n", denominator);
3359 fParams[0] = (fSums[2] * fSums[4] - fSums[1] * fSums[3])/ denominator;
3360 fParams[1] = (fSums[0] * fSums[3] - fSums[1] * fSums[2]) / denominator;
3361 // printf("fParams[0] = %f, fParams[1] = %f\n", fParams[0], fParams[1]);
3362
3363 // Covariance matrix
3364 fCovarianceMatrix[0] = fSums[4] - fSums[1] * fSums[1] / fSums[0];
3365 fCovarianceMatrix[1] = fSums[5] - fSums[2] * fSums[2] / fSums[0];
3366 fCovarianceMatrix[2] = fSums[3] - fSums[1] * fSums[2] / fSums[0];
8acca6a3 3367}
3368
46b6abd7 3369//_____________________________________________________________________________
3370Double_t AliTRDtrackerV1::AliTRDLeastSquare::GetFunctionValue(Double_t *xpos) const {
41702fec 3371 //
3372 // Returns the Function value of the fitted function at a given x-position
3373 //
3374 return fParams[0] + fParams[1] * (*xpos);
46b6abd7 3375}
3376
3377//_____________________________________________________________________________
3378void AliTRDtrackerV1::AliTRDLeastSquare::GetCovarianceMatrix(Double_t *storage) const {
41702fec 3379 //
3380 // Copies the values of the covariance matrix into the storage
3381 //
3382 memcpy(storage, fCovarianceMatrix, sizeof(Double_t) * 3);
46b6abd7 3383}
3384