]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - STEER/AliVertexer.h
Fixes for bug #52499: Field polarities inconsistiency
[u/mrichter/AliRoot.git] / STEER / AliVertexer.h
... / ...
CommitLineData
1#ifndef ALIVERTEXER_H
2#define ALIVERTEXER_H
3
4///////////////////////////////////////////////////////////////////
5// //
6// Base class for primary vertex reconstruction //
7// //
8///////////////////////////////////////////////////////////////////
9
10#include<TObject.h>
11
12class TTree;
13class AliESDVertex;
14class AliMultiplicity;
15
16
17class AliVertexer : public TObject {
18
19 public:
20 // default constructor
21 AliVertexer();
22
23 // destructor
24 virtual ~AliVertexer();
25 // computes the vertex for the current event
26 virtual AliESDVertex* FindVertexForCurrentEvent(TTree *clustersTree)=0;
27 // computes the vertex for each event and stores it on file
28 AliMultiplicity* GetMultiplicity() const {return fMult;}
29 virtual void PrintStatus() const = 0;
30 void SetVtxStart(Double_t x,Double_t y,Double_t z)
31 { fNominalPos[0]=x; fNominalPos[1]=y; fNominalPos[2]=z; }
32 void SetVtxStartSigma(Double_t sx,Double_t sy,Double_t sz)
33 { fNominalCov[0]=sx*sx; fNominalCov[2]=sy*sy; fNominalCov[5]=sz*sz;
34 fNominalCov[1]=0.; fNominalCov[3]=0.; fNominalCov[4]=0.; }
35 void SetVtxStart(AliESDVertex *vtx);
36 // the following method can be implemented in daughter classes
37 // (e.g. in AliITSVertexer3D). It is intended to tag pile-up events
38 // novertices is the total number of vertices (1 means no pileup)
39 // The returned pointer points to an array of AliESDVertx opbjects
40 // with size=novertices
41 virtual AliESDVertex* GetAllVertices(Int_t &novertices) const {novertices = 0; return NULL;}
42 const Double_t* GetNominalPos() const {return fNominalPos;}
43
44 protected:
45 AliESDVertex *fCurrentVertex; //! pointer to the current vertex
46 AliMultiplicity *fMult; //! Multiplicity object
47
48 private:
49 // copy constructor (NO copy allowed: the constructor is protected
50 // to avoid misuse)
51 AliVertexer(const AliVertexer& vtxr);
52 // assignment operator (NO assignment allowed)
53 AliVertexer& operator=(const AliVertexer& /* vtxr */);
54
55 Double_t fNominalPos[3]; // initial knowledge on vertex position
56 Double_t fNominalCov[6]; // initial knowledge on vertex position
57
58 ClassDef(AliVertexer,4);
59};
60
61#endif