]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/hough/AliL3HoughMaxFinder.h
This commit was generated by cvs2svn to compensate for changes in r3174,
[u/mrichter/AliRoot.git] / HLT / hough / AliL3HoughMaxFinder.h
CommitLineData
4de874d1 1#ifndef ALIL3_HOUGH_MaxFinder
2#define ALIL3_HOUGH_MaxFinder
3
4#include "AliL3RootTypes.h"
5
6class AliL3TrackArray;
7
8class 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 void SetThreshold(Int_t f) {fThreshold = f;}
24
25 //AliL3TrackArray *GetTracks() {return fTracks;}
26
27 ClassDef(AliL3HoughMaxFinder,1)
28
29};
30
31#endif