]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliTracker.cxx
log messages updated
[u/mrichter/AliRoot.git] / STEER / AliTracker.cxx
CommitLineData
be9c5115 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
acd84897 16/* $Id$ */
fb17acd4 17
be9c5115 18//-------------------------------------------------------------------------
19// Implementation of the AliTracker class
9b83b8cc 20// that is the base for AliTPCtracker, AliITStrackerV2 and AliTRDtracker
21// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
be9c5115 22//-------------------------------------------------------------------------
116cbefd 23
be9c5115 24#include <TMath.h>
25
26#include "AliTracker.h"
27#include "AliCluster.h"
28#include "AliKalmanTrack.h"
41377c29 29#include "AliRun.h"
30#include "AliMagF.h"
31
41377c29 32extern AliRun* gAlice;
be9c5115 33
3b242889 34const AliMagF *AliTracker::fgkFieldMap=0;
35
be9c5115 36ClassImp(AliTracker)
37
3b242889 38AliTracker::AliTracker():
39 fEventN(0),
40 fStoreBarrel(1),
41 fX(0),
42 fY(0),
43 fZ(0),
44 fSigmaX(0.005),
45 fSigmaY(0.005),
46 fSigmaZ(0.010)
47{
48 //--------------------------------------------------------------------
49 // The default constructor.
50 //--------------------------------------------------------------------
51 AliMagF *field=gAlice->Field();
52 if (field==0) Fatal("AliTracker()","Can't access the field map !");
53 SetFieldMap(field);
54}
55
56void AliTracker::SetFieldMap(const AliMagF* map) {
57 //--------------------------------------------------------------------
58 //This passes the field map to the reconstruction.
59 //--------------------------------------------------------------------
60 if (map==0) ::Fatal("SetFieldMap","Can't access the field map !");
61 AliKalmanTrack::SetConvConst(1000/0.299792458/map->SolenoidField());
62 fgkFieldMap=map;
63}
64
be9c5115 65//__________________________________________________________________________
66void AliTracker::CookLabel(AliKalmanTrack *t, Float_t wrong) const {
67 //--------------------------------------------------------------------
68 //This function "cooks" a track label. If label<0, this track is fake.
69 //--------------------------------------------------------------------
70 Int_t noc=t->GetNumberOfClusters();
71 Int_t *lb=new Int_t[noc];
72 Int_t *mx=new Int_t[noc];
73 AliCluster **clusters=new AliCluster*[noc];
74
75 Int_t i;
76 for (i=0; i<noc; i++) {
77 lb[i]=mx[i]=0;
78 Int_t index=t->GetClusterIndex(i);
79 clusters[i]=GetCluster(index);
80 }
81
82 Int_t lab=123456789;
83 for (i=0; i<noc; i++) {
84 AliCluster *c=clusters[i];
85 lab=TMath::Abs(c->GetLabel(0));
86 Int_t j;
87 for (j=0; j<noc; j++) if (lb[j]==lab || mx[j]==0) break;
88 lb[j]=lab;
89 (mx[j])++;
90 }
91
92 Int_t max=0;
93 for (i=0; i<noc; i++) if (mx[i]>max) {max=mx[i]; lab=lb[i];}
94
95 for (i=0; i<noc; i++) {
96 AliCluster *c=clusters[i];
babd135a 97 //if (TMath::Abs(c->GetLabel(1)) == lab ||
98 // TMath::Abs(c->GetLabel(2)) == lab ) max++;
99 if (TMath::Abs(c->GetLabel(0)!=lab))
100 if (TMath::Abs(c->GetLabel(1)) == lab ||
101 TMath::Abs(c->GetLabel(2)) == lab ) max++;
be9c5115 102 }
103
104 if ((1.- Float_t(max)/noc) > wrong) lab=-lab;
babd135a 105 t->SetFakeRatio((1.- Float_t(max)/noc));
be9c5115 106 t->SetLabel(lab);
107
108 delete[] lb;
109 delete[] mx;
110 delete[] clusters;
111}
112
113//____________________________________________________________________________
114void AliTracker::UseClusters(const AliKalmanTrack *t, Int_t from) const {
115 //------------------------------------------------------------------
116 //This function marks clusters associated with the track.
117 //------------------------------------------------------------------
118 Int_t noc=t->GetNumberOfClusters();
119 for (Int_t i=from; i<noc; i++) {
120 Int_t index=t->GetClusterIndex(i);
121 AliCluster *c=GetCluster(index);
122 c->Use();
123 }
124}