]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/hough/AliL3HoughTransformer.h
Added mc functionality. If compiled with do_mc flag, the transformer will
[u/mrichter/AliRoot.git] / HLT / hough / AliL3HoughTransformer.h
CommitLineData
4de874d1 1#ifndef ALIL3_HOUGHTRANSFORMER
2#define ALIL3_HOUGHTRANSFORMER
3
4#include "AliL3RootTypes.h"
c52cf5d8 5#include "AliL3HoughBaseTransformer.h"
4de874d1 6
99e7186b 7class AliL3Histogram;
4de874d1 8
c52cf5d8 9class AliL3HoughTransformer : public AliL3HoughBaseTransformer {
4de874d1 10
11 private:
99e7186b 12
99e7186b 13 AliL3Histogram **fParamSpace; //!
1eef4efc 14#ifdef do_mc
15 TrackIndex **fTrackID; //!
16#endif
99e7186b 17 void DeleteHistograms();
4de874d1 18
19 public:
20 AliL3HoughTransformer();
99e7186b 21 AliL3HoughTransformer(Int_t slice,Int_t patch,Int_t n_eta_segments);
4de874d1 22 virtual ~AliL3HoughTransformer();
99e7186b 23
e26acabd 24 void CreateHistograms(Int_t nxbin,Double_t ptmin,Int_t nybin,Double_t phimin,Double_t phimax);
3ef466c5 25 void CreateHistograms(Int_t nxbin,Double_t xmin,Double_t xmax,
26 Int_t nybin,Double_t ymin,Double_t ymax);
e26acabd 27 void Reset();
4fc9a6a4 28 void TransformCircle();
3ef466c5 29 void TransformCircleC(Int_t row_range);
4fc9a6a4 30 void TransformLine();
31
c52cf5d8 32 Int_t GetEtaIndex(Double_t eta);
99e7186b 33 AliL3Histogram *GetHistogram(Int_t eta_index);
afd8fed4 34 Double_t GetEta(Int_t eta_index,Int_t slice);
1eef4efc 35 Int_t GetTrackID(Int_t eta_index,Double_t kappa,Double_t psi);
36
7646f3c3 37 //void Init(Int_t slice=0,Int_t patch=0,Int_t n_eta_segments=100);
38
237d3f5c 39 ClassDef(AliL3HoughTransformer,1) //Normal Hough transformation class
4de874d1 40
41};
42
43#endif
7646f3c3 44
45
46
47