]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITStrackerMI.h
Using AliITSgeomTGeo in the constructors of V2 and MI trackers (Jouri)
[u/mrichter/AliRoot.git] / ITS / AliITStrackerMI.h
1 #ifndef ALIITSTRACKERMI_H
2 #define ALIITSTRACKERMI_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 //-------------------------------------------------------------------------
9 //                          ITS tracker
10 //     reads AliITSclusterMI clusters and creates AliITStrackMI tracks
11 //           Origin: Marian Ivanov, CERN, Marian.Ivanov@cern.ch
12 //-------------------------------------------------------------------------
13
14 class TTree;
15 class TTreeSRedirector;
16 class AliESD;
17 class AliHelix;
18 class AliITSgeomTGeo;
19
20 #include <TObjArray.h>
21 #include "AliITSRecPoint.h"
22 #include "AliITStrackMI.h"
23 #include "AliTracker.h"
24
25 //-------------------------------------------------------------------------
26 class AliITStrackerMI : public AliTracker {
27 public:
28   AliITStrackerMI();
29   AliITStrackerMI(const AliITSgeomTGeo *geom);
30   virtual ~AliITStrackerMI();
31   AliCluster *GetCluster(Int_t index) const;
32   virtual Bool_t GetTrackPoint(Int_t index, AliTrackPoint& p) const;
33   AliITSRecPoint *GetClusterLayer(Int_t layn, Int_t ncl) const
34                         {return fgLayers[layn].GetCluster(ncl);}
35   Int_t GetNumberOfClustersLayer(Int_t layn) const 
36                         {return fgLayers[layn].GetNumberOfClusters();}
37   Int_t LoadClusters(TTree *cf);
38   void UnloadClusters();
39   Int_t Clusters2Tracks(AliESD *event);
40   Int_t PropagateBack(AliESD *event);
41   Int_t RefitInward(AliESD *event);
42   Bool_t RefitAt(Double_t x, AliITStrackMI *seed, 
43                  const AliITStrackMI *t, Bool_t extra=kFALSE);
44   Bool_t RefitAt(Double_t x, AliITStrackMI *seed, const Int_t *clindex);
45   void SetupFirstPass(Int_t *flags, Double_t *cuts=0);
46   void SetupSecondPass(Int_t *flags, Double_t *cuts=0);
47
48   void SetLastLayerToTrackTo(Int_t l=0) {fLastLayerToTrackTo=l;} 
49   void SetLayersNotToSkip(Int_t *l);
50   void UseClusters(const AliKalmanTrack *t, Int_t from=0) const;
51   void GetNTeor(Int_t layer, const AliITSRecPoint* cl, Float_t theta, Float_t phi, Float_t &ny, Float_t &nz);
52   Int_t  GetError(Int_t layer, const AliITSRecPoint*cl, Float_t theta, Float_t phi, Float_t expQ, Float_t &erry, Float_t &errz);
53
54   void  GetDCASigma(AliITStrackMI* track, Float_t & sigmarfi, Float_t &sigmaz);
55   Double_t GetPredictedChi2MI(AliITStrackMI* track, const AliITSRecPoint *cluster,Int_t layer);
56   Int_t UpdateMI(AliITStrackMI* track, const AliITSRecPoint* cl,Double_t chi2,Int_t layer) const;
57   class AliITSdetector { 
58   public:
59     AliITSdetector():fR(0),fPhi(0),fSinPhi(0),fCosPhi(0),fYmin(0),fYmax(0),fZmin(0),fZmax(0){}
60     AliITSdetector(Double_t r,Double_t phi):fR(r),fPhi(phi),fSinPhi(TMath::Sin(phi)),fCosPhi(TMath::Cos(phi)),fYmin(10000),fYmax(-1000),fZmin(10000),fZmax(-1000) {}
61     inline void GetGlobalXYZ( const AliITSRecPoint *cl, Double_t xyz[3]) const;
62     Double_t GetR()   const {return fR;}
63     Double_t GetPhi() const {return fPhi;}
64     Double_t GetYmin() const {return fYmin;}
65     Double_t GetYmax() const {return fYmax;}
66     Double_t GetZmin() const {return fZmin;}
67     Double_t GetZmax() const {return fZmax;}
68     void SetYmin(Double_t min) {fYmin = min;}
69     void SetYmax(Double_t max) {fYmax = max;}
70     void SetZmin(Double_t min) {fZmin = min;}
71     void SetZmax(Double_t max) {fZmax = max;}
72   private:
73     Double_t fR;    // polar coordinates 
74     Double_t fPhi;  // of this detector
75     Double_t fSinPhi; // sin of phi;
76     Double_t fCosPhi; // cos of phi 
77     Double_t fYmin;   //  local y minimal
78     Double_t fYmax;   //  local max y
79     Double_t fZmin;   //  local z min
80     Double_t fZmax;   //  local z max
81   };
82
83   class AliITSlayer {
84   public:
85     AliITSlayer();
86     AliITSlayer(Double_t r, Double_t p, Double_t z, Int_t nl, Int_t nd);
87    ~AliITSlayer();
88     Int_t InsertCluster(AliITSRecPoint *c);
89     void  SortClusters();
90     void ResetClusters();
91     void ResetWeights();
92     void SelectClusters(Double_t zmi,Double_t zma,Double_t ymi,Double_t yma);
93     const AliITSRecPoint *GetNextCluster(Int_t &ci);
94     void ResetRoad();
95     Double_t GetRoad() const {return fRoad;}
96     Double_t GetR() const {return fR;}
97     Int_t FindClusterIndex(Float_t z) const;
98     AliITSRecPoint *GetCluster(Int_t i) const {return i<fN? fClusters[i]:0;} 
99     Float_t         *GetWeight(Int_t i)  {return i<fN ?&fClusterWeight[i]:0;}
100     AliITSdetector &GetDetector(Int_t n) const { return fDetectors[n]; }
101     Int_t FindDetectorIndex(Double_t phi, Double_t z) const;
102     Double_t GetThickness(Double_t y, Double_t z, Double_t &x0) const;
103     Int_t InRoad() const ;
104     Int_t GetNumberOfClusters() const {return fN;}
105     Int_t GetNladders() const {return fNladders;}
106     Int_t GetNdetectors() const {return fNdetectors;}
107     Int_t GetSkip() const {return fSkip;}
108     void  SetSkip(Int_t skip){fSkip=skip;}
109     void IncAccepted(){fAccepted++;}
110     Int_t GetAccepted() const {return fAccepted;}    
111     Int_t GetClusterTracks(Int_t i, Int_t j) const {return fClusterTracks[i][j];}
112     void SetClusterTracks(Int_t i, Int_t j, Int_t c) {fClusterTracks[i][j]=c;}
113   protected:
114     AliITSlayer(const AliITSlayer& layer);
115     AliITSlayer & operator=(const AliITSlayer& layer){
116       this->~AliITSlayer();new(this) AliITSlayer(layer);
117       return *this;}
118     Double_t fR;                // mean radius of this layer
119     Double_t fPhiOffset;        // offset of the first detector in Phi
120     Int_t fNladders;            // number of ladders
121     Double_t fZOffset;          // offset of the first detector in Z
122     Int_t fNdetectors;          // detectors/ladder
123     AliITSdetector *fDetectors; // array of detectors
124     Int_t fN;                   // number of clusters
125     AliITSRecPoint *fClusters[kMaxClusterPerLayer]; // pointers to clusters
126     Int_t        fClusterIndex[kMaxClusterPerLayer]; // pointers to clusters
127     Float_t fY[kMaxClusterPerLayer];                // y position of the clusters      
128     Float_t fZ[kMaxClusterPerLayer];                // z position of the clusters      
129     Float_t fYB[2];                                       // ymin and ymax
130     //
131     AliITSRecPoint *fClusters5[6][kMaxClusterPerLayer5]; // pointers to clusters -     slice in y
132     Int_t        fClusterIndex5[6][kMaxClusterPerLayer5]; // pointers to clusters -     slice in y    
133     Float_t fY5[6][kMaxClusterPerLayer5];                // y position of the clusters  slice in y    
134     Float_t fZ5[6][kMaxClusterPerLayer5];                // z position of the clusters  slice in y 
135     Int_t fN5[6];                                       // number of cluster in slice
136     Float_t fDy5;                                       //delta y
137     Float_t fBy5[6][2];                                    //slice borders
138     //
139     AliITSRecPoint *fClusters10[11][kMaxClusterPerLayer10]; // pointers to clusters -     slice in y
140     Int_t        fClusterIndex10[11][kMaxClusterPerLayer10]; // pointers to clusters -     slice in y    
141     Float_t fY10[11][kMaxClusterPerLayer10];                // y position of the clusters  slice in y    
142     Float_t fZ10[11][kMaxClusterPerLayer10];                // z position of the clusters  slice in y 
143     Int_t fN10[11];                                       // number of cluster in slice
144     Float_t fDy10;                                        // delta y
145     Float_t fBy10[11][2];                                 // slice borders
146     //
147     AliITSRecPoint *fClusters20[21][kMaxClusterPerLayer20]; // pointers to clusters -     slice in y
148     Int_t        fClusterIndex20[21][kMaxClusterPerLayer20]; // pointers to clusters -     slice in y    
149     Float_t fY20[21][kMaxClusterPerLayer20];                // y position of the clusters  slice in y    
150     Float_t fZ20[21][kMaxClusterPerLayer20];                // z position of the clusters  slice in y 
151     Int_t fN20[21];                                       // number of cluster in slice
152     Float_t fDy20;                                        //delta y 
153     Float_t fBy20[21][2];                                 //slice borders
154     //
155     AliITSRecPoint** fClustersCs;                         //clusters table in current slice
156     Int_t   *fClusterIndexCs;                             //cluster index in current slice 
157     Float_t *fYcs;                                        //y position in current slice
158     Float_t *fZcs;                                        //z position in current slice
159     Int_t    fNcs;                                        //number of clusters in current slice    
160     Int_t fCurrentSlice;                                  //current slice
161     //
162     Float_t  fClusterWeight[kMaxClusterPerLayer]; // probabilistic weight of the cluster
163     Int_t    fClusterTracks[4][kMaxClusterPerLayer]; //tracks registered to given cluster
164     Float_t fZmax;      //    edges
165     Float_t fYmin;      //   of  the
166     Float_t fYmax;      //   "window"
167     Int_t fI;            // index of the current cluster within the "window"
168     Int_t fImax;            // index of the last cluster within the "window"    
169     Int_t fSkip;     // indicates possibility to skip cluster
170     Int_t fAccepted;     // accept indicator 
171     Double_t fRoad;      // road defined by the cluster density
172   };
173   AliITStrackerMI::AliITSlayer    & GetLayer(Int_t layer) const;
174   AliITStrackerMI::AliITSdetector & GetDetector(Int_t layer, Int_t n) const {return GetLayer(layer).GetDetector(n); }
175
176 protected:
177   Int_t GetNearestLayer(const Double_t *xr) const;  //get nearest upper layer close to the point xr
178   void FindV02(AliESD *event);  //try to find V0
179   void RefitV02(AliESD *event);  //try to refit  V0's
180   void UpdateTPCV0(AliESD *event);  //try to update, or reject TPC  V0s
181   void CookLabel(AliKalmanTrack *t,Float_t wrong) const;
182   void CookLabel(AliITStrackMI *t,Float_t wrong) const;
183   Double_t GetEffectiveThickness(Double_t y, Double_t z) const;
184   void FollowProlongationTree(AliITStrackMI * otrack, Int_t esdindex, Bool_t constrain);
185   void ResetBestTrack() {
186      fBestTrack.~AliITStrackMI();
187      new(&fBestTrack) AliITStrackMI(fTrackToFollow);
188   }
189   void ResetTrackToFollow(const AliITStrackMI &t) {
190      fTrackToFollow.~AliITStrackMI();
191      new(&fTrackToFollow) AliITStrackMI(t);
192   }
193   void CookdEdx(AliITStrackMI* track);
194   Double_t GetNormalizedChi2(AliITStrackMI * track, Int_t mode);
195   Double_t GetTruncatedChi2(AliITStrackMI * track, Float_t fac);
196   Double_t NormalizedChi2(AliITStrackMI * track, Int_t layer);
197   Double_t GetInterpolatedChi2(AliITStrackMI * forwardtrack, AliITStrackMI * backtrack);  
198   Double_t GetMatchingChi2(AliITStrackMI * track1, AliITStrackMI * track2);
199   Double_t GetDeadZoneProbability(Double_t zpos, Double_t zerr);
200
201   Float_t    *GetWeight(Int_t index);
202   void AddTrackHypothesys(AliITStrackMI * track, Int_t esdindex);
203   void SortTrackHypothesys(Int_t esdindex, Int_t maxcut, Int_t mode);
204   AliITStrackMI * GetBestHypothesys(Int_t esdindex, AliITStrackMI * original, Int_t checkmax); 
205   void  GetBestHypothesysMIP(TObjArray &itsTracks); 
206   void RegisterClusterTracks(AliITStrackMI* track, Int_t id);
207   void UnRegisterClusterTracks(AliITStrackMI* track, Int_t id);
208   Float_t GetNumberOfSharedClusters(AliITStrackMI* track,Int_t id, Int_t list[6], AliITSRecPoint *clist[6]);
209   Int_t GetOverlapTrack(AliITStrackMI *track, Int_t trackID, Int_t &shared, Int_t clusterlist[6], Int_t overlist[6]);
210   AliITStrackMI * GetBest2Tracks(Int_t trackID1, Int_t treackID2, Float_t th0, Float_t th1);
211   Float_t  * GetErrY(Int_t trackindex) const {return &fCoeficients[trackindex*48];}
212   Float_t  * GetErrZ(Int_t trackindex) const {return &fCoeficients[trackindex*48+12];}
213   Float_t  * GetNy(Int_t trackindex) const {return &fCoeficients[trackindex*48+24];}
214   Float_t  * GetNz(Int_t trackindex) const {return &fCoeficients[trackindex*48+36];}
215   void       SignDeltas( TObjArray *ClusterArray, Float_t zv);
216   void MakeCoeficients(Int_t ntracks);
217   void UpdateESDtrack(AliITStrackMI* track, ULong_t flags) const;
218   Int_t fI;                              // index of the current layer
219   static AliITSlayer fgLayers[kMaxLayer];// ITS layers
220   AliITStrackMI fTracks[kMaxLayer];      // track estimations at the ITS layers
221   AliITStrackMI fBestTrack;              // "best" track 
222   AliITStrackMI fTrackToFollow;          // followed track
223   TObjArray     fTrackHypothesys;        // ! array with track hypothesys- ARRAY is the owner of tracks- MI
224   TObjArray     fBestHypothesys;         // ! array with track hypothesys- ARRAY is the owner of tracks- MI
225   TObjArray     fOriginal;               // ! array with seeds from the TPC
226   Int_t         fBestTrackIndex[100000]; // ! index of the best track
227   Int_t         fCurrentEsdTrack;        // ! current esd track           - MI
228   Int_t fPass;                           // current pass through the data 
229   Int_t fConstraint[2];                  // constraint flags
230   Bool_t fAfterV0;                       //indicates V0 founded
231   Int_t fLayersNotToSkip[kMaxLayer];     // layer masks
232   Int_t fLastLayerToTrackTo;             // the innermost layer to track to
233   Float_t * fCoeficients;                //! working array with errors and mean cluser shape
234   AliESD  * fEsd;                        //! pointer to the ESD event
235   TTreeSRedirector *fDebugStreamer;     //!debug streamer
236 private:
237   AliITStrackerMI(const AliITStrackerMI &tracker);
238   AliITStrackerMI & operator=(const AliITStrackerMI &tracker);
239   ClassDef(AliITStrackerMI,2)   //ITS tracker MI
240 };
241
242
243
244
245 /////////////////////////////////////////////////////////
246 /////////////////////////////////////////////////////////
247 /////////////////////////////////////////////////////////
248
249
250
251
252
253 inline void AliITStrackerMI::SetupFirstPass(Int_t *flags, Double_t *cuts) {
254   // This function sets up flags and cuts for the first tracking pass   
255   //
256   //   flags[0] - vertex constaint flag                                
257   //              negative means "skip the pass"                        
258   //              0        means "no constraint"                        
259   //              positive means "normal constraint"                    
260
261    fConstraint[0]=flags[0];
262    if (cuts==0) return;
263 }
264
265 inline void AliITStrackerMI::SetupSecondPass(Int_t *flags, Double_t *cuts) {
266   // This function sets up flags and cuts for the second tracking pass   
267   //
268   //   flags[0] - vertex constaint flag                                
269   //              negative means "skip the pass"                        
270   //              0        means "no constraint"                        
271   //              positive means "normal constraint"                    
272
273    fConstraint[1]=flags[0];
274    if (cuts==0) return;
275 }
276
277 inline void AliITStrackerMI::CookLabel(AliKalmanTrack *t,Float_t wrong) const {
278   //--------------------------------------------------------------------
279   //This function "cooks" a track label. If label<0, this track is fake.
280   //--------------------------------------------------------------------
281    Int_t tpcLabel=t->GetLabel();
282    if (tpcLabel<0) return;
283    AliTracker::CookLabel(t,wrong);
284    if (tpcLabel!=TMath::Abs(t->GetLabel())){
285      t->SetFakeRatio(1.);
286    }
287    if (tpcLabel !=t->GetLabel()) {
288      t->SetLabel(-tpcLabel);      
289    }
290 }
291
292 inline Double_t AliITStrackerMI::NormalizedChi2(AliITStrackMI * track, Int_t layer)
293 {
294   //--------------------------------------------------------------------
295   //get normalize chi2
296   //--------------------------------------------------------------------
297   track->SetNormChi2(layer,2.*track->GetNSkipped()+0.25*track->GetNDeadZone()+track->GetdEdxMismatch()+track->GetChi2()/
298   //track->fNormChi2[layer] = 2.*track->fNSkipped+0.25*track->fNDeadZone+track->fdEdxMismatch+track->fChi22/
299     TMath::Max(double(track->GetNumberOfClusters()-track->GetNSkipped()),
300                1./(1.+track->GetNSkipped())));
301   return track->GetNormChi2(layer);
302 }
303 inline void  AliITStrackerMI::AliITSdetector::GetGlobalXYZ(const AliITSRecPoint *cl, Double_t xyz[3]) const
304 {
305   //
306   // get cluster coordinates in global cooordinate 
307   //
308   xyz[2] = cl->GetZ();
309   xyz[0] = fR*fCosPhi - cl->GetY()*fSinPhi;
310   xyz[1] = fR*fSinPhi + cl->GetY()*fCosPhi;
311 }
312 #endif