1 #ifndef ALIITSVERTEXER_H
2 #define ALIITSVERTEXER_H
4 #include<AliVertexer.h>
5 #include "AliITSDetTypeRec.h"
7 ///////////////////////////////////////////////////////////////////
9 // Base class for primary vertex reconstruction for ITS //
11 ///////////////////////////////////////////////////////////////////
17 class AliITSVertexer : public AliVertexer {
20 // default constructor
22 virtual ~AliITSVertexer();
23 virtual AliESDVertex *FindVertexForCurrentEvent(TTree *itsClusterTree)=0;
24 virtual void PrintStatus() const = 0;
26 virtual void ResetVertex();
27 void FindMultiplicity(TTree *itsClusterTree);
28 void SetFirstEvent(Int_t ev){fFirstEvent = ev;}
29 void SetLastEvent(Int_t ev){fLastEvent = ev;}
30 static Float_t GetPipeRadius() {return fgkPipeRadius;}
31 void SetLaddersOnLayer2(Int_t ladwid=4);
32 void SetComputeMultiplicity(Bool_t opt=kTRUE){fComputeMultiplicity=opt;}
33 virtual void SetUseModule(Int_t imod, Bool_t optUse){
34 if(imod>=0 && imod<kNSPDMod) fUseModule[imod]=optUse;
36 virtual Bool_t IsModuleUsed(Int_t imod) const {
37 if(imod>=0 && imod<kNSPDMod) return fUseModule[imod];
41 virtual AliESDVertex* GetAllVertices(Int_t &novertices) const {novertices = fNoVertices; return fVertArray; }
43 AliITSDetTypeRec *GetDetTypeRec() const {return fDetTypeRec;}
44 virtual void SetDetTypeRec(AliITSDetTypeRec *ptr){fDetTypeRec = ptr;}
47 // Methods containing run-loaders, should be moved to some other class
48 void Init(TString filename);
49 void WriteCurrentVertex();
52 Int_t GetMinTrackletsForPilup() const {return fMinTrackletsForPilup;}
53 void SetMinTrackletsForPilup(Int_t mint=2) {fMinTrackletsForPilup=mint;}
54 Bool_t IsPileup() const{return fIsPileup;}
55 Float_t GetZPileupV() const {
56 if(IsPileup()) return fZpuv;
57 else return -9999999.;
59 Int_t GetNTrackletsPileupV() const {
60 if(IsPileup()) return fNTrpuv;
64 static const Float_t fgkPipeRadius; // beam pipe radius (cm)
65 UShort_t *fLadders; // array with layer1-layer2 ladders correspondances
66 Int_t fLadOnLay2; // (2*fLadOnLay2+1)=number of layer2 ladders
67 // associated to a layer1 ladder
68 Bool_t fComputeMultiplicity; // flag to switch on/off tracklet calculation
69 Bool_t fUseModule[kNSPDMod]; // flag for enabling/disabling SPD modules
70 AliITSDetTypeRec *fDetTypeRec; //! pointer to DetTypeRec
71 Int_t fMinTrackletsForPilup; // min. n. of tracklets for pilup definition
72 Bool_t fIsPileup; // flag for pileup
73 Int_t fNTrpuv; // tracklets in pile-up vertex
74 Float_t fZpuv; // Z of second pile-up vertex
75 Int_t fNoVertices; //! number of vertices found
76 AliESDVertex* fVertArray; //! vertices (main+pileupped)
79 // copy constructor (NO copy allowed: the constructor is protected
81 AliITSVertexer(const AliITSVertexer& vtxr);
82 // assignment operator (NO assignment allowed)
83 AliITSVertexer& operator=(const AliITSVertexer& /* vtxr */);
85 Int_t fFirstEvent; // First event to be processed by FindVertices
86 Int_t fLastEvent; // Last event to be processed by FindVertices
88 ClassDef(AliITSVertexer,11);