]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - ITS/AliITSVertexer3D.h
Updated laser calibration object
[u/mrichter/AliRoot.git] / ITS / AliITSVertexer3D.h
... / ...
CommitLineData
1#ifndef ALIITSVERTEXER3D_H
2#define ALIITSVERTEXER3D_H
3
4#include<AliITSVertexer.h>
5
6///////////////////////////////////////////////////////////////////
7// //
8// Class for primary vertex finding (3D reconstruction) //
9// //
10///////////////////////////////////////////////////////////////////
11
12/* $Id$ */
13
14#include <TClonesArray.h>
15#include <AliESDVertex.h>
16
17class AliITSVertexer3D : public AliITSVertexer {
18
19 public:
20
21 AliITSVertexer3D();
22 virtual ~AliITSVertexer3D();
23 virtual AliESDVertex* FindVertexForCurrentEvent(TTree *itsClusterTree);
24 AliESDVertex GetVertex3D() const {return fVert3D;}
25 virtual void PrintStatus() const;
26 void SetWideFiducialRegion(Float_t dz = 14.0, Float_t dr=2.5){
27 SetCoarseMaxRCut(dr);
28 SetZCutDiamond(dz);
29 }
30 void SetNarrowFiducialRegion(Float_t dz = 0.5, Float_t dr=0.5){
31 SetMaxRCut(dr);
32 SetMaxZCut(dz);
33 }
34 void SetDeltaPhiCuts(Float_t dphiloose=0.5, Float_t dphitight=0.01){
35 SetCoarseDiffPhiCut(dphiloose);
36 SetDiffPhiMax(dphitight);
37 }
38 void SetCoarseDiffPhiCut(Float_t dphi = 0.5){fCoarseDiffPhiCut=dphi;}
39 void SetCoarseMaxRCut(Float_t rad = 2.5){fCoarseMaxRCut=rad;}
40 void SetMaxRCut(Float_t rad = 0.5){fMaxRCut=rad;}
41 void SetZCutDiamond(Float_t zcut = 14.0){fZCutDiamond=zcut;}
42 void SetMaxZCut(Float_t dz = 0.5){fMaxZCut=dz;}
43 void SetDCACut(Float_t dca=0.1){fDCAcut=dca;}
44 void SetDiffPhiMax(Float_t pm = 0.01){fDiffPhiMax = pm;}
45 void SetMeanPSelTracks(Float_t pGeV=0.875){fMeanPSelTrk = pGeV;}
46 void SetMeanPtSelTracks(Float_t ptGeV=0.630){fMeanPtSelTrk = ptGeV;}
47 void SetMeanPPtSelTracks(Float_t fieldTesla);
48
49protected:
50 AliITSVertexer3D(const AliITSVertexer3D& vtxr);
51 AliITSVertexer3D& operator=(const AliITSVertexer3D& /* vtxr */);
52 Int_t FindTracklets(TTree *itsClusterTree, Int_t optCuts);
53 Int_t Prepare3DVertex(Int_t optCuts);
54 void ResetVert3D();
55
56
57 TClonesArray fLines; //! array of tracklets
58 AliESDVertex fVert3D; // 3D Vertex
59 Float_t fCoarseDiffPhiCut; // loose cut on DeltaPhi for RecPoint matching
60 Float_t fCoarseMaxRCut; // cut on tracklet DCA to Z axis
61 Float_t fMaxRCut; // cut on tracklet DCA to beam axis
62 Float_t fZCutDiamond; // cut on +-Z of the diamond
63 Float_t fMaxZCut; // cut on Z distance from estimated vertex
64 Float_t fDCAcut; // cut on tracklet to tracklet and tracklet to vertex DCA
65 Float_t fDiffPhiMax; // Maximum delta phi allowed among corr. pixels
66 Float_t fMeanPSelTrk; // GeV, mean P for tracks with dphi<0.01 rad
67 Float_t fMeanPtSelTrk; // GeV, mean Pt for tracks with dphi<0.01 rad
68
69 ClassDef(AliITSVertexer3D,6);
70
71};
72
73#endif