]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDtrackerV1.cxx
Default recoparam object
[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);
aec26713 639 tracklet.SetTilt(TMath::Tan(TMath::DegToRad()*pp->GetTiltingAngle()));
41702fec 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 }
aec26713 1214 if(fitter->Eval()) return 1.E10;
1215
41702fec 1216 Double_t z0 = fitter->GetParameter(3);
1217 Double_t dzdx = fitter->GetParameter(4);
3b57a3f7 1218
1219
1220 // Linear fitter - not possible to make boundaries
1221 // Do not accept non possible z and dzdx combinations
1222 Bool_t accept = kTRUE;
1223 Double_t zref = 0.0;
1224 for (Int_t iLayer = 0; iLayer < kNPlanes; iLayer++) {
1225 if(!tracklets[iLayer].IsOK()) continue;
1226 zref = z0 + dzdx * (tracklets[iLayer].GetX0() - xref);
1227 if (TMath::Abs(tracklets[iLayer].GetZProb() - zref) > tracklets[iLayer].GetPadLength() * 0.5 + 1.0)
1228 accept = kFALSE;
1229 }
1230 if (!accept) {
41702fec 1231 zfitter.Eval();
3b57a3f7 1232 Double_t dzmf = zfitter.GetFunctionParameter(1);
1233 Double_t zmf = zfitter.GetFunctionValue(&xref);
1234 fitter->FixParameter(3, zmf);
1235 fitter->FixParameter(4, dzmf);
1236 fitter->Eval();
1237 fitter->ReleaseParameter(3);
1238 fitter->ReleaseParameter(4);
1239 z0 = fitter->GetParameter(3); // = zmf ?
1240 dzdx = fitter->GetParameter(4); // = dzmf ?
1241 }
1242
1243 // Calculate Curvature
1244 Double_t a = fitter->GetParameter(0);
1245 Double_t b = fitter->GetParameter(1);
1246 Double_t c = fitter->GetParameter(2);
1247 Double_t y0 = 1. / a;
1248 Double_t x0 = -b * y0;
1249 Double_t R = TMath::Sqrt(y0*y0 + x0*x0 - c*y0);
1250 Double_t C = 1.0 + b*b - c*a;
1251 if (C > 0.0) C = a / TMath::Sqrt(C);
1252
1253 // Calculate chi2 of the fit
1254 Double_t chi2 = fitter->GetChisquare()/Double_t(nPoints);
1255
1256 // Update the tracklets
1257 if(!track){
1258 for(Int_t ip = 0; ip < kNPlanes; ip++) {
1259 x = tracklets[ip].GetX0();
1260 Double_t tmp = TMath::Sqrt(R*R-(x-x0)*(x-x0));
1261
1262 // y: R^2 = (x - x0)^2 + (y - y0)^2
1263 // => y = y0 +/- Sqrt(R^2 - (x - x0)^2)
1264 tracklets[ip].SetYref(0, y0 - (y0>0.?1.:-1)*tmp);
1265 // => dy/dx = (x - x0)/Sqrt(R^2 - (x - x0)^2)
1266 tracklets[ip].SetYref(1, (x - x0) / tmp);
1267 tracklets[ip].SetZref(0, z0 + dzdx * (x - xref));
1268 tracklets[ip].SetZref(1, dzdx);
1269 tracklets[ip].SetC(C);
1270 tracklets[ip].SetChi2(chi2);
1271 }
1272 }
1273
1274 //update track points array
1275 if(np && points){
1276 Float_t xyz[3];
1277 for(int ip=0; ip<np; ip++){
1278 points[ip].GetXYZ(xyz);
1279 xyz[1] = y0 - (y0>0.?1.:-1)*TMath::Sqrt(R*R-(xyz[0]-x0)*(xyz[0]-x0));
1280 xyz[2] = z0 + dzdx * (xyz[0] - xref);
1281 points[ip].SetXYZ(xyz);
1282 }
1283 }
1284
3a039a31 1285/* if(fReconstructor->GetStreamLevel() >=5){
3b57a3f7 1286 TTreeSRedirector &cstreamer = *fgDebugStreamer;
1287 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
1288 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
1289 Double_t chi2z = CalculateChi2Z(tracklets, z0, dzdx, xref);
1290 cstreamer << "FitRiemanTilt"
1291 << "EventNumber=" << eventNumber
1292 << "CandidateNumber=" << candidateNumber
1293 << "xref=" << xref
1294 << "Chi2Z=" << chi2z
1295 << "\n";
3a039a31 1296 }*/
3b57a3f7 1297 return chi2;
1298}
1299
1300
1bf51039 1301//____________________________________________________________________
1302Double_t AliTRDtrackerV1::FitKalman(AliTRDtrackV1 *track, AliTRDseedV1 *tracklets, Bool_t up, Int_t np, AliTrackPoint *points)
1303{
1304// Kalman filter implementation for the TRD.
1305// It returns the positions of the fit in the array "points"
1306//
1307// Author : A.Bercuci@gsi.de
1308
1309 //printf("Start track @ x[%f]\n", track->GetX());
1310
1311 //prepare marker points along the track
1312 Int_t ip = np ? 0 : 1;
1313 while(ip<np){
1314 if((up?-1:1) * (track->GetX() - points[ip].GetX()) > 0.) break;
1315 //printf("AliTRDtrackerV1::FitKalman() : Skip track marker x[%d] = %7.3f. Before track start ( %7.3f ).\n", ip, points[ip].GetX(), track->GetX());
1316 ip++;
1317 }
1318 //if(points) printf("First marker point @ x[%d] = %f\n", ip, points[ip].GetX());
1319
1320
1321 AliTRDseedV1 tracklet, *ptrTracklet = 0x0;
1322
1323 //Loop through the TRD planes
1324 for (Int_t jplane = 0; jplane < kNPlanes; jplane++) {
1325 // GET TRACKLET OR BUILT IT
1326 Int_t iplane = up ? jplane : kNPlanes - 1 - jplane;
1327 if(tracklets){
1328 if(!(ptrTracklet = &tracklets[iplane])) continue;
1329 }else{
1330 if(!(ptrTracklet = track->GetTracklet(iplane))){
1331 /*AliTRDtrackerV1 *tracker = 0x0;
1332 if(!(tracker = dynamic_cast<AliTRDtrackerV1*>( AliTRDReconstructor::Tracker()))) continue;
1333 ptrTracklet = new(&tracklet) AliTRDseedV1(iplane);
1334 if(!tracker->MakeTracklet(ptrTracklet, track)) */
1335 continue;
1336 }
1337 }
1338 if(!ptrTracklet->IsOK()) continue;
1339
1340 Double_t x = ptrTracklet->GetX0();
1341
1342 while(ip < np){
1343 //don't do anything if next marker is after next update point.
1344 if((up?-1:1) * (points[ip].GetX() - x) - fgkMaxStep < 0) break;
1345
1346 //printf("Propagate to x[%d] = %f\n", ip, points[ip].GetX());
1347
1348 if(((up?-1:1) * (points[ip].GetX() - track->GetX()) < 0) && !PropagateToX(*track, points[ip].GetX(), fgkMaxStep)) return -1.;
1349
1350 Double_t xyz[3]; // should also get the covariance
1351 track->GetXYZ(xyz); points[ip].SetXYZ(xyz[0], xyz[1], xyz[2]);
1352 ip++;
1353 }
1354 //printf("plane[%d] tracklet[%p] x[%f]\n", iplane, ptrTracklet, x);
1355
1356 //Propagate closer to the next update point
1357 if(((up?-1:1) * (x - track->GetX()) + fgkMaxStep < 0) && !PropagateToX(*track, x + (up?-1:1)*fgkMaxStep, fgkMaxStep)) return -1.;
1358
1359 if(!AdjustSector(track)) return -1;
1360 if(TMath::Abs(track->GetSnp()) > fgkMaxSnp) return -1;
1361
1362 //load tracklet to the tracker and the track
1363/* Int_t index;
1364 if((index = FindTracklet(ptrTracklet)) < 0){
1365 ptrTracklet = SetTracklet(&tracklet);
1366 index = fTracklets->GetEntriesFast()-1;
1367 }
1368 track->SetTracklet(ptrTracklet, index);*/
1369
1370
1371 // register tracklet to track with tracklet creation !!
1372 // PropagateBack : loaded tracklet to the tracker and update index
1373 // RefitInward : update index
1374 // MakeTrack : loaded tracklet to the tracker and update index
1375 if(!tracklets) track->SetTracklet(ptrTracklet, -1);
1376
1377
1378 //Calculate the mean material budget along the path inside the chamber
1379 Double_t xyz0[3]; track->GetXYZ(xyz0);
1380 Double_t alpha = track->GetAlpha();
1381 Double_t xyz1[3], y, z;
1382 if(!track->GetProlongation(x, y, z)) return -1;
1383 xyz1[0] = x * TMath::Cos(alpha) - y * TMath::Sin(alpha);
1384 xyz1[1] = +x * TMath::Sin(alpha) + y * TMath::Cos(alpha);
1385 xyz1[2] = z;
1386 Double_t param[7];
1387 AliTracker::MeanMaterialBudget(xyz0, xyz1, param);
1388 Double_t xrho = param[0]*param[4]; // density*length
1389 Double_t xx0 = param[1]; // radiation length
1390
1391 //Propagate the track
1392 track->PropagateTo(x, xx0, xrho);
1393 if (!AdjustSector(track)) break;
1394
1395 //Update track
1396 Double_t chi2 = track->GetPredictedChi2(ptrTracklet);
1397 if(chi2<1e+10) track->Update(ptrTracklet, chi2);
1398
1399 if(!up) continue;
1400
1401 //Reset material budget if 2 consecutive gold
1402 if(iplane>0 && track->GetTracklet(iplane-1) && ptrTracklet->GetN() + track->GetTracklet(iplane-1)->GetN() > 20) track->SetBudget(2, 0.);
1403 } // end planes loop
1404
1405 // extrapolation
1406 while(ip < np){
1407 if(((up?-1:1) * (points[ip].GetX() - track->GetX()) < 0) && !PropagateToX(*track, points[ip].GetX(), fgkMaxStep)) return -1.;
1408
1409 Double_t xyz[3]; // should also get the covariance
1410 track->GetXYZ(xyz); points[ip].SetXYZ(xyz[0], xyz[1], xyz[2]);
1411 ip++;
1412 }
1413
1414 return track->GetChi2();
1415}
3b57a3f7 1416
eb38ed55 1417//_________________________________________________________________________
bb56afff 1418Float_t AliTRDtrackerV1::CalculateChi2Z(AliTRDseedV1 *tracklets, Double_t offset, Double_t slope, Double_t xref)
eb38ed55 1419{
41702fec 1420 //
1421 // Calculates the chi2-value of the track in z-Direction including tilting pad correction.
1422 // A linear dependence on the x-value serves as a model.
1423 // The parameters are related to the tilted Riemann fit.
1424 // Parameters: - Array of tracklets (AliTRDseedV1) related to the track candidate
1425 // - the offset for the reference x
1426 // - the slope
1427 // - the reference x position
1428 // Output: - The Chi2 value of the track in z-Direction
1429 //
1430 Float_t chi2Z = 0, nLayers = 0;
053767a4 1431 for (Int_t iLayer = 0; iLayer < AliTRDgeometry::kNlayer; iLayer++) {
41702fec 1432 if(!tracklets[iLayer].IsOK()) continue;
1433 Double_t z = offset + slope * (tracklets[iLayer].GetX0() - xref);
1434 chi2Z += TMath::Abs(tracklets[iLayer].GetMeanz() - z);
1435 nLayers++;
1436 }
1437 chi2Z /= TMath::Max((nLayers - 3.0),1.0);
1438 return chi2Z;
eb38ed55 1439}
1440
bccda319 1441//_____________________________________________________________________________
1442Int_t AliTRDtrackerV1::PropagateToX(AliTRDtrackV1 &t, Double_t xToGo, Double_t maxStep)
1443{
41702fec 1444 //
1445 // Starting from current X-position of track <t> this function
1446 // extrapolates the track up to radial position <xToGo>.
1447 // Returns 1 if track reaches the plane, and 0 otherwise
1448 //
bccda319 1449
41702fec 1450 const Double_t kEpsilon = 0.00001;
bccda319 1451
41702fec 1452 // Current track X-position
1453 Double_t xpos = t.GetX();
bccda319 1454
41702fec 1455 // Direction: inward or outward
1456 Double_t dir = (xpos < xToGo) ? 1.0 : -1.0;
bccda319 1457
41702fec 1458 while (((xToGo - xpos) * dir) > kEpsilon) {
bccda319 1459
41702fec 1460 Double_t xyz0[3];
1461 Double_t xyz1[3];
1462 Double_t param[7];
1463 Double_t x;
1464 Double_t y;
1465 Double_t z;
bccda319 1466
41702fec 1467 // The next step size
1468 Double_t step = dir * TMath::Min(TMath::Abs(xToGo-xpos),maxStep);
bccda319 1469
41702fec 1470 // Get the global position of the starting point
1471 t.GetXYZ(xyz0);
bccda319 1472
41702fec 1473 // X-position after next step
1474 x = xpos + step;
bccda319 1475
41702fec 1476 // Get local Y and Z at the X-position of the next step
1477 if (!t.GetProlongation(x,y,z)) {
1478 return 0; // No prolongation possible
1479 }
bccda319 1480
41702fec 1481 // The global position of the end point of this prolongation step
1482 xyz1[0] = x * TMath::Cos(t.GetAlpha()) - y * TMath::Sin(t.GetAlpha());
1483 xyz1[1] = +x * TMath::Sin(t.GetAlpha()) + y * TMath::Cos(t.GetAlpha());
1484 xyz1[2] = z;
bccda319 1485
41702fec 1486 // Calculate the mean material budget between start and
1487 // end point of this prolongation step
1488 AliTracker::MeanMaterialBudget(xyz0, xyz1, param);
bccda319 1489
41702fec 1490 // Propagate the track to the X-position after the next step
1491 if (!t.PropagateTo(x,param[1],param[0]*param[4])) {
1492 return 0;
1493 }
bccda319 1494
41702fec 1495 // Rotate the track if necessary
1496 AdjustSector(&t);
bccda319 1497
41702fec 1498 // New track X-position
1499 xpos = t.GetX();
bccda319 1500
41702fec 1501 }
bccda319 1502
41702fec 1503 return 1;
bccda319 1504
1505}
1506
eb38ed55 1507
1508//_____________________________________________________________________________
1509Int_t AliTRDtrackerV1::ReadClusters(TClonesArray* &array, TTree *clusterTree) const
1510{
41702fec 1511 //
1512 // Reads AliTRDclusters from the file.
1513 // The names of the cluster tree and branches
1514 // should match the ones used in AliTRDclusterizer::WriteClusters()
1515 //
1516
1517 Int_t nsize = Int_t(clusterTree->GetTotBytes() / (sizeof(AliTRDcluster)));
1518 TObjArray *clusterArray = new TObjArray(nsize+1000);
1519
1520 TBranch *branch = clusterTree->GetBranch("TRDcluster");
1521 if (!branch) {
1522 AliError("Can't get the branch !");
1523 return 1;
1524 }
1525 branch->SetAddress(&clusterArray);
1526
1527 if(!fClusters){
1528 array = new TClonesArray("AliTRDcluster", nsize);
1529 array->SetOwner(kTRUE);
1530 }
1531
1532 // Loop through all entries in the tree
1533 Int_t nEntries = (Int_t) clusterTree->GetEntries();
1534 Int_t nbytes = 0;
1535 Int_t ncl = 0;
1536 AliTRDcluster *c = 0x0;
1537 for (Int_t iEntry = 0; iEntry < nEntries; iEntry++) {
1538 // Import the tree
1539 nbytes += clusterTree->GetEvent(iEntry);
1540
1541 // Get the number of points in the detector
1542 Int_t nCluster = clusterArray->GetEntriesFast();
1543 for (Int_t iCluster = 0; iCluster < nCluster; iCluster++) {
1544 if(!(c = (AliTRDcluster *) clusterArray->UncheckedAt(iCluster))) continue;
1545 c->SetInChamber();
1546 new((*fClusters)[ncl++]) AliTRDcluster(*c);
1547 delete (clusterArray->RemoveAt(iCluster));
1548 }
1549
1550 }
1551 delete clusterArray;
1552
1553 return 0;
eb38ed55 1554}
1555
1556//_____________________________________________________________________________
1557Int_t AliTRDtrackerV1::LoadClusters(TTree *cTree)
1558{
41702fec 1559 //
66f6bfd9 1560 // Fills clusters into TRD tracking sectors
41702fec 1561 //
41702fec 1562
66f6bfd9 1563 if(!(fClusters = AliTRDReconstructor::GetClusters())){
1564 if (ReadClusters(fClusters, cTree)) {
1565 AliError("Problem with reading the clusters !");
1566 return 1;
1567 }
1568 }
1569 SetClustersOwner();
1570
1571 if(!fClusters->GetEntriesFast()){
1572 AliInfo("No TRD clusters");
41702fec 1573 return 1;
1574 }
66f6bfd9 1575
1576 //Int_t nin =
1577 BuildTrackingContainers();
1578
1579 //Int_t ncl = fClusters->GetEntriesFast();
1580 //AliInfo(Form("Clusters %d [%6.2f %% in the active volume]", ncl, 100.*float(nin)/ncl));
1581
1582 return 0;
1583}
1584
1585//_____________________________________________________________________________
1586Int_t AliTRDtrackerV1::LoadClusters(TClonesArray *clusters)
1587{
1588 //
1589 // Fills clusters into TRD tracking sectors
1590 // Function for use in the HLT
1591
1592 if(!clusters || !clusters->GetEntriesFast()){
1593 AliInfo("No TRD clusters");
41702fec 1594 return 1;
1595 }
1596
66f6bfd9 1597 fClusters = clusters;
1598 SetClustersOwner();
1599
1600 //Int_t nin =
1601 BuildTrackingContainers();
1602
1603 //Int_t ncl = fClusters->GetEntriesFast();
1604 //AliInfo(Form("Clusters %d [%6.2f %% in the active volume]", ncl, 100.*float(nin)/ncl));
1605
1606 return 0;
1607}
1608
1609
1610//____________________________________________________________________
1611Int_t AliTRDtrackerV1::BuildTrackingContainers()
1612{
1613// Building tracking containers for clusters
1614
1615 Int_t nin =0, icl = fClusters->GetEntriesFast();
41702fec 1616 while (icl--) {
1617 AliTRDcluster *c = (AliTRDcluster *) fClusters->UncheckedAt(icl);
1618 if(c->IsInChamber()) nin++;
1619 Int_t detector = c->GetDetector();
1620 Int_t sector = fGeom->GetSector(detector);
053767a4 1621 Int_t stack = fGeom->GetStack(detector);
1622 Int_t layer = fGeom->GetLayer(detector);
41702fec 1623
053767a4 1624 fTrSec[sector].GetChamber(stack, layer, kTRUE)->InsertCluster(c, icl);
41702fec 1625 }
41702fec 1626
053767a4 1627 for(int isector =0; isector<AliTRDgeometry::kNsector; isector++){
41702fec 1628 if(!fTrSec[isector].GetNChambers()) continue;
3a039a31 1629 fTrSec[isector].Init(fReconstructor);
41702fec 1630 }
66f6bfd9 1631
1632 return nin;
eb38ed55 1633}
1634
1635
66f6bfd9 1636
0906e73e 1637//____________________________________________________________________
1638void AliTRDtrackerV1::UnloadClusters()
1639{
41702fec 1640 //
1641 // Clears the arrays of clusters and tracks. Resets sectors and timebins
1642 //
0906e73e 1643
41702fec 1644 if(fTracks) fTracks->Delete();
1645 if(fTracklets) fTracklets->Delete();
66f6bfd9 1646 if(fClusters && IsClustersOwner()) fClusters->Delete();
0906e73e 1647
053767a4 1648 for (int i = 0; i < AliTRDgeometry::kNsector; i++) fTrSec[i].Clear();
0906e73e 1649
41702fec 1650 // Increment the Event Number
1651 AliTRDtrackerDebug::SetEventNumber(AliTRDtrackerDebug::GetEventNumber() + 1);
eb38ed55 1652}
0906e73e 1653
eb38ed55 1654//_____________________________________________________________________________
1655Bool_t AliTRDtrackerV1::AdjustSector(AliTRDtrackV1 *track)
1656{
41702fec 1657 //
1658 // Rotates the track when necessary
1659 //
1660
1661 Double_t alpha = AliTRDgeometry::GetAlpha();
1662 Double_t y = track->GetY();
1663 Double_t ymax = track->GetX()*TMath::Tan(0.5*alpha);
1664
1665 if (y > ymax) {
1666 if (!track->Rotate( alpha)) {
1667 return kFALSE;
1668 }
1669 }
1670 else if (y < -ymax) {
1671 if (!track->Rotate(-alpha)) {
1672 return kFALSE;
1673 }
1674 }
1675
1676 return kTRUE;
0906e73e 1677
1678}
1679
eb38ed55 1680
0906e73e 1681//____________________________________________________________________
1682AliTRDseedV1* AliTRDtrackerV1::GetTracklet(AliTRDtrackV1 *track, Int_t p, Int_t &idx)
1683{
41702fec 1684 // Find tracklet for TRD track <track>
1685 // Parameters
1686 // - track
1687 // - sector
1688 // - plane
1689 // - index
1690 // Output
1691 // tracklet
1692 // index
1693 // Detailed description
1694 //
1695 idx = track->GetTrackletIndex(p);
1696 AliTRDseedV1 *tracklet = (idx==0xffff) ? 0x0 : (AliTRDseedV1*)fTracklets->UncheckedAt(idx);
1697
1698 return tracklet;
0906e73e 1699}
1700
1701//____________________________________________________________________
3b57a3f7 1702AliTRDseedV1* AliTRDtrackerV1::SetTracklet(AliTRDseedV1 *tracklet)
0906e73e 1703{
41702fec 1704 // Add this tracklet to the list of tracklets stored in the tracker
1705 //
1706 // Parameters
1707 // - tracklet : pointer to the tracklet to be added to the list
1708 //
1709 // Output
1710 // - the index of the new tracklet in the tracker tracklets list
1711 //
1712 // Detailed description
1713 // Build the tracklets list if it is not yet created (late initialization)
1714 // and adds the new tracklet to the list.
1715 //
1716 if(!fTracklets){
053767a4 1717 fTracklets = new TClonesArray("AliTRDseedV1", AliTRDgeometry::Nsector()*kMaxTracksStack);
41702fec 1718 fTracklets->SetOwner(kTRUE);
1719 }
1720 Int_t nentries = fTracklets->GetEntriesFast();
1721 return new ((*fTracklets)[nentries]) AliTRDseedV1(*tracklet);
972ef65e 1722}
1723
d20df6fc 1724//____________________________________________________________________
1725AliTRDtrackV1* AliTRDtrackerV1::SetTrack(AliTRDtrackV1 *track)
1726{
1727 // Add this track to the list of tracks stored in the tracker
1728 //
1729 // Parameters
1730 // - track : pointer to the track to be added to the list
1731 //
1732 // Output
1733 // - the pointer added
1734 //
1735 // Detailed description
1736 // Build the tracks list if it is not yet created (late initialization)
1737 // and adds the new track to the list.
1738 //
1739 if(!fTracks){
053767a4 1740 fTracks = new TClonesArray("AliTRDtrackV1", AliTRDgeometry::Nsector()*kMaxTracksStack);
d20df6fc 1741 fTracks->SetOwner(kTRUE);
1742 }
1743 Int_t nentries = fTracks->GetEntriesFast();
1744 return new ((*fTracks)[nentries]) AliTRDtrackV1(*track);
1745}
1746
1747
0906e73e 1748
e4f2f73d 1749//____________________________________________________________________
eb38ed55 1750Int_t AliTRDtrackerV1::Clusters2TracksSM(Int_t sector, AliESDEvent *esd)
e4f2f73d 1751{
41702fec 1752 //
1753 // Steer tracking for one SM.
1754 //
1755 // Parameters :
1756 // sector : Array of (SM) propagation layers containing clusters
1757 // esd : The current ESD event. On output it contains the also
1758 // the ESD (TRD) tracks found in this SM.
1759 //
1760 // Output :
1761 // Number of tracks found in this TRD supermodule.
1762 //
1763 // Detailed description
1764 //
1765 // 1. Unpack AliTRDpropagationLayers objects for each stack.
1766 // 2. Launch stack tracking.
1767 // See AliTRDtrackerV1::Clusters2TracksStack() for details.
1768 // 3. Pack results in the ESD event.
1769 //
1770
1771 // allocate space for esd tracks in this SM
1772 TClonesArray esdTrackList("AliESDtrack", 2*kMaxTracksStack);
1773 esdTrackList.SetOwner();
1774
1775 Int_t nTracks = 0;
1776 Int_t nChambers = 0;
1777 AliTRDtrackingChamber **stack = 0x0, *chamber = 0x0;
053767a4 1778 for(int istack = 0; istack<AliTRDgeometry::kNstack; istack++){
41702fec 1779 if(!(stack = fTrSec[sector].GetStack(istack))) continue;
1780 nChambers = 0;
053767a4 1781 for(int ilayer=0; ilayer<AliTRDgeometry::kNlayer; ilayer++){
1782 if(!(chamber = stack[ilayer])) continue;
3a039a31 1783 if(chamber->GetNClusters() < fgNTimeBins * fReconstructor->GetRecoParam() ->GetFindableClusters()) continue;
41702fec 1784 nChambers++;
053767a4 1785 //AliInfo(Form("sector %d stack %d layer %d clusters %d", sector, istack, ilayer, chamber->GetNClusters()));
41702fec 1786 }
1787 if(nChambers < 4) continue;
1788 //AliInfo(Form("Doing stack %d", istack));
1789 nTracks += Clusters2TracksStack(stack, &esdTrackList);
1790 }
1791 //AliInfo(Form("Found %d tracks in SM %d [%d]\n", nTracks, sector, esd->GetNumberOfTracks()));
1792
1793 for(int itrack=0; itrack<nTracks; itrack++)
1794 esd->AddTrack((AliESDtrack*)esdTrackList[itrack]);
1795
1796 // Reset Track and Candidate Number
1797 AliTRDtrackerDebug::SetCandidateNumber(0);
1798 AliTRDtrackerDebug::SetTrackNumber(0);
1799 return nTracks;
e4f2f73d 1800}
1801
1802//____________________________________________________________________
eb38ed55 1803Int_t AliTRDtrackerV1::Clusters2TracksStack(AliTRDtrackingChamber **stack, TClonesArray *esdTrackList)
e4f2f73d 1804{
41702fec 1805 //
1806 // Make tracks in one TRD stack.
1807 //
1808 // Parameters :
1809 // layer : Array of stack propagation layers containing clusters
1810 // esdTrackList : Array of ESD tracks found by the stand alone tracker.
1811 // On exit the tracks found in this stack are appended.
1812 //
1813 // Output :
1814 // Number of tracks found in this stack.
1815 //
1816 // Detailed description
1817 //
1818 // 1. Find the 3 most useful seeding chambers. See BuildSeedingConfigs() for details.
1819 // 2. Steer AliTRDtrackerV1::MakeSeeds() for 3 seeding layer configurations.
1820 // See AliTRDtrackerV1::MakeSeeds() for more details.
1821 // 3. Arrange track candidates in decreasing order of their quality
1822 // 4. Classify tracks in 5 categories according to:
1823 // a) number of layers crossed
1824 // b) track quality
1825 // 5. Sign clusters by tracks in decreasing order of track quality
1826 // 6. Build AliTRDtrack out of seeding tracklets
1827 // 7. Cook MC label
1828 // 8. Build ESD track and register it to the output list
1829 //
1830
1831 AliTRDtrackingChamber *chamber = 0x0;
1832 AliTRDseedV1 sseed[kMaxTracksStack*6]; // to be initialized
1833 Int_t pars[4]; // MakeSeeds parameters
1834
1835 //Double_t alpha = AliTRDgeometry::GetAlpha();
1836 //Double_t shift = .5 * alpha;
1837 Int_t configs[kNConfigs];
1838
1839 // Build initial seeding configurations
1840 Double_t quality = BuildSeedingConfigs(stack, configs);
3a039a31 1841 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
41702fec 1842 AliInfo(Form("Plane config %d %d %d Quality %f"
1843 , configs[0], configs[1], configs[2], quality));
1844 }
1845
1846 // Initialize contors
1847 Int_t ntracks, // number of TRD track candidates
1848 ntracks1, // number of registered TRD tracks/iter
1849 ntracks2 = 0; // number of all registered TRD tracks in stack
1850 fSieveSeeding = 0;
1851 do{
1852 // Loop over seeding configurations
1853 ntracks = 0; ntracks1 = 0;
1854 for (Int_t iconf = 0; iconf<3; iconf++) {
1855 pars[0] = configs[iconf];
1856 pars[1] = ntracks;
1857 ntracks = MakeSeeds(stack, &sseed[6*ntracks], pars);
1858 if(ntracks == kMaxTracksStack) break;
1859 }
3a039a31 1860 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1) AliInfo(Form("Candidate TRD tracks %d in iteration %d.", ntracks, fSieveSeeding));
41702fec 1861
1862 if(!ntracks) break;
1863
1864 // Sort the seeds according to their quality
1865 Int_t sort[kMaxTracksStack];
1866 TMath::Sort(ntracks, fTrackQuality, sort, kTRUE);
1867
1868 // Initialize number of tracks so far and logic switches
1869 Int_t ntracks0 = esdTrackList->GetEntriesFast();
1870 Bool_t signedTrack[kMaxTracksStack];
1871 Bool_t fakeTrack[kMaxTracksStack];
1872 for (Int_t i=0; i<ntracks; i++){
1873 signedTrack[i] = kFALSE;
1874 fakeTrack[i] = kFALSE;
1875 }
1876 //AliInfo("Selecting track candidates ...");
1877
1878 // Sieve clusters in decreasing order of track quality
1879 Double_t trackParams[7];
1880 // AliTRDseedV1 *lseed = 0x0;
1881 Int_t jSieve = 0, candidates;
1882 do{
1883 //AliInfo(Form("\t\tITER = %i ", jSieve));
1884
1885 // Check track candidates
1886 candidates = 0;
1887 for (Int_t itrack = 0; itrack < ntracks; itrack++) {
804bb02e 1888 Int_t trackIndex = sort[itrack];
1889 if (signedTrack[trackIndex] || fakeTrack[trackIndex]) continue;
41702fec 1890
1891
804bb02e 1892 // Calculate track parameters from tracklets seeds
1893 Int_t labelsall[1000];
1894 Int_t nlabelsall = 0;
1895 Int_t naccepted = 0;
1896 Int_t ncl = 0;
1897 Int_t nused = 0;
1898 Int_t nlayers = 0;
1899 Int_t findable = 0;
1900 for (Int_t jLayer = 0; jLayer < kNPlanes; jLayer++) {
1901 Int_t jseed = kNPlanes*trackIndex+jLayer;
1902 if(!sseed[jseed].IsOK()) continue;
1903 if (TMath::Abs(sseed[jseed].GetYref(0) / sseed[jseed].GetX0()) < 0.15) findable++;
1904
1905 sseed[jseed].UpdateUsed();
1906 ncl += sseed[jseed].GetN2();
1907 nused += sseed[jseed].GetNUsed();
1908 nlayers++;
1909
1910// // Cooking label
1911// for (Int_t itime = 0; itime < fgNTimeBins; itime++) {
1912// if(!sseed[jseed].IsUsable(itime)) continue;
1913// naccepted++;
1914// Int_t tindex = 0, ilab = 0;
1915// while(ilab<3 && (tindex = sseed[jseed].GetClusters(itime)->GetLabel(ilab)) >= 0){
1916// labelsall[nlabelsall++] = tindex;
1917// ilab++;
1918// }
1919// }
1920 }
1921
41702fec 1922 // Filter duplicated tracks
1923 if (nused > 30){
1924 //printf("Skip %d nused %d\n", trackIndex, nused);
1925 fakeTrack[trackIndex] = kTRUE;
1926 continue;
1927 }
1928 if (Float_t(nused)/ncl >= .25){
1929 //printf("Skip %d nused/ncl >= .25\n", trackIndex);
1930 fakeTrack[trackIndex] = kTRUE;
1931 continue;
1932 }
1933
1934 // Classify tracks
1935 Bool_t skip = kFALSE;
1936 switch(jSieve){
1937 case 0:
1938 if(nlayers < 6) {skip = kTRUE; break;}
1939 if(TMath::Log(1.E-9+fTrackQuality[trackIndex]) < -5.){skip = kTRUE; break;}
1940 break;
1941
1942 case 1:
1943 if(nlayers < findable){skip = kTRUE; break;}
1944 if(TMath::Log(1.E-9+fTrackQuality[trackIndex]) < -4.){skip = kTRUE; break;}
1945 break;
1946
1947 case 2:
1948 if ((nlayers == findable) || (nlayers == 6)) { skip = kTRUE; break;}
1949 if (TMath::Log(1.E-9+fTrackQuality[trackIndex]) < -6.0){skip = kTRUE; break;}
1950 break;
1951
1952 case 3:
1953 if (TMath::Log(1.E-9+fTrackQuality[trackIndex]) < -5.){skip = kTRUE; break;}
1954 break;
1955
1956 case 4:
1957 if (nlayers == 3){skip = kTRUE; break;}
1958 //if (TMath::Log(1.E-9+fTrackQuality[trackIndex]) - nused/(nlayers-3.0) < -15.0){skip = kTRUE; break;}
1959 break;
1960 }
1961 if(skip){
1962 candidates++;
1963 //printf("REJECTED : %d [%d] nlayers %d trackQuality = %e nused %d\n", itrack, trackIndex, nlayers, fTrackQuality[trackIndex], nused);
1964 continue;
1965 }
1966 signedTrack[trackIndex] = kTRUE;
1967
41702fec 1968
1969 // Sign clusters
1970 AliTRDcluster *cl = 0x0; Int_t clusterIndex = -1;
be24510a 1971 for (Int_t jLayer = 0; jLayer < kNPlanes; jLayer++) {
41702fec 1972 Int_t jseed = kNPlanes*trackIndex+jLayer;
1973 if(!sseed[jseed].IsOK()) continue;
1974 if(TMath::Abs(sseed[jseed].GetYfit(1) - sseed[jseed].GetYfit(1)) >= .2) continue; // check this condition with Marian
1975 sseed[jseed].UseClusters();
1976 if(!cl){
1977 Int_t ic = 0;
1978 while(!(cl = sseed[jseed].GetClusters(ic))) ic++;
1979 clusterIndex = sseed[jseed].GetIndexes(ic);
1980 }
1981 }
1982 if(!cl) continue;
1983
1984
1985 // Build track parameters
1986 AliTRDseedV1 *lseed =&sseed[trackIndex*6];
e79f8eb0 1987/* Int_t idx = 0;
41702fec 1988 while(idx<3 && !lseed->IsOK()) {
1989 idx++;
1990 lseed++;
e79f8eb0 1991 }*/
e79f8eb0 1992 Double_t x = lseed->GetX0();// - 3.5;
41702fec 1993 trackParams[0] = x; //NEW AB
e79f8eb0 1994 trackParams[1] = lseed->GetYref(0); // lseed->GetYat(x);
1995 trackParams[2] = lseed->GetZref(0); // lseed->GetZat(x);
1996 trackParams[3] = TMath::Sin(TMath::ATan(lseed->GetYref(1)));
41702fec 1997 trackParams[4] = lseed->GetZref(1) / TMath::Sqrt(1. + lseed->GetYref(1) * lseed->GetYref(1));
be24510a 1998 trackParams[5] = lseed->GetC();
41702fec 1999 Int_t ich = 0; while(!(chamber = stack[ich])) ich++;
2000 trackParams[6] = fGeom->GetSector(chamber->GetDetector());/* *alpha+shift; // Supermodule*/
2001
3a039a31 2002 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
41702fec 2003 AliInfo(Form("Track %d [%d] nlayers %d trackQuality = %e nused %d, yref = %3.3f", itrack, trackIndex, nlayers, fTrackQuality[trackIndex], nused, trackParams[1]));
2004
2005 Int_t nclusters = 0;
2006 AliTRDseedV1 *dseed[6];
804bb02e 2007
2008 // Build track label - what happens if measured data ???
2009 Int_t labels[1000];
2010 Int_t outlab[1000];
2011 Int_t nlab = 0;
2012 for (Int_t iLayer = 0; iLayer < kNPlanes; iLayer++) {
2013 Int_t jseed = kNPlanes*trackIndex+iLayer;
2014 dseed[iLayer] = new AliTRDseedV1(sseed[jseed]);
2015 dseed[iLayer]->SetOwner();
2016 nclusters += sseed[jseed].GetN2();
2017 if(!sseed[jseed].IsOK()) continue;
2018 for(int ilab=0; ilab<2; ilab++){
2019 if(sseed[jseed].GetLabels(ilab) < 0) continue;
2020 labels[nlab] = sseed[jseed].GetLabels(ilab);
2021 nlab++;
2022 }
41702fec 2023 }
804bb02e 2024 Freq(nlab,labels,outlab,kFALSE);
2025 Int_t label = outlab[0];
2026 Int_t frequency = outlab[1];
2027 Freq(nlabelsall,labelsall,outlab,kFALSE);
2028 Int_t label1 = outlab[0];
2029 Int_t label2 = outlab[2];
2030 Float_t fakeratio = (naccepted - outlab[1]) / Float_t(naccepted);
2031
41702fec 2032 //Int_t eventNrInFile = esd->GetEventNumberInFile();
2033 //AliInfo(Form("Number of clusters %d.", nclusters));
2034 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2035 Int_t trackNumber = AliTRDtrackerDebug::GetTrackNumber();
2036 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2037 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2038 cstreamer << "Clusters2TracksStack"
2039 << "EventNumber=" << eventNumber
2040 << "TrackNumber=" << trackNumber
2041 << "CandidateNumber=" << candidateNumber
2042 << "Iter=" << fSieveSeeding
2043 << "Like=" << fTrackQuality[trackIndex]
2044 << "S0.=" << dseed[0]
2045 << "S1.=" << dseed[1]
2046 << "S2.=" << dseed[2]
2047 << "S3.=" << dseed[3]
2048 << "S4.=" << dseed[4]
2049 << "S5.=" << dseed[5]
2050 << "p0=" << trackParams[0]
2051 << "p1=" << trackParams[1]
2052 << "p2=" << trackParams[2]
2053 << "p3=" << trackParams[3]
2054 << "p4=" << trackParams[4]
2055 << "p5=" << trackParams[5]
2056 << "p6=" << trackParams[6]
2057 << "Label=" << label
2058 << "Label1=" << label1
2059 << "Label2=" << label2
2060 << "FakeRatio=" << fakeratio
2061 << "Freq=" << frequency
2062 << "Ncl=" << ncl
2063 << "NLayers=" << nlayers
2064 << "Findable=" << findable
41702fec 2065 << "NUsed=" << nused
2066 << "\n";
2067 }
2068
2069 AliTRDtrackV1 *track = MakeTrack(&sseed[trackIndex*kNPlanes], trackParams);
2070 if(!track){
2071 AliWarning("Fail to build a TRD Track.");
2072 continue;
2073 }
2074 //AliInfo("End of MakeTrack()");
098c3c3d 2075 AliESDtrack *esdTrack = new ((*esdTrackList)[ntracks0++]) AliESDtrack();
2076 esdTrack->UpdateTrackParams(track, AliESDtrack::kTRDout);
2077 esdTrack->SetLabel(track->GetLabel());
2078 track->UpdateESDtrack(esdTrack);
41702fec 2079 // write ESD-friends if neccessary
3a039a31 2080 if (fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 0){
41702fec 2081 AliTRDtrackV1 *calibTrack = new AliTRDtrackV1(*track);
2082 calibTrack->SetOwner();
098c3c3d 2083 esdTrack->AddCalibObject(calibTrack);
41702fec 2084 }
41702fec 2085 ntracks1++;
2086 AliTRDtrackerDebug::SetTrackNumber(AliTRDtrackerDebug::GetTrackNumber() + 1);
2087 }
2088
2089 jSieve++;
2090 } while(jSieve<5 && candidates); // end track candidates sieve
2091 if(!ntracks1) break;
2092
2093 // increment counters
2094 ntracks2 += ntracks1;
4302c900 2095
2096 if(fReconstructor->IsHLT()) break;
41702fec 2097 fSieveSeeding++;
2098
2099 // Rebuild plane configurations and indices taking only unused clusters into account
2100 quality = BuildSeedingConfigs(stack, configs);
3a039a31 2101 if(quality < 1.E-7) break; //fReconstructor->GetRecoParam() ->GetPlaneQualityThreshold()) break;
41702fec 2102
2103 for(Int_t ip = 0; ip < kNPlanes; ip++){
2104 if(!(chamber = stack[ip])) continue;
2105 chamber->Build(fGeom);//Indices(fSieveSeeding);
2106 }
2107
3a039a31 2108 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
41702fec 2109 AliInfo(Form("Sieve level %d Plane config %d %d %d Quality %f", fSieveSeeding, configs[0], configs[1], configs[2], quality));
2110 }
2111 } while(fSieveSeeding<10); // end stack clusters sieve
2112
2113
2114
2115 //AliInfo(Form("Registered TRD tracks %d in stack %d.", ntracks2, pars[1]));
2116
2117 return ntracks2;
e4f2f73d 2118}
2119
2120//___________________________________________________________________
eb38ed55 2121Double_t AliTRDtrackerV1::BuildSeedingConfigs(AliTRDtrackingChamber **stack, Int_t *configs)
e4f2f73d 2122{
41702fec 2123 //
2124 // Assign probabilities to chambers according to their
2125 // capability of producing seeds.
2126 //
2127 // Parameters :
2128 //
2129 // layers : Array of stack propagation layers for all 6 chambers in one stack
2130 // configs : On exit array of configuration indexes (see GetSeedingConfig()
2131 // for details) in the decreasing order of their seeding probabilities.
2132 //
2133 // Output :
2134 //
2135 // Return top configuration quality
2136 //
2137 // Detailed description:
2138 //
2139 // To each chamber seeding configuration (see GetSeedingConfig() for
2140 // the list of all configurations) one defines 2 quality factors:
2141 // - an apriori topological quality (see GetSeedingConfig() for details) and
2142 // - a data quality based on the uniformity of the distribution of
2143 // clusters over the x range (time bins population). See CookChamberQA() for details.
2144 // The overall chamber quality is given by the product of this 2 contributions.
2145 //
2146
2147 Double_t chamberQ[kNPlanes];
2148 AliTRDtrackingChamber *chamber = 0x0;
2149 for(int iplane=0; iplane<kNPlanes; iplane++){
2150 if(!(chamber = stack[iplane])) continue;
2151 chamberQ[iplane] = (chamber = stack[iplane]) ? chamber->GetQuality() : 0.;
2152 }
2153
2154 Double_t tconfig[kNConfigs];
2155 Int_t planes[4];
2156 for(int iconf=0; iconf<kNConfigs; iconf++){
2157 GetSeedingConfig(iconf, planes);
2158 tconfig[iconf] = fgTopologicQA[iconf];
2159 for(int iplane=0; iplane<4; iplane++) tconfig[iconf] *= chamberQ[planes[iplane]];
2160 }
2161
2162 TMath::Sort((Int_t)kNConfigs, tconfig, configs, kTRUE);
2163 // AliInfo(Form("q[%d] = %f", configs[0], tconfig[configs[0]]));
2164 // AliInfo(Form("q[%d] = %f", configs[1], tconfig[configs[1]]));
2165 // AliInfo(Form("q[%d] = %f", configs[2], tconfig[configs[2]]));
2166
2167 return tconfig[configs[0]];
e4f2f73d 2168}
2169
2170//____________________________________________________________________
eb38ed55 2171Int_t AliTRDtrackerV1::MakeSeeds(AliTRDtrackingChamber **stack, AliTRDseedV1 *sseed, Int_t *ipar)
e4f2f73d 2172{
41702fec 2173 //
2174 // Make tracklet seeds in the TRD stack.
2175 //
2176 // Parameters :
2177 // layers : Array of stack propagation layers containing clusters
2178 // sseed : Array of empty tracklet seeds. On exit they are filled.
2179 // ipar : Control parameters:
2180 // ipar[0] -> seeding chambers configuration
2181 // ipar[1] -> stack index
2182 // ipar[2] -> number of track candidates found so far
2183 //
2184 // Output :
2185 // Number of tracks candidates found.
2186 //
2187 // Detailed description
2188 //
2189 // The following steps are performed:
2190 // 1. Select seeding layers from seeding chambers
2191 // 2. Select seeding clusters from the seeding AliTRDpropagationLayerStack.
2192 // The clusters are taken from layer 3, layer 0, layer 1 and layer 2, in
2193 // this order. The parameters controling the range of accepted clusters in
2194 // layer 0, 1, and 2 are defined in AliTRDchamberTimeBin::BuildCond().
2195 // 3. Helix fit of the cluster set. (see AliTRDtrackerFitter::FitRieman(AliTRDcluster**))
2196 // 4. Initialize seeding tracklets in the seeding chambers.
2197 // 5. Filter 0.
2198 // Chi2 in the Y direction less than threshold ... (1./(3. - sLayer))
2199 // Chi2 in the Z direction less than threshold ... (1./(3. - sLayer))
2200 // 6. Attach clusters to seeding tracklets and find linear approximation of
2201 // the tracklet (see AliTRDseedV1::AttachClustersIter()). The number of used
2202 // clusters used by current seeds should not exceed ... (25).
2203 // 7. Filter 1.
2204 // All 4 seeding tracklets should be correctly constructed (see
2205 // AliTRDseedV1::AttachClustersIter())
2206 // 8. Helix fit of the seeding tracklets
2207 // 9. Filter 2.
2208 // Likelihood calculation of the fit. (See AliTRDtrackerV1::CookLikelihood() for details)
2209 // 10. Extrapolation of the helix fit to the other 2 chambers:
2210 // a) Initialization of extrapolation tracklet with fit parameters
2211 // b) Helix fit of tracklets
2212 // c) Attach clusters and linear interpolation to extrapolated tracklets
2213 // d) Helix fit of tracklets
2214 // 11. Improve seeding tracklets quality by reassigning clusters.
2215 // See AliTRDtrackerV1::ImproveSeedQuality() for details.
2216 // 12. Helix fit of all 6 seeding tracklets and chi2 calculation
2217 // 13. Hyperplane fit and track quality calculation. See AliTRDtrackerFitter::FitHyperplane() for details.
2218 // 14. Cooking labels for tracklets. Should be done only for MC
2219 // 15. Register seeds.
2220 //
2221
2222 AliTRDtrackingChamber *chamber = 0x0;
be24510a 2223 AliTRDcluster *c[kNSeedPlanes] = {0x0, 0x0, 0x0, 0x0}; // initilize seeding clusters
41702fec 2224 AliTRDseedV1 *cseed = &sseed[0]; // initialize tracklets for first track
2225 Int_t ncl, mcl; // working variable for looping over clusters
2226 Int_t index[AliTRDchamberTimeBin::kMaxClustersLayer], jndex[AliTRDchamberTimeBin::kMaxClustersLayer];
2227 // chi2 storage
2228 // chi2[0] = tracklet chi2 on the Z direction
2229 // chi2[1] = tracklet chi2 on the R direction
2230 Double_t chi2[4];
2231
e79f8eb0 2232 // Default positions for the anode wire in all 6 Layers in case of a stack with missing clusters
2233 // Positions taken using cosmic data taken with SM3 after rebuild
2234 Double_t x_def[kNPlanes] = {300.2, 312.8, 325.4, 338, 350.6, 363.2};
41702fec 2235
2236 // this should be data member of AliTRDtrack
2237 Double_t seedQuality[kMaxTracksStack];
2238
2239 // unpack control parameters
2240 Int_t config = ipar[0];
2241 Int_t ntracks = ipar[1];
2242 Int_t planes[kNSeedPlanes]; GetSeedingConfig(config, planes);
be24510a 2243 Int_t planesExt[kNPlanes-kNSeedPlanes]; GetExtrapolationConfig(config, planesExt);
2244
2245
41702fec 2246 // Init chambers geometry
2247 Int_t ic = 0; while(!(chamber = stack[ic])) ic++;
053767a4 2248 Int_t istack = fGeom->GetStack(chamber->GetDetector());
41702fec 2249 Double_t hL[kNPlanes]; // Tilting angle
2250 Float_t padlength[kNPlanes]; // pad lenghts
2251 AliTRDpadPlane *pp = 0x0;
2252 for(int iplane=0; iplane<kNPlanes; iplane++){
2253 pp = fGeom->GetPadPlane(iplane, istack);
bb79ccd5 2254 hL[iplane] = TMath::Tan(TMath::DegToRad()*pp->GetTiltingAngle());
41702fec 2255 padlength[iplane] = pp->GetLengthIPad();
2256 }
2257
3a039a31 2258 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
41702fec 2259 AliInfo(Form("Making seeds Stack[%d] Config[%d] Tracks[%d]...", istack, config, ntracks));
2260 }
2261
d611c74f 2262 ResetSeedTB();
41702fec 2263 Int_t nlayers = 0;
41702fec 2264 for(int isl=0; isl<kNSeedPlanes; isl++){
2265 if(!(chamber = stack[planes[isl]])) continue;
3a039a31 2266 if(!chamber->GetSeedingLayer(fSeedTB[isl], fGeom, fReconstructor)) continue;
41702fec 2267 nlayers++;
41702fec 2268 }
2269 if(nlayers < 4) return 0;
2270
2271
2272 // Start finding seeds
2273 Double_t cond0[4], cond1[4], cond2[4];
2274 Int_t icl = 0;
d611c74f 2275 while((c[3] = (*fSeedTB[3])[icl++])){
41702fec 2276 if(!c[3]) continue;
d611c74f 2277 fSeedTB[0]->BuildCond(c[3], cond0, 0);
2278 fSeedTB[0]->GetClusters(cond0, index, ncl);
41702fec 2279 //printf("Found c[3] candidates 0 %d\n", ncl);
2280 Int_t jcl = 0;
2281 while(jcl<ncl) {
d611c74f 2282 c[0] = (*fSeedTB[0])[index[jcl++]];
41702fec 2283 if(!c[0]) continue;
2284 Double_t dx = c[3]->GetX() - c[0]->GetX();
2285 Double_t theta = (c[3]->GetZ() - c[0]->GetZ())/dx;
2286 Double_t phi = (c[3]->GetY() - c[0]->GetY())/dx;
d611c74f 2287 fSeedTB[1]->BuildCond(c[0], cond1, 1, theta, phi);
2288 fSeedTB[1]->GetClusters(cond1, jndex, mcl);
41702fec 2289 //printf("Found c[0] candidates 1 %d\n", mcl);
2290
2291 Int_t kcl = 0;
2292 while(kcl<mcl) {
d611c74f 2293 c[1] = (*fSeedTB[1])[jndex[kcl++]];
2294 if(!c[1]) continue;
2295 fSeedTB[2]->BuildCond(c[1], cond2, 2, theta, phi);
2296 c[2] = fSeedTB[2]->GetNearestCluster(cond2);
2297 //printf("Found c[1] candidate 2 %p\n", c[2]);
2298 if(!c[2]) continue;
2299
2300 // AliInfo("Seeding clusters found. Building seeds ...");
2301 // 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());
2302
804bb02e 2303 for (Int_t il = 0; il < kNPlanes; il++) cseed[il].Reset();
41702fec 2304
d611c74f 2305 FitRieman(c, chi2);
2306
2307 AliTRDseedV1 *tseed = 0x0;
3a039a31 2308 for(int iLayer=0; iLayer<kNPlanes; iLayer++){
43d6ad34 2309 tseed = &cseed[iLayer];
2310 tseed->SetPlane(iLayer);
2311 tseed->SetTilt(hL[iLayer]);
2312 tseed->SetPadLength(padlength[iLayer]);
3a039a31 2313 tseed->SetReconstructor(fReconstructor);
e79f8eb0 2314 Double_t x_anode = stack[iLayer] ? stack[iLayer]->GetX() : x_def[iLayer];
2315 tseed->SetX0(x_anode);
d611c74f 2316 tseed->Init(GetRiemanFitter());
2317 }
2318
2319 Bool_t isFake = kFALSE;
3a039a31 2320 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 2){
d611c74f 2321 if (c[0]->GetLabel(0) != c[3]->GetLabel(0)) isFake = kTRUE;
2322 if (c[1]->GetLabel(0) != c[3]->GetLabel(0)) isFake = kTRUE;
2323 if (c[2]->GetLabel(0) != c[3]->GetLabel(0)) isFake = kTRUE;
2324
2325 Double_t xpos[4];
2326 for(Int_t l = 0; l < kNSeedPlanes; l++) xpos[l] = fSeedTB[l]->GetX();
2327 Float_t yref[4];
2328 for(int il=0; il<4; il++) yref[il] = cseed[planes[il]].GetYref(0);
2329 Int_t ll = c[3]->GetLabel(0);
2330 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2331 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2332 AliRieman *rim = GetRiemanFitter();
2333 TTreeSRedirector &cs0 = *fgDebugStreamer;
2334 cs0 << "MakeSeeds0"
2335 <<"EventNumber=" << eventNumber
2336 <<"CandidateNumber=" << candidateNumber
2337 <<"isFake=" << isFake
2338 <<"config=" << config
2339 <<"label=" << ll
2340 <<"chi2z=" << chi2[0]
2341 <<"chi2y=" << chi2[1]
2342 <<"Y2exp=" << cond2[0]
2343 <<"Z2exp=" << cond2[1]
2344 <<"X0=" << xpos[0] //layer[sLayer]->GetX()
2345 <<"X1=" << xpos[1] //layer[sLayer + 1]->GetX()
2346 <<"X2=" << xpos[2] //layer[sLayer + 2]->GetX()
2347 <<"X3=" << xpos[3] //layer[sLayer + 3]->GetX()
2348 <<"yref0=" << yref[0]
2349 <<"yref1=" << yref[1]
2350 <<"yref2=" << yref[2]
2351 <<"yref3=" << yref[3]
2352 <<"c0.=" << c[0]
2353 <<"c1.=" << c[1]
2354 <<"c2.=" << c[2]
2355 <<"c3.=" << c[3]
2356 <<"Seed0.=" << &cseed[planes[0]]
2357 <<"Seed1.=" << &cseed[planes[1]]
2358 <<"Seed2.=" << &cseed[planes[2]]
2359 <<"Seed3.=" << &cseed[planes[3]]
2360 <<"RiemanFitter.=" << rim
2361 <<"\n";
2362 }
2363
3a039a31 2364 if(chi2[0] > fReconstructor->GetRecoParam() ->GetChi2Z()/*7./(3. - sLayer)*//*iter*/){
d611c74f 2365 //AliInfo(Form("Failed chi2 filter on chi2Z [%f].", chi2[0]));
2366 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2367 continue;
2368 }
3a039a31 2369 if(chi2[1] > fReconstructor->GetRecoParam() ->GetChi2Y()/*1./(3. - sLayer)*//*iter*/){
d611c74f 2370 //AliInfo(Form("Failed chi2 filter on chi2Y [%f].", chi2[1]));
2371 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2372 continue;
2373 }
2374 //AliInfo("Passed chi2 filter.");
2375
2376 // try attaching clusters to tracklets
2377 Int_t nUsedCl = 0;
2378 Int_t mlayers = 0;
be24510a 2379 for(int iLayer=0; iLayer<kNSeedPlanes; iLayer++){
d611c74f 2380 Int_t jLayer = planes[iLayer];
2381 if(!cseed[jLayer].AttachClustersIter(stack[jLayer], 5., kFALSE, c[iLayer])) continue;
2382 nUsedCl += cseed[jLayer].GetNUsed();
2383 if(nUsedCl > 25) break;
2384 mlayers++;
2385 }
be24510a 2386
2387 if(mlayers < kNSeedPlanes){
2388 //AliInfo(Form("Failed updating all seeds %d [%d].", mlayers, kNSeedPlanes));
2389 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2390 continue;
2391 }
2392
2393 // temporary exit door for the HLT
4302c900 2394 if(fReconstructor->IsHLT()){
be24510a 2395 // attach clusters to extrapolation chambers
2396 for(int iLayer=0; iLayer<kNPlanes-kNSeedPlanes; iLayer++){
2397 Int_t jLayer = planesExt[iLayer];
2398 if(!(chamber = stack[jLayer])) continue;
2399 cseed[jLayer].AttachClustersIter(chamber, 1000.);
2400 }
4302c900 2401 fTrackQuality[ntracks] = 1.; // dummy value
2402 ntracks++;
2403 if(ntracks == kMaxTracksStack){
2404 AliWarning(Form("Number of seeds reached maximum allowed (%d) in stack.", kMaxTracksStack));
2405 return ntracks;
2406 }
2407 cseed += 6;
2408 continue;
2409 }
2410
be24510a 2411
d611c74f 2412 // fit tracklets and cook likelihood
2413 FitTiltedRieman(&cseed[0], kTRUE);// Update Seeds and calculate Likelihood
2414 chi2[0] = GetChi2Y(&cseed[0]);
2415 chi2[1] = GetChi2Z(&cseed[0]);
2416 //Chi2 definitions in testing stage
2417 //chi2[0] = GetChi2YTest(&cseed[0]);
2418 //chi2[1] = GetChi2ZTest(&cseed[0]);
2419 Double_t like = CookLikelihood(&cseed[0], planes, chi2); // to be checked
2420
3a039a31 2421 if (TMath::Log(1.E-9 + like) < fReconstructor->GetRecoParam() ->GetTrackLikelihood()){
d611c74f 2422 //AliInfo(Form("Failed likelihood %f[%e].", TMath::Log(1.E-9 + like), like));
2423 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2424 continue;
2425 }
2426 //AliInfo(Form("Passed likelihood %f[%e].", TMath::Log(1.E-9 + like), like));
2427
2428 // book preliminary results
2429 seedQuality[ntracks] = like;
2430 fSeedLayer[ntracks] = config;/*sLayer;*/
2431
2432 // attach clusters to the extrapolation seeds
d611c74f 2433 Int_t nusedf = 0; // debug value
be24510a 2434 for(int iLayer=0; iLayer<kNPlanes-kNSeedPlanes; iLayer++){
2435 Int_t jLayer = planesExt[iLayer];
d611c74f 2436 if(!(chamber = stack[jLayer])) continue;
d611c74f 2437
2438 // fit extrapolated seed
2439 if ((jLayer == 0) && !(cseed[1].IsOK())) continue;
2440 if ((jLayer == 5) && !(cseed[4].IsOK())) continue;
2441 AliTRDseedV1 pseed = cseed[jLayer];
2442 if(!pseed.AttachClustersIter(chamber, 1000.)) continue;
2443 cseed[jLayer] = pseed;
2444 nusedf += cseed[jLayer].GetNUsed(); // debug value
2445 FitTiltedRieman(cseed, kTRUE);
2446 }
2447
2448 // AliInfo("Extrapolation done.");
2449 // Debug Stream containing all the 6 tracklets
3a039a31 2450 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 2){
d611c74f 2451 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2452 TLinearFitter *tiltedRieman = GetTiltedRiemanFitter();
2453 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2454 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2455 cstreamer << "MakeSeeds1"
2456 << "EventNumber=" << eventNumber
2457 << "CandidateNumber=" << candidateNumber
2458 << "S0.=" << &cseed[0]
2459 << "S1.=" << &cseed[1]
2460 << "S2.=" << &cseed[2]
2461 << "S3.=" << &cseed[3]
2462 << "S4.=" << &cseed[4]
2463 << "S5.=" << &cseed[5]
2464 << "FitterT.=" << tiltedRieman
2465 << "\n";
2466 }
2467
fb872574 2468 if(fReconstructor->GetRecoParam()->HasImproveTracklets() && ImproveSeedQuality(stack, cseed) < 4){
d611c74f 2469 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2470 continue;
2471 }
2472 //AliInfo("Improve seed quality done.");
2473
2474 // fit full track and cook likelihoods
2475 // Double_t curv = FitRieman(&cseed[0], chi2);
2476 // Double_t chi2ZF = chi2[0] / TMath::Max((mlayers - 3.), 1.);
2477 // Double_t chi2RF = chi2[1] / TMath::Max((mlayers - 3.), 1.);
2478
2479 // do the final track fitting (Once with vertex constraint and once without vertex constraint)
2480 Double_t chi2Vals[3];
2481 chi2Vals[0] = FitTiltedRieman(&cseed[0], kFALSE);
3a039a31 2482 if(fReconstructor->GetRecoParam() ->IsVertexConstrained())
d611c74f 2483 chi2Vals[1] = FitTiltedRiemanConstraint(&cseed[0], GetZ()); // Do Vertex Constrained fit if desired
2484 else
2485 chi2Vals[1] = 1.;
2486 chi2Vals[2] = GetChi2Z(&cseed[0]) / TMath::Max((mlayers - 3.), 1.);
2487 // Chi2 definitions in testing stage
2488 //chi2Vals[2] = GetChi2ZTest(&cseed[0]);
2489 fTrackQuality[ntracks] = CalculateTrackLikelihood(&cseed[0], &chi2Vals[0]);
2490 //AliInfo("Hyperplane fit done\n");
2491
2492 // finalize tracklets
2493 Int_t labels[12];
2494 Int_t outlab[24];
2495 Int_t nlab = 0;
2496 for (Int_t iLayer = 0; iLayer < 6; iLayer++) {
2497 if (!cseed[iLayer].IsOK()) continue;
2498
2499 if (cseed[iLayer].GetLabels(0) >= 0) {
2500 labels[nlab] = cseed[iLayer].GetLabels(0);
2501 nlab++;
2502 }
2503
2504 if (cseed[iLayer].GetLabels(1) >= 0) {
2505 labels[nlab] = cseed[iLayer].GetLabels(1);
2506 nlab++;
2507 }
2508 }
2509 Freq(nlab,labels,outlab,kFALSE);
2510 Int_t label = outlab[0];
2511 Int_t frequency = outlab[1];
2512 for (Int_t iLayer = 0; iLayer < 6; iLayer++) {
2513 cseed[iLayer].SetFreq(frequency);
2514 cseed[iLayer].SetChi2Z(chi2[1]);
2515 }
2516
3a039a31 2517 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 2){
d611c74f 2518 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2519 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2520 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2521 TLinearFitter *fitterTC = GetTiltedRiemanFitterConstraint();
2522 TLinearFitter *fitterT = GetTiltedRiemanFitter();
2523 cstreamer << "MakeSeeds2"
2524 << "EventNumber=" << eventNumber
2525 << "CandidateNumber=" << candidateNumber
2526 << "Chi2TR=" << chi2Vals[0]
2527 << "Chi2TC=" << chi2Vals[1]
2528 << "Nlayers=" << mlayers
2529 << "NUsedS=" << nUsedCl
2530 << "NUsed=" << nusedf
2531 << "Like=" << like
2532 << "S0.=" << &cseed[0]
2533 << "S1.=" << &cseed[1]
2534 << "S2.=" << &cseed[2]
2535 << "S3.=" << &cseed[3]
2536 << "S4.=" << &cseed[4]
2537 << "S5.=" << &cseed[5]
2538 << "Label=" << label
2539 << "Freq=" << frequency
2540 << "FitterT.=" << fitterT
2541 << "FitterTC.=" << fitterTC
2542 << "\n";
2543 }
2544
2545 ntracks++;
2546 AliTRDtrackerDebug::SetCandidateNumber(AliTRDtrackerDebug::GetCandidateNumber() + 1);
2547 if(ntracks == kMaxTracksStack){
2548 AliWarning(Form("Number of seeds reached maximum allowed (%d) in stack.", kMaxTracksStack));
2549 return ntracks;
2550 }
2551 cseed += 6;
41702fec 2552 }
2553 }
2554 }
41702fec 2555
2556 return ntracks;
e4f2f73d 2557}
2558
2559//_____________________________________________________________________________
0906e73e 2560AliTRDtrackV1* AliTRDtrackerV1::MakeTrack(AliTRDseedV1 *seeds, Double_t *params)
e4f2f73d 2561{
41702fec 2562 //
2563 // Build a TRD track out of tracklet candidates
2564 //
2565 // Parameters :
2566 // seeds : array of tracklets
2567 // params : track parameters (see MakeSeeds() function body for a detailed description)
2568 //
2569 // Output :
2570 // The TRD track.
2571 //
2572 // Detailed description
2573 //
2574 // To be discussed with Marian !!
2575 //
2576
2577 AliTRDCalibraFillHisto *calibra = AliTRDCalibraFillHisto::Instance();
2578 if (!calibra) AliInfo("Could not get Calibra instance\n");
2579
2580 Double_t alpha = AliTRDgeometry::GetAlpha();
2581 Double_t shift = AliTRDgeometry::GetAlpha()/2.0;
2582 Double_t c[15];
2583
2584 c[ 0] = 0.2;
2585 c[ 1] = 0.0; c[ 2] = 2.0;
2586 c[ 3] = 0.0; c[ 4] = 0.0; c[ 5] = 0.02;
2587 c[ 6] = 0.0; c[ 7] = 0.0; c[ 8] = 0.0; c[ 9] = 0.1;
2588 c[10] = 0.0; c[11] = 0.0; c[12] = 0.0; c[13] = 0.0; c[14] = params[5]*params[5]*0.01;
2589
d20df6fc 2590 AliTRDtrackV1 track(seeds, &params[1], c, params[0], params[6]*alpha+shift);
2591 track.PropagateTo(params[0]-5.0);
2592 track.ResetCovariance(1);
e79f8eb0 2593 Int_t nc = TMath::Abs(FollowBackProlongation(track));
d20df6fc 2594 if (nc < 30) return 0x0;
2595
2596 AliTRDtrackV1 *ptrTrack = SetTrack(&track);
2597 ptrTrack->CookLabel(.9);
2598 // computes PID for track
2599 ptrTrack->CookPID();
2600 // update calibration references using this track
2601 if(calibra->GetHisto2d()) calibra->UpdateHistogramsV1(ptrTrack);
2602
2603 return ptrTrack;
e4f2f73d 2604}
2605
0906e73e 2606
e4f2f73d 2607//____________________________________________________________________
eb38ed55 2608Int_t AliTRDtrackerV1::ImproveSeedQuality(AliTRDtrackingChamber **stack, AliTRDseedV1 *cseed)
e4f2f73d 2609{
41702fec 2610 //
2611 // Sort tracklets according to "quality" and try to "improve" the first 4 worst
2612 //
2613 // Parameters :
2614 // layers : Array of propagation layers for a stack/supermodule
2615 // cseed : Array of 6 seeding tracklets which has to be improved
2616 //
2617 // Output :
2618 // cssed : Improved seeds
2619 //
2620 // Detailed description
2621 //
2622 // Iterative procedure in which new clusters are searched for each
2623 // tracklet seed such that the seed quality (see AliTRDseed::GetQuality())
2624 // can be maximized. If some optimization is found the old seeds are replaced.
2625 //
2626 // debug level: 7
2627 //
2628
2629 // make a local working copy
2630 AliTRDtrackingChamber *chamber = 0x0;
2631 AliTRDseedV1 bseed[6];
2632 Int_t nLayers = 0;
2633 for (Int_t jLayer = 0; jLayer < 6; jLayer++) bseed[jLayer] = cseed[jLayer];
2634
2635 Float_t lastquality = 10000.0;
2636 Float_t lastchi2 = 10000.0;
2637 Float_t chi2 = 1000.0;
2638
2639 for (Int_t iter = 0; iter < 4; iter++) {
2640 Float_t sumquality = 0.0;
2641 Float_t squality[6];
2642 Int_t sortindexes[6];
2643
2644 for (Int_t jLayer = 0; jLayer < 6; jLayer++) {
3a039a31 2645 squality[jLayer] = bseed[jLayer].IsOK() ? bseed[jLayer].GetQuality(kTRUE) : 1000.;
41702fec 2646 sumquality += squality[jLayer];
2647 }
2648 if ((sumquality >= lastquality) || (chi2 > lastchi2)) break;
2649
2650 nLayers = 0;
2651 lastquality = sumquality;
2652 lastchi2 = chi2;
2653 if (iter > 0) for (Int_t jLayer = 0; jLayer < 6; jLayer++) cseed[jLayer] = bseed[jLayer];
2654
2655 TMath::Sort(6, squality, sortindexes, kFALSE);
2656 for (Int_t jLayer = 5; jLayer > 1; jLayer--) {
2657 Int_t bLayer = sortindexes[jLayer];
2658 if(!(chamber = stack[bLayer])) continue;
2659 bseed[bLayer].AttachClustersIter(chamber, squality[bLayer], kTRUE);
2660 if(bseed[bLayer].IsOK()) nLayers++;
2661 }
2662
2663 chi2 = FitTiltedRieman(bseed, kTRUE);
3a039a31 2664 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 7){
41702fec 2665 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2666 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2667 TLinearFitter *tiltedRieman = GetTiltedRiemanFitter();
2668 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2669 cstreamer << "ImproveSeedQuality"
2670 << "EventNumber=" << eventNumber
2671 << "CandidateNumber=" << candidateNumber
2672 << "Iteration=" << iter
2673 << "S0.=" << &bseed[0]
2674 << "S1.=" << &bseed[1]
2675 << "S2.=" << &bseed[2]
2676 << "S3.=" << &bseed[3]
2677 << "S4.=" << &bseed[4]
2678 << "S5.=" << &bseed[5]
2679 << "FitterT.=" << tiltedRieman
2680 << "\n";
2681 }
2682 } // Loop: iter
2683
2684 // we are sure that at least 2 tracklets are OK !
2685 return nLayers+2;
e4f2f73d 2686}
2687
eb38ed55 2688//_________________________________________________________________________
2689Double_t AliTRDtrackerV1::CalculateTrackLikelihood(AliTRDseedV1 *tracklets, Double_t *chi2){
41702fec 2690 //
2691 // Calculates the Track Likelihood value. This parameter serves as main quality criterion for
2692 // the track selection
2693 // The likelihood value containes:
2694 // - The chi2 values from the both fitters and the chi2 values in z-direction from a linear fit
2695 // - The Sum of the Parameter |slope_ref - slope_fit|/Sigma of the tracklets
2696 // For all Parameters an exponential dependency is used
2697 //
2698 // Parameters: - Array of tracklets (AliTRDseedV1) related to the track candidate
2699 // - Array of chi2 values:
2700 // * Non-Constrained Tilted Riemann fit
2701 // * Vertex-Constrained Tilted Riemann fit
2702 // * z-Direction from Linear fit
2703 // Output: - The calculated track likelihood
2704 //
2705 // debug level 2
2706 //
2707
2708 Double_t sumdaf = 0, nLayers = 0;
2709 for (Int_t iLayer = 0; iLayer < kNPlanes; iLayer++) {
2710 if(!tracklets[iLayer].IsOK()) continue;
2711 sumdaf += TMath::Abs((tracklets[iLayer].GetYfit(1) - tracklets[iLayer].GetYref(1))/ tracklets[iLayer].GetSigmaY2());
2712 nLayers++;
2713 }
2714 sumdaf /= Float_t (nLayers - 2.0);
2715
2716 Double_t likeChi2Z = TMath::Exp(-chi2[2] * 0.14); // Chi2Z
3a039a31 2717 Double_t likeChi2TC = (fReconstructor->GetRecoParam() ->IsVertexConstrained()) ?
d20df6fc 2718 TMath::Exp(-chi2[1] * 0.677) : 1; // Constrained Tilted Riemann
41702fec 2719 Double_t likeChi2TR = TMath::Exp(-chi2[0] * 0.78); // Non-constrained Tilted Riemann
2720 Double_t likeAF = TMath::Exp(-sumdaf * 3.23);
2721 Double_t trackLikelihood = likeChi2Z * likeChi2TR * likeAF;
2722
3a039a31 2723 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 2){
41702fec 2724 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2725 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2726 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2727 cstreamer << "CalculateTrackLikelihood0"
2728 << "EventNumber=" << eventNumber
2729 << "CandidateNumber=" << candidateNumber
2730 << "LikeChi2Z=" << likeChi2Z
2731 << "LikeChi2TR=" << likeChi2TR
2732 << "LikeChi2TC=" << likeChi2TC
2733 << "LikeAF=" << likeAF
2734 << "TrackLikelihood=" << trackLikelihood
2735 << "\n";
2736 }
2737
2738 return trackLikelihood;
e4f2f73d 2739}
2740
2741//____________________________________________________________________
eb38ed55 2742Double_t AliTRDtrackerV1::CookLikelihood(AliTRDseedV1 *cseed, Int_t planes[4]
41702fec 2743 , Double_t *chi2)
e4f2f73d 2744{
41702fec 2745 //
2746 // Calculate the probability of this track candidate.
2747 //
2748 // Parameters :
2749 // cseeds : array of candidate tracklets
2750 // planes : array of seeding planes (see seeding configuration)
2751 // chi2 : chi2 values (on the Z and Y direction) from the rieman fit of the track.
2752 //
2753 // Output :
2754 // likelihood value
2755 //
2756 // Detailed description
2757 //
2758 // The track quality is estimated based on the following 4 criteria:
2759 // 1. precision of the rieman fit on the Y direction (likea)
2760 // 2. chi2 on the Y direction (likechi2y)
2761 // 3. chi2 on the Z direction (likechi2z)
2762 // 4. number of attached clusters compared to a reference value
2763 // (see AliTRDrecoParam::fkFindable) (likeN)
2764 //
2765 // The distributions for each type of probabilities are given below as of
2766 // (date). They have to be checked to assure consistency of estimation.
2767 //
2768
2769 // ratio of the total number of clusters/track which are expected to be found by the tracker.
3a039a31 2770 Float_t fgFindable = fReconstructor->GetRecoParam() ->GetFindableClusters();
41702fec 2771
2772
2773 Int_t nclusters = 0;
2774 Double_t sumda = 0.;
2775 for(UChar_t ilayer = 0; ilayer < 4; ilayer++){
2776 Int_t jlayer = planes[ilayer];
2777 nclusters += cseed[jlayer].GetN2();
2778 sumda += TMath::Abs(cseed[jlayer].GetYfitR(1) - cseed[jlayer].GetYref(1));
2779 }
2780 Double_t likea = TMath::Exp(-sumda*10.6);
2781 Double_t likechi2y = 0.0000000001;
2782 if (chi2[0] < 0.5) likechi2y += TMath::Exp(-TMath::Sqrt(chi2[0]) * 7.73);
2783 Double_t likechi2z = TMath::Exp(-chi2[1] * 0.088) / TMath::Exp(-chi2[1] * 0.019);
2784 Int_t enc = Int_t(fgFindable*4.*fgNTimeBins); // Expected Number Of Clusters, normally 72
2785 Double_t likeN = TMath::Exp(-(enc - nclusters) * 0.19);
2786
2787 Double_t like = likea * likechi2y * likechi2z * likeN;
2788
2789 // 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 2790 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) >= 2){
41702fec 2791 Int_t eventNumber = AliTRDtrackerDebug::GetEventNumber();
2792 Int_t candidateNumber = AliTRDtrackerDebug::GetCandidateNumber();
2793 // The Debug Stream contains the seed
2794 TTreeSRedirector &cstreamer = *fgDebugStreamer;
2795 cstreamer << "CookLikelihood"
2796 << "EventNumber=" << eventNumber
2797 << "CandidateNumber=" << candidateNumber
2798 << "tracklet0.=" << &cseed[0]
2799 << "tracklet1.=" << &cseed[1]
2800 << "tracklet2.=" << &cseed[2]
2801 << "tracklet3.=" << &cseed[3]
2802 << "tracklet4.=" << &cseed[4]
2803 << "tracklet5.=" << &cseed[5]
2804 << "sumda=" << sumda
2805 << "chi0=" << chi2[0]
2806 << "chi1=" << chi2[1]
2807 << "likea=" << likea
2808 << "likechi2y=" << likechi2y
2809 << "likechi2z=" << likechi2z
2810 << "nclusters=" << nclusters
2811 << "likeN=" << likeN
2812 << "like=" << like
2813 << "\n";
2814 }
2815
2816 return like;
e4f2f73d 2817}
2818
eb38ed55 2819
e4f2f73d 2820
2821//____________________________________________________________________
0906e73e 2822void AliTRDtrackerV1::GetSeedingConfig(Int_t iconfig, Int_t planes[4])
e4f2f73d 2823{
41702fec 2824 //
2825 // Map seeding configurations to detector planes.
2826 //
2827 // Parameters :
2828 // iconfig : configuration index
2829 // planes : member planes of this configuration. On input empty.
2830 //
2831 // Output :
2832 // planes : contains the planes which are defining the configuration
2833 //
2834 // Detailed description
2835 //
2836 // Here is the list of seeding planes configurations together with
2837 // their topological classification:
2838 //
2839 // 0 - 5432 TQ 0
2840 // 1 - 4321 TQ 0
2841 // 2 - 3210 TQ 0
2842 // 3 - 5321 TQ 1
2843 // 4 - 4210 TQ 1
2844 // 5 - 5431 TQ 1
2845 // 6 - 4320 TQ 1
2846 // 7 - 5430 TQ 2
2847 // 8 - 5210 TQ 2
2848 // 9 - 5421 TQ 3
2849 // 10 - 4310 TQ 3
2850 // 11 - 5410 TQ 4
2851 // 12 - 5420 TQ 5
2852 // 13 - 5320 TQ 5
2853 // 14 - 5310 TQ 5
2854 //
2855 // The topologic quality is modeled as follows:
2856 // 1. The general model is define by the equation:
2857 // p(conf) = exp(-conf/2)
2858 // 2. According to the topologic classification, configurations from the same
2859 // class are assigned the agerage value over the model values.
2860 // 3. Quality values are normalized.
2861 //
2862 // The topologic quality distribution as function of configuration is given below:
2863 //Begin_Html
2864 // <img src="gif/topologicQA.gif">
2865 //End_Html
2866 //
2867
2868 switch(iconfig){
2869 case 0: // 5432 TQ 0
2870 planes[0] = 2;
2871 planes[1] = 3;
2872 planes[2] = 4;
2873 planes[3] = 5;
2874 break;
2875 case 1: // 4321 TQ 0
2876 planes[0] = 1;
2877 planes[1] = 2;
2878 planes[2] = 3;
2879 planes[3] = 4;
2880 break;
2881 case 2: // 3210 TQ 0
2882 planes[0] = 0;
2883 planes[1] = 1;
2884 planes[2] = 2;
2885 planes[3] = 3;
2886 break;
2887 case 3: // 5321 TQ 1
2888 planes[0] = 1;
2889 planes[1] = 2;
2890 planes[2] = 3;
2891 planes[3] = 5;
2892 break;
2893 case 4: // 4210 TQ 1
2894 planes[0] = 0;
2895 planes[1] = 1;
2896 planes[2] = 2;
2897 planes[3] = 4;
2898 break;
2899 case 5: // 5431 TQ 1
2900 planes[0] = 1;
2901 planes[1] = 3;
2902 planes[2] = 4;
2903 planes[3] = 5;
2904 break;
2905 case 6: // 4320 TQ 1
2906 planes[0] = 0;
2907 planes[1] = 2;
2908 planes[2] = 3;
2909 planes[3] = 4;
2910 break;
2911 case 7: // 5430 TQ 2
2912 planes[0] = 0;
2913 planes[1] = 3;
2914 planes[2] = 4;
2915 planes[3] = 5;
2916 break;
2917 case 8: // 5210 TQ 2
2918 planes[0] = 0;
2919 planes[1] = 1;
2920 planes[2] = 2;
2921 planes[3] = 5;
2922 break;
2923 case 9: // 5421 TQ 3
2924 planes[0] = 1;
2925 planes[1] = 2;
2926 planes[2] = 4;
2927 planes[3] = 5;
2928 break;
2929 case 10: // 4310 TQ 3
2930 planes[0] = 0;
2931 planes[1] = 1;
2932 planes[2] = 3;
2933 planes[3] = 4;
2934 break;
2935 case 11: // 5410 TQ 4
2936 planes[0] = 0;
2937 planes[1] = 1;
2938 planes[2] = 4;
2939 planes[3] = 5;
2940 break;
2941 case 12: // 5420 TQ 5
2942 planes[0] = 0;
2943 planes[1] = 2;
2944 planes[2] = 4;
2945 planes[3] = 5;
2946 break;
2947 case 13: // 5320 TQ 5
2948 planes[0] = 0;
2949 planes[1] = 2;
2950 planes[2] = 3;
2951 planes[3] = 5;
2952 break;
2953 case 14: // 5310 TQ 5
2954 planes[0] = 0;
2955 planes[1] = 1;
2956 planes[2] = 3;
2957 planes[3] = 5;
2958 break;
2959 }
e4f2f73d 2960}
2961
2962//____________________________________________________________________
0906e73e 2963void AliTRDtrackerV1::GetExtrapolationConfig(Int_t iconfig, Int_t planes[2])
e4f2f73d 2964{
41702fec 2965 //
2966 // Returns the extrapolation planes for a seeding configuration.
2967 //
2968 // Parameters :
2969 // iconfig : configuration index
2970 // planes : planes which are not in this configuration. On input empty.
2971 //
2972 // Output :
2973 // planes : contains the planes which are not in the configuration
2974 //
2975 // Detailed description
2976 //
2977
2978 switch(iconfig){
2979 case 0: // 5432 TQ 0
2980 planes[0] = 1;
2981 planes[1] = 0;
2982 break;
2983 case 1: // 4321 TQ 0
2984 planes[0] = 5;
2985 planes[1] = 0;
2986 break;
2987 case 2: // 3210 TQ 0
2988 planes[0] = 4;
2989 planes[1] = 5;
2990 break;
2991 case 3: // 5321 TQ 1
2992 planes[0] = 4;
2993 planes[1] = 0;
2994 break;
2995 case 4: // 4210 TQ 1
2996 planes[0] = 5;
2997 planes[1] = 3;
2998 break;
2999 case 5: // 5431 TQ 1
3000 planes[0] = 2;
3001 planes[1] = 0;
3002 break;
3003 case 6: // 4320 TQ 1
3004 planes[0] = 5;
3005 planes[1] = 1;
3006 break;
3007 case 7: // 5430 TQ 2
3008 planes[0] = 2;
3009 planes[1] = 1;
3010 break;
3011 case 8: // 5210 TQ 2
3012 planes[0] = 4;
3013 planes[1] = 3;
3014 break;
3015 case 9: // 5421 TQ 3
3016 planes[0] = 3;
3017 planes[1] = 0;
3018 break;
3019 case 10: // 4310 TQ 3
3020 planes[0] = 5;
3021 planes[1] = 2;
3022 break;
3023 case 11: // 5410 TQ 4
3024 planes[0] = 3;
3025 planes[1] = 2;
3026 break;
3027 case 12: // 5420 TQ 5
3028 planes[0] = 3;
3029 planes[1] = 1;
3030 break;
3031 case 13: // 5320 TQ 5
3032 planes[0] = 4;
3033 planes[1] = 1;
3034 break;
3035 case 14: // 5310 TQ 5
3036 planes[0] = 4;
3037 planes[1] = 2;
3038 break;
3039 }
e4f2f73d 3040}
eb38ed55 3041
3042//____________________________________________________________________
3043AliCluster* AliTRDtrackerV1::GetCluster(Int_t idx) const
3044{
41702fec 3045 Int_t ncls = fClusters->GetEntriesFast();
2f7514a6 3046 return idx >= 0 && idx < ncls ? (AliCluster*)fClusters->UncheckedAt(idx) : 0x0;
eb38ed55 3047}
3048
3b57a3f7 3049//____________________________________________________________________
3050AliTRDseedV1* AliTRDtrackerV1::GetTracklet(Int_t idx) const
3051{
41702fec 3052 Int_t ntrklt = fTracklets->GetEntriesFast();
2f7514a6 3053 return idx >= 0 && idx < ntrklt ? (AliTRDseedV1*)fTracklets->UncheckedAt(idx) : 0x0;
3b57a3f7 3054}
3055
3056//____________________________________________________________________
3057AliKalmanTrack* AliTRDtrackerV1::GetTrack(Int_t idx) const
3058{
41702fec 3059 Int_t ntrk = fTracks->GetEntriesFast();
2f7514a6 3060 return idx >= 0 && idx < ntrk ? (AliKalmanTrack*)fTracks->UncheckedAt(idx) : 0x0;
3b57a3f7 3061}
3062
bb56afff 3063//____________________________________________________________________
3064Float_t AliTRDtrackerV1::CalculateReferenceX(AliTRDseedV1 *tracklets){
41702fec 3065 //
3066 // Calculates the reference x-position for the tilted Rieman fit defined as middle
3067 // of the stack (middle between layers 2 and 3). For the calculation all the tracklets
3068 // are taken into account
3069 //
3070 // Parameters: - Array of tracklets(AliTRDseedV1)
3071 //
3072 // Output: - The reference x-position(Float_t)
3073 //
3074 Int_t nDistances = 0;
3075 Float_t meanDistance = 0.;
3076 Int_t startIndex = 5;
3077 for(Int_t il =5; il > 0; il--){
3078 if(tracklets[il].IsOK() && tracklets[il -1].IsOK()){
3079 Float_t xdiff = tracklets[il].GetX0() - tracklets[il -1].GetX0();
3080 meanDistance += xdiff;
3081 nDistances++;
3082 }
3083 if(tracklets[il].IsOK()) startIndex = il;
3084 }
3085 if(tracklets[0].IsOK()) startIndex = 0;
3086 if(!nDistances){
3087 // We should normally never get here
3088 Float_t xpos[2]; memset(xpos, 0, sizeof(Float_t) * 2);
3089 Int_t iok = 0, idiff = 0;
3090 // This attempt is worse and should be avoided:
3091 // check for two chambers which are OK and repeat this without taking the mean value
3092 // Strategy avoids a division by 0;
3093 for(Int_t il = 5; il >= 0; il--){
3094 if(tracklets[il].IsOK()){
3095 xpos[iok] = tracklets[il].GetX0();
3096 iok++;
3097 startIndex = il;
3098 }
3099 if(iok) idiff++; // to get the right difference;
3100 if(iok > 1) break;
3101 }
3102 if(iok > 1){
3103 meanDistance = (xpos[0] - xpos[1])/idiff;
3104 }
3105 else{
3106 // we have do not even have 2 layers which are OK? The we do not need to fit at all
3107 return 331.;
3108 }
3109 }
3110 else{
3111 meanDistance /= nDistances;
3112 }
3113 return tracklets[startIndex].GetX0() + (2.5 - startIndex) * meanDistance - 0.5 * (AliTRDgeometry::AmThick() + AliTRDgeometry::DrThick());
bb56afff 3114}
eb38ed55 3115
3116//_____________________________________________________________________________
3117Int_t AliTRDtrackerV1::Freq(Int_t n, const Int_t *inlist
41702fec 3118 , Int_t *outlist, Bool_t down)
eb38ed55 3119{
41702fec 3120 //
3121 // Sort eleements according occurancy
3122 // The size of output array has is 2*n
3123 //
3124
3125 if (n <= 0) {
3126 return 0;
3127 }
3128
3129 Int_t *sindexS = new Int_t[n]; // Temporary array for sorting
3130 Int_t *sindexF = new Int_t[2*n];
3131 for (Int_t i = 0; i < n; i++) {
3132 sindexF[i] = 0;
3133 }
3134
3135 TMath::Sort(n,inlist,sindexS,down);
3136
3137 Int_t last = inlist[sindexS[0]];
3138 Int_t val = last;
3139 sindexF[0] = 1;
3140 sindexF[0+n] = last;
3141 Int_t countPos = 0;
3142
3143 // Find frequency
3144 for (Int_t i = 1; i < n; i++) {
3145 val = inlist[sindexS[i]];
3146 if (last == val) {
3147 sindexF[countPos]++;
3148 }
3149 else {
3150 countPos++;
3151 sindexF[countPos+n] = val;
3152 sindexF[countPos]++;
3153 last = val;
3154 }
3155 }
3156 if (last == val) {
3157 countPos++;
3158 }
3159
3160 // Sort according frequency
3161 TMath::Sort(countPos,sindexF,sindexS,kTRUE);
3162
3163 for (Int_t i = 0; i < countPos; i++) {
3164 outlist[2*i ] = sindexF[sindexS[i]+n];
3165 outlist[2*i+1] = sindexF[sindexS[i]];
3166 }
3167
3168 delete [] sindexS;
3169 delete [] sindexF;
3170
3171 return countPos;
eb38ed55 3172
3173}
bb56afff 3174
acd241e9 3175void AliTRDtrackerV1::SetReconstructor(const AliTRDReconstructor *rec){
3176 fReconstructor = rec;
3177 if(fReconstructor->GetStreamLevel(AliTRDReconstructor::kTracker) > 1){
3178 if(!fgDebugStreamer)
3179 fgDebugStreamer = new TTreeSRedirector("TRD.TrackerDebug.root");
3180 }
3181}
3182
bb56afff 3183//_____________________________________________________________________________
3184Float_t AliTRDtrackerV1::GetChi2Y(AliTRDseedV1 *tracklets) const
3185{
41702fec 3186 // Chi2 definition on y-direction
3187
3188 Float_t chi2 = 0;
3189 for(Int_t ipl = 0; ipl < kNPlanes; ipl++){
3190 if(!tracklets[ipl].IsOK()) continue;
3191 Double_t distLayer = tracklets[ipl].GetYfit(0) - tracklets[ipl].GetYref(0);
3192 chi2 += distLayer * distLayer;
3193 }
3194 return chi2;
bb56afff 3195}
3196
d611c74f 3197//____________________________________________________________________
3198void AliTRDtrackerV1::ResetSeedTB()
3199{
3200// reset buffer for seeding time bin layers. If the time bin
3201// layers are not allocated this function allocates them
3202
3203 for(Int_t isl=0; isl<kNSeedPlanes; isl++){
3204 if(!fSeedTB[isl]) fSeedTB[isl] = new AliTRDchamberTimeBin();
3205 else fSeedTB[isl]->Clear();
3206 }
3207}
3208
bb56afff 3209//_____________________________________________________________________________
3210Float_t AliTRDtrackerV1::GetChi2Z(AliTRDseedV1 *tracklets) const
3211{
41702fec 3212 // Chi2 definition on z-direction
3213
3214 Float_t chi2 = 0;
3215 for(Int_t ipl = 0; ipl < kNPlanes; ipl++){
3216 if(!tracklets[ipl].IsOK()) continue;
3217 Double_t distLayer = tracklets[ipl].GetMeanz() - tracklets[ipl].GetZref(0);
3218 chi2 += distLayer * distLayer;
3219 }
3220 return chi2;
bb56afff 3221}
8acca6a3 3222
3223///////////////////////////////////////////////////////
3224// //
3225// Resources of class AliTRDLeastSquare //
3226// //
3227///////////////////////////////////////////////////////
3228
3229//_____________________________________________________________________________
3230AliTRDtrackerV1::AliTRDLeastSquare::AliTRDLeastSquare(){
41702fec 3231 //
3232 // Constructor of the nested class AliTRDtrackFitterLeastSquare
3233 //
3234 memset(fParams, 0, sizeof(Double_t) * 2);
3235 memset(fSums, 0, sizeof(Double_t) * 5);
3236 memset(fCovarianceMatrix, 0, sizeof(Double_t) * 3);
8acca6a3 3237
3238}
3239
3240//_____________________________________________________________________________
3241void AliTRDtrackerV1::AliTRDLeastSquare::AddPoint(Double_t *x, Double_t y, Double_t sigmaY){
41702fec 3242 //
3243 // Adding Point to the fitter
3244 //
3245 Double_t weight = 1/(sigmaY * sigmaY);
3246 Double_t &xpt = *x;
3247 // printf("Adding point x = %f, y = %f, sigma = %f\n", xpt, y, sigmaY);
3248 fSums[0] += weight;
3249 fSums[1] += weight * xpt;
3250 fSums[2] += weight * y;
3251 fSums[3] += weight * xpt * y;
3252 fSums[4] += weight * xpt * xpt;
3253 fSums[5] += weight * y * y;
8acca6a3 3254}
3255
3256//_____________________________________________________________________________
3257void AliTRDtrackerV1::AliTRDLeastSquare::RemovePoint(Double_t *x, Double_t y, Double_t sigmaY){
41702fec 3258 //
3259 // Remove Point from the sample
3260 //
3261 Double_t weight = 1/(sigmaY * sigmaY);
3262 Double_t &xpt = *x;
3263 fSums[0] -= weight;
3264 fSums[1] -= weight * xpt;
3265 fSums[2] -= weight * y;
3266 fSums[3] -= weight * xpt * y;
3267 fSums[4] -= weight * xpt * xpt;
3268 fSums[5] -= weight * y * y;
8acca6a3 3269}
3270
3271//_____________________________________________________________________________
3272void AliTRDtrackerV1::AliTRDLeastSquare::Eval(){
41702fec 3273 //
3274 // Evaluation of the fit:
3275 // Calculation of the parameters
3276 // Calculation of the covariance matrix
3277 //
3278
3279 Double_t denominator = fSums[0] * fSums[4] - fSums[1] *fSums[1];
aec26713 3280 if(denominator==0) return;
3281
41702fec 3282 // for(Int_t isum = 0; isum < 5; isum++)
3283 // printf("fSums[%d] = %f\n", isum, fSums[isum]);
3284 // printf("denominator = %f\n", denominator);
3285 fParams[0] = (fSums[2] * fSums[4] - fSums[1] * fSums[3])/ denominator;
3286 fParams[1] = (fSums[0] * fSums[3] - fSums[1] * fSums[2]) / denominator;
3287 // printf("fParams[0] = %f, fParams[1] = %f\n", fParams[0], fParams[1]);
3288
3289 // Covariance matrix
3290 fCovarianceMatrix[0] = fSums[4] - fSums[1] * fSums[1] / fSums[0];
3291 fCovarianceMatrix[1] = fSums[5] - fSums[2] * fSums[2] / fSums[0];
3292 fCovarianceMatrix[2] = fSums[3] - fSums[1] * fSums[2] / fSums[0];
8acca6a3 3293}
3294
46b6abd7 3295//_____________________________________________________________________________
3296Double_t AliTRDtrackerV1::AliTRDLeastSquare::GetFunctionValue(Double_t *xpos) const {
41702fec 3297 //
3298 // Returns the Function value of the fitted function at a given x-position
3299 //
3300 return fParams[0] + fParams[1] * (*xpos);
46b6abd7 3301}
3302
3303//_____________________________________________________________________________
3304void AliTRDtrackerV1::AliTRDLeastSquare::GetCovarianceMatrix(Double_t *storage) const {
41702fec 3305 //
3306 // Copies the values of the covariance matrix into the storage
3307 //
3308 memcpy(storage, fCovarianceMatrix, sizeof(Double_t) * 3);
46b6abd7 3309}
3310