]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/hough/AliL3HoughTransformerVhdl.h
- check for AliRoot features/libs/files and corresponding conditional
[u/mrichter/AliRoot.git] / HLT / hough / AliL3HoughTransformerVhdl.h
CommitLineData
3e87ef69 1// @(#) $Id$
2
c62b480b 3#ifndef ALIL3HOUGHTRANSFORMERVHDL_H
4#define ALIL3HOUGHTRANSFORMERVHDL_H
b46b53c1 5
45f0bc53 6#include "AliL3Histogram.h"
7#include "AliL3HoughTransformerLUT.h"
b46b53c1 8class AliL3Histogram;
9
45f0bc53 10class AliL3HoughTransformerVhdl : public AliL3HoughTransformerLUT
6173606e 11{
18659a6b 12
b46b53c1 13 public:
6173606e 14
b46b53c1 15 AliL3HoughTransformerVhdl();
c62b480b 16 AliL3HoughTransformerVhdl(Int_t slice,Int_t patch,Int_t netasegments,Int_t nits=0);
b46b53c1 17 virtual ~AliL3HoughTransformerVhdl();
6173606e 18
298edb8a 19 void CreateHistograms(Float_t ptmin,Float_t ptmax,Float_t pres,Int_t nybin,Float_t psi) {
20 AliL3HoughTransformerLUT::CreateHistograms(ptmin,ptmax,pres,nybin,psi);
21 }
b2a02bce 22 void CreateHistograms(Int_t nxbin,Float_t ptmin,Int_t nybin,Float_t phimin,Float_t phimax);
23 void CreateHistograms(Int_t nxbin,Float_t xmin,Float_t xmax,
24 Int_t nybin,Float_t ymin,Float_t ymax);
45f0bc53 25
b46b53c1 26 void TransformCircle();
298edb8a 27 void TransformCircle(Int_t *row_range,Int_t every) {
28 AliL3HoughTransformerLUT::TransformCircle(row_range,every);
29 }
dd7d3870 30 void TransformCircleC(Int_t */*rowrange*/,Int_t /*every*/) {return;}
3e87ef69 31
c62b480b 32 void Init(Int_t slice=0,Int_t patch=0,Int_t netasegments=100,Int_t nits=-1);
45f0bc53 33 void Print();
c62b480b 34 void PrintVhdl() const;
35
36 protected:
37 Float_t fEpsilon;//??
38 Float_t fSinEpsilon;//??
39 Float_t fCosEpsilon;//??
40 Int_t fIts;//??
41
42 Int_t fNxbin;//Number of bins in X
43 Float_t fXmin;//Lower limit in X
44 Float_t fXmax;//Upper limit in X
45 Int_t fNybin;//Number of bins in Y
46 Float_t fYmin;//Lower limit in Y
47 Float_t fYmax;//Upper limit in Y
b46b53c1 48
1f1942b8 49 ClassDef(AliL3HoughTransformerVhdl,1) //VHDL Hough transformation class
b46b53c1 50
51};
52
b46b53c1 53#endif
54
55
56
57
6173606e 58
59