]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/hough/AliL3HoughMaxFinder.h
Debugging update
[u/mrichter/AliRoot.git] / HLT / hough / AliL3HoughMaxFinder.h
1 #ifndef ALIL3_HOUGH_MaxFinder
2 #define ALIL3_HOUGH_MaxFinder
3
4 #include "AliL3RootTypes.h"
5
6 class AliL3TrackArray;
7
8 class AliL3HoughMaxFinder : public TObject {
9   
10  private:
11
12   Int_t fThreshold;
13   //AliL3TrackArray *fTracks; //!
14
15   Char_t fHistoType;
16
17  public:
18   AliL3HoughMaxFinder(); 
19   AliL3HoughMaxFinder(Char_t *histotype);
20   virtual ~AliL3HoughMaxFinder();
21
22   AliL3TrackArray *FindMaxima(TH2F *hist,Int_t *rowrange=0,Int_t ref_row=0);
23   AliL3TrackArray *FindPeak(TH2F *hist,Int_t t1,Double_t t2,Int_t t3);
24   void SetThreshold(Int_t f) {fThreshold = f;}
25   
26
27   ClassDef(AliL3HoughMaxFinder,1)
28
29 };
30
31 #endif