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