]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSVertexer.h
In MUONmappingLinkDef.h:
[u/mrichter/AliRoot.git] / ITS / AliITSVertexer.h
CommitLineData
c5f0f3c1 1#ifndef ALIITSVERTEXER_H
2#define ALIITSVERTEXER_H
3
2257f27e 4#include<AliVertexer.h>
ff44c37c 5#include "AliITSDetTypeRec.h"
c5f0f3c1 6
7///////////////////////////////////////////////////////////////////
8// //
2257f27e 9// Base class for primary vertex reconstruction for ITS //
c5f0f3c1 10// //
11///////////////////////////////////////////////////////////////////
12
8c42830a 13/* $Id$ */
14
41b19549 15class TString;
c5f0f3c1 16
2257f27e 17class AliITSVertexer : public AliVertexer {
c5f0f3c1 18
19 public:
20 // default constructor
21 AliITSVertexer();
27167524 22 virtual ~AliITSVertexer();
308c2f7c 23 virtual AliESDVertex *FindVertexForCurrentEvent(TTree *itsClusterTree)=0;
24 virtual void PrintStatus() const = 0;
25
26 void FindMultiplicity(TTree *itsClusterTree);
27 void SetFirstEvent(Int_t ev){fFirstEvent = ev;}
28 void SetLastEvent(Int_t ev){fLastEvent = ev;}
5af4a2d0 29 static Float_t GetPipeRadius() {return fgkPipeRadius;}
308c2f7c 30 void SetLaddersOnLayer2(Int_t ladwid=4);
8c42830a 31 virtual void SetUseModule(Int_t imod, Bool_t optUse){
32 if(imod>=0 && imod<kNSPDMod) fUseModule[imod]=optUse;
33 }
34 virtual Bool_t IsModuleUsed(Int_t imod) const {
35 if(imod>=0 && imod<kNSPDMod) return fUseModule[imod];
36 else return 0;
37 }
b96ee725 38
06a7cbee 39 AliITSDetTypeRec *GetDetTypeRec() const {return fDetTypeRec;}
40 virtual void SetDetTypeRec(AliITSDetTypeRec *ptr){fDetTypeRec = ptr;}
8c42830a 41 enum{kNSPDMod=240};
308c2f7c 42
43 // Methods containing run-loaders, should be moved to some other class
44 void Init(TString filename);
45 void WriteCurrentVertex();
46 void FindVertices();
c5f0f3c1 47
8c32ba44 48 Int_t GetMinTrackletsForPilup() const {return fMinTrackletsForPilup;}
49 void SetMinTrackletsForPilup(Int_t mint=2) {fMinTrackletsForPilup=mint;}
50 Bool_t IsPileup() const{return fIsPileup;}
51 Float_t GetZPileupV() const {
52 if(IsPileup()) return fZpuv;
53 else return -9999999.;
54 }
55 Int_t GetNTrackletsPileupV() const {
56 if(IsPileup()) return fNTrpuv;
57 else return -2;
58 }
c5f0f3c1 59 protected:
308c2f7c 60 static const Float_t fgkPipeRadius; // beam pipe radius (cm)
61 UShort_t *fLadders; // array with layer1-layer2 ladders correspondances
62 Int_t fLadOnLay2; // (2*fLadOnLay2+1)=number of layer2 ladders
63 // associated to a layer1 ladder
8c42830a 64 Bool_t fUseModule[kNSPDMod]; // flag for enabling/disabling SPD modules
06a7cbee 65 AliITSDetTypeRec *fDetTypeRec; //! pointer to DetTypeRec
8c32ba44 66 Int_t fMinTrackletsForPilup; // min. n. of tracklets for pilup definition
67 Bool_t fIsPileup; // flag for pileup
68 Int_t fNTrpuv; // tracklets in pile-up vertex
69 Float_t fZpuv; // Z of second pile-up vertex
70
308c2f7c 71 private:
41b19549 72 // copy constructor (NO copy allowed: the constructor is protected
73 // to avoid misuse)
74 AliITSVertexer(const AliITSVertexer& vtxr);
75 // assignment operator (NO assignment allowed)
76 AliITSVertexer& operator=(const AliITSVertexer& /* vtxr */);
77
308c2f7c 78 Int_t fFirstEvent; // First event to be processed by FindVertices
ff44c37c 79 Int_t fLastEvent; // Last event to be processed by FindVertices
27167524 80
8c32ba44 81 ClassDef(AliITSVertexer,9);
c5f0f3c1 82};
83
84#endif