]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSVertexer.h
Added the class AliFMDESDRevertexer for recalculating the
[u/mrichter/AliRoot.git] / ITS / AliITSVertexer.h
1 #ifndef ALIITSVERTEXER_H
2 #define ALIITSVERTEXER_H
3
4 #include<AliVertexer.h>
5 #include "AliITSDetTypeRec.h"
6
7 ///////////////////////////////////////////////////////////////////
8 //                                                               //
9 // Base class for primary vertex reconstruction  for ITS         //
10 //                                                               //
11 ///////////////////////////////////////////////////////////////////
12
13 /* $Id$ */
14
15 class TString;
16
17 class AliITSVertexer : public AliVertexer {
18
19  public:
20     // default constructor
21     AliITSVertexer();   
22     virtual ~AliITSVertexer();
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;}
29     const Float_t GetPipeRadius()const {return fgkPipeRadius;}
30     void SetLaddersOnLayer2(Int_t ladwid=4);
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     }
38
39     const AliITSDetTypeRec *GetDetTypeRec() const {return fDetTypeRec;}
40     virtual void SetDetTypeRec(const AliITSDetTypeRec *ptr){fDetTypeRec = ptr;}
41     enum{kNSPDMod=240};
42
43     // Methods containing run-loaders, should be moved to some other class
44     void Init(TString filename);
45     void WriteCurrentVertex();
46     void FindVertices();
47
48  protected:
49     static const Float_t fgkPipeRadius;  // beam pipe radius (cm)
50     UShort_t *fLadders; // array with layer1-layer2 ladders correspondances  
51     Int_t fLadOnLay2;   // (2*fLadOnLay2+1)=number of layer2 ladders 
52                       // associated to a layer1 ladder
53     Bool_t  fUseModule[kNSPDMod]; // flag for enabling/disabling SPD modules
54  
55  private:
56     // copy constructor (NO copy allowed: the constructor is protected
57     // to avoid misuse)
58     AliITSVertexer(const AliITSVertexer& vtxr);
59     // assignment operator (NO assignment allowed)
60     AliITSVertexer& operator=(const AliITSVertexer& /* vtxr */);
61
62     Int_t fFirstEvent;          // First event to be processed by FindVertices
63     Int_t fLastEvent;           // Last event to be processed by FindVertices
64     const AliITSDetTypeRec *fDetTypeRec;  //! pointer to DetTypeRec
65
66   ClassDef(AliITSVertexer,7);
67 };
68
69 #endif