]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliVertexerTracks.h
Adding the number of fired chips in the ITS fast OR (Domenico, Massimo)
[u/mrichter/AliRoot.git] / STEER / AliVertexerTracks.h
CommitLineData
2d57349e 1#ifndef ALIVERTEXERTRACKS_H
2#define ALIVERTEXERTRACKS_H
3/* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6
7//-------------------------------------------------------
6d8df534 8// Class for vertex determination with tracks
2d57349e 9//
10// Origin: AliITSVertexerTracks
11// A.Dainese, Padova, andrea.dainese@pd.infn.it
12// M.Masera, Torino, massimo.masera@to.infn.it
13// Moved to STEER and adapted to ESD tracks:
14// F.Prino, Torino, prino@to.infn.it
15//-------------------------------------------------------
16
17/*****************************************************************************
18 * *
6d8df534 19 * This class determines the vertex of a set of tracks. *
2d57349e 20 * Different algorithms are implemented, see data member fAlgo. *
21 * *
22 *****************************************************************************/
23
2d57349e 24#include <TObjArray.h>
fee9ef0d 25#include <TMatrixD.h>
2d57349e 26
6d8df534 27#include "AliESDVertex.h"
28#include "AliExternalTrackParam.h"
29#include "AliLog.h"
30
af885e0f 31class AliESDEvent;
2d57349e 32
33class AliVertexerTracks : public TObject {
34
35 public:
36 AliVertexerTracks();
dc3719f3 37 AliVertexerTracks(Double_t fieldkG);
2d57349e 38 virtual ~AliVertexerTracks();
39
af885e0f 40 AliESDVertex* FindPrimaryVertex(const AliESDEvent *esdEvent);
6d8df534 41 AliESDVertex* FindPrimaryVertex(TObjArray *trkArrayOrig,UShort_t *idOrig);
42 AliESDVertex* VertexForSelectedTracks(TObjArray *trkArray,UShort_t *id,
43 Bool_t optUseFitter=kTRUE,
44 Bool_t optPropagate=kTRUE);
45 AliESDVertex* VertexForSelectedESDTracks(TObjArray *trkArray,
46 Bool_t optUseFitter=kTRUE,
47 Bool_t optPropagate=kTRUE);
48 AliESDVertex* RemoveTracksFromVertex(AliESDVertex *inVtx,
49 TObjArray *trkArray,UShort_t *id,
50 Float_t *diamondxy);
a00021a7 51 void SetITSMode(Double_t dcacut=0.1,
52 Double_t dcacutIter0=0.1,
53 Double_t maxd0z0=0.5,
54 Int_t minCls=5,
55 Int_t mintrks=1,
56 Double_t nsigma=3.,
57 Double_t mindetfitter=100.,
58 Double_t maxtgl=1000.,
59 Double_t fidR=3.,
60 Double_t fidZ=30.);
61 void SetTPCMode(Double_t dcacut=0.1,
62 Double_t dcacutIter0=1.0,
63 Double_t maxd0z0=5.0,
64 Int_t minCls=10,
65 Int_t mintrks=1,
66 Double_t nsigma=3.,
67 Double_t mindetfitter=0.1,
68 Double_t maxtgl=1.5,
69 Double_t fidR=3.,
70 Double_t fidZ=30.);
71 void SetCuts(Double_t *cuts);
fee9ef0d 72 void SetConstraintOff() { fConstraint=kFALSE; return; }
73 void SetConstraintOn() { fConstraint=kTRUE; return; }
fee9ef0d 74 void SetDCAcut(Double_t maxdca) { fDCAcut=maxdca; return; }
f09c879d 75 void SetDCAcutIter0(Double_t maxdca) { fDCAcutIter0=maxdca; return; }
fee9ef0d 76 void SetFinderAlgorithm(Int_t opt=1) { fAlgo=opt; return; }
6d8df534 77 void SetITSrefitRequired() { fITSrefit=kTRUE; return; }
50ff0bcd 78 void SetITSrefitNotRequired() { fITSrefit=kFALSE; return; }
6b29d399 79 void SetFiducialRZ(Double_t r=3,Double_t z=30) { fFiducialR=r; fFiducialZ=z; return; }
fee9ef0d 80 void SetMaxd0z0(Double_t maxd0z0=0.5) { fMaxd0z0=maxd0z0; return; }
6b29d399 81 void SetMinClusters(Int_t n=5) { fMinClusters=n; return; }
6d8df534 82 void SetMinTracks(Int_t n=1) { fMinTracks=n; return; }
fee9ef0d 83 void SetNSigmad0(Double_t n=3) { fNSigma=n; return; }
84 Double_t GetNSigmad0() const { return fNSigma; }
f09c879d 85 void SetMinDetFitter(Double_t mindet=100.) { fMinDetFitter=mindet; return; }
86 void SetMaxTgl(Double_t maxtgl=1.) { fMaxTgl=maxtgl; return; }
fee9ef0d 87 void SetOnlyFitter() { if(!fConstraint) AliFatal("Set constraint first!");
88 fOnlyFitter=kTRUE; return; }
ec1be5d5 89 void SetSkipTracks(Int_t n,Int_t *skipped);
3b768a1d 90 void SetVtxStart(Double_t x=0,Double_t y=0,Double_t z=0)
07680cae 91 { fNominalPos[0]=x; fNominalPos[1]=y; fNominalPos[2]=z; return; }
146c29df 92 void SetVtxStartSigma(Double_t sx=3.,Double_t sy=3.,Double_t sz=15.)
50ff0bcd 93 { fNominalCov[0]=sx*sx; fNominalCov[2]=sy*sy; fNominalCov[5]=sz*sz;
94 fNominalCov[1]=0.; fNominalCov[3]=0.; fNominalCov[4]=0.; return; }
95 void SetVtxStart(AliESDVertex *vtx);
71d84967 96 static Double_t GetStrLinMinDist(Double_t *p0,Double_t *p1,Double_t *x0);
97 static Double_t GetDeterminant3X3(Double_t matr[][3]);
98 static void GetStrLinDerivMatrix(Double_t *p0,Double_t *p1,Double_t (*m)[3],Double_t *d);
99 static void GetStrLinDerivMatrix(Double_t *p0,Double_t *p1,Double_t *sigmasq,Double_t (*m)[3],Double_t *d);
146c29df 100 static AliESDVertex TrackletVertexFinder(TClonesArray *lines, Int_t optUseWeights=0);
dc3719f3 101 void SetFieldkG(Double_t field=-999.) { fFieldkG=field; return; }
102 Double_t GetFieldkG() const {
103 if(fFieldkG<-99.) AliFatal("Field value not set");
104 return fFieldkG; }
3b768a1d 105 void SetNSigmaForUi00(Double_t n=1.5) { fnSigmaForUi00=n; return; }
106 Double_t GetNSigmaForUi00() const { return fnSigmaForUi00; }
07680cae 107
2d57349e 108 protected:
fee9ef0d 109 void HelixVertexFinder();
0c69be49 110 void OneTrackVertFinder();
6d8df534 111 Int_t PrepareTracks(TObjArray &trkArrayOrig,UShort_t *idOrig,
112 Int_t optImpParCut);
f09c879d 113 Bool_t PropagateTrackTo(AliExternalTrackParam *track,
114 Double_t xToGo);
6d8df534 115 Bool_t TrackToPoint(AliExternalTrackParam *t,
0bf2e2b4 116 TMatrixD &ri,TMatrixD &wWi,
117 Bool_t uUi3by3=kFALSE) const;
2d57349e 118 void VertexFinder(Int_t optUseWeights=0);
6d8df534 119 void VertexFitter();
fee9ef0d 120 void StrLinVertexFinderMinDist(Int_t optUseWeights=0);
6d8df534 121 void TooFewTracks();
eae1677e 122
146c29df 123 AliESDVertex fVert; // vertex after vertex finder
ec1be5d5 124 AliESDVertex *fCurrentVertex; // ESD vertex after fitter
f09c879d 125 UShort_t fMode; // 0 ITS+TPC; 1 TPC
dc3719f3 126 Double_t fFieldkG; // z component of field (kGauss)
07680cae 127 Double_t fNominalPos[3]; // initial knowledge on vertex position
50ff0bcd 128 Double_t fNominalCov[6]; // initial knowledge on vertex position
f09c879d 129 TObjArray fTrkArraySel; // array with tracks to be processed
130 UShort_t *fIdSel; // IDs of the tracks (AliESDtrack::GetID())
131 Int_t *fTrksToSkip; // track IDs to be skipped for find and fit
132 Int_t fNTrksToSkip; // number of tracks to be skipped
fee9ef0d 133 Bool_t fConstraint; // true when "mean vertex" was set in
134 // fNominal ... and must be used in the fit
135 Bool_t fOnlyFitter; // primary with one fitter shot only
136 // (use only with beam constraint)
2d57349e 137 Int_t fMinTracks; // minimum number of tracks
6b29d399 138 Int_t fMinClusters; // minimum number of ITS or TPC clusters per track
2d57349e 139 Double_t fDCAcut; // maximum DCA between 2 tracks used for vertex
f09c879d 140 Double_t fDCAcutIter0; // maximum DCA between 2 tracks used for vertex
07680cae 141 Double_t fNSigma; // number of sigmas for d0 cut in PrepareTracks()
43c9dae1 142 Double_t fMaxd0z0; // value for sqrt(d0d0+z0z0) cut
fee9ef0d 143 // in PrepareTracks(1) if fConstraint=kFALSE
f09c879d 144 Double_t fMinDetFitter; // minimum determinant to try to invertex matrix
145 Double_t fMaxTgl; // maximum tgl of tracks
50ff0bcd 146 Bool_t fITSrefit; // if kTRUE (default), use only kITSrefit tracks
147 // if kFALSE, use all tracks (also TPC only)
6b29d399 148 Double_t fFiducialR; // radius of fiducial cylinder for tracks
149 Double_t fFiducialZ; // length of fiducial cylinder for tracks
3b768a1d 150 Double_t fnSigmaForUi00; // n. sigmas from finder in TrackToPoint
f09c879d 151 Int_t fAlgo; // option for vertex finding algorythm
2d57349e 152 // fAlgo=1 (default) finds minimum-distance point among all selected tracks
153 // approximated as straight lines
154 // and uses errors on track parameters as weights
155 // fAlgo=2 finds minimum-distance point among all the selected tracks
156 // approximated as straight lines
157 // fAlgo=3 finds the average point among DCA points of all pairs of tracks
158 // treated as helices
159 // fAlgo=4 finds the average point among DCA points of all pairs of tracks
160 // approximated as straight lines
161 // and uses errors on track parameters as weights
162 // fAlgo=5 finds the average point among DCA points of all pairs of tracks
163 // approximated as straight lines
164
3b768a1d 165
fe12e09c 166 private:
167 AliVertexerTracks(const AliVertexerTracks & source);
168 AliVertexerTracks & operator=(const AliVertexerTracks & source);
2d57349e 169
919e537f 170 ClassDef(AliVertexerTracks,12) // 3D Vertexing with tracks
2d57349e 171};
172
173#endif
43c9dae1 174