]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliTracker.cxx
Simulation and reconstruction of laser tracks (G.Renault)
[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//-------------------------------------------------------------------------
7d0f8548 23#include <TClass.h>
be9c5115 24#include <TMath.h>
25
26#include "AliTracker.h"
c84a5e9e 27#include "AliCluster.h"
7d0f8548 28#include "AliKalmanTrack.h"
41377c29 29
7d0f8548 30Bool_t AliTracker::fgUniformField=kTRUE;
31Double_t AliTracker::fgBz=0.;
3b242889 32const AliMagF *AliTracker::fgkFieldMap=0;
33
be9c5115 34ClassImp(AliTracker)
35
3b242889 36AliTracker::AliTracker():
3b242889 37 fX(0),
38 fY(0),
39 fZ(0),
40 fSigmaX(0.005),
41 fSigmaY(0.005),
42 fSigmaZ(0.010)
43{
44 //--------------------------------------------------------------------
45 // The default constructor.
46 //--------------------------------------------------------------------
c9b9861a 47 if (!fgkFieldMap) AliWarning("Field map is not set. Call AliTracker::SetFieldMap before creating a tracker!");
3b242889 48}
49
7d0f8548 50void AliTracker::SetFieldMap(const AliMagF* map, Bool_t uni) {
51 //--------------------------------------------------------------------
52 //This passes the field map to the reconstruction.
53 //--------------------------------------------------------------------
54 if (map==0) AliFatalClass("Can't access the field map !");
55
729c2fa2 56 if (fgkFieldMap) {
57 AliWarningClass("The magnetic field map has been already set !");
58 return;
59 }
60
7d0f8548 61 fgUniformField=uni;
62 fgkFieldMap=map;
63
64 //Float_t r[3]={0.,0.,0.},b[3]; map->Field(r,b);
65 //fgBz= - b[2];
66
67 fgBz=map->SolenoidField();
68
69}
70
be9c5115 71//__________________________________________________________________________
72void AliTracker::CookLabel(AliKalmanTrack *t, Float_t wrong) const {
73 //--------------------------------------------------------------------
74 //This function "cooks" a track label. If label<0, this track is fake.
75 //--------------------------------------------------------------------
76 Int_t noc=t->GetNumberOfClusters();
77 Int_t *lb=new Int_t[noc];
78 Int_t *mx=new Int_t[noc];
79 AliCluster **clusters=new AliCluster*[noc];
80
81 Int_t i;
82 for (i=0; i<noc; i++) {
83 lb[i]=mx[i]=0;
84 Int_t index=t->GetClusterIndex(i);
85 clusters[i]=GetCluster(index);
86 }
87
88 Int_t lab=123456789;
89 for (i=0; i<noc; i++) {
90 AliCluster *c=clusters[i];
91 lab=TMath::Abs(c->GetLabel(0));
92 Int_t j;
93 for (j=0; j<noc; j++) if (lb[j]==lab || mx[j]==0) break;
94 lb[j]=lab;
95 (mx[j])++;
96 }
97
98 Int_t max=0;
99 for (i=0; i<noc; i++) if (mx[i]>max) {max=mx[i]; lab=lb[i];}
100
101 for (i=0; i<noc; i++) {
102 AliCluster *c=clusters[i];
babd135a 103 //if (TMath::Abs(c->GetLabel(1)) == lab ||
104 // TMath::Abs(c->GetLabel(2)) == lab ) max++;
105 if (TMath::Abs(c->GetLabel(0)!=lab))
106 if (TMath::Abs(c->GetLabel(1)) == lab ||
107 TMath::Abs(c->GetLabel(2)) == lab ) max++;
be9c5115 108 }
109
110 if ((1.- Float_t(max)/noc) > wrong) lab=-lab;
babd135a 111 t->SetFakeRatio((1.- Float_t(max)/noc));
be9c5115 112 t->SetLabel(lab);
113
114 delete[] lb;
115 delete[] mx;
116 delete[] clusters;
117}
118
119//____________________________________________________________________________
120void AliTracker::UseClusters(const AliKalmanTrack *t, Int_t from) const {
121 //------------------------------------------------------------------
122 //This function marks clusters associated with the track.
123 //------------------------------------------------------------------
124 Int_t noc=t->GetNumberOfClusters();
125 for (Int_t i=from; i<noc; i++) {
126 Int_t index=t->GetClusterIndex(i);
127 AliCluster *c=GetCluster(index);
128 c->Use();
129 }
130}