4de874d1 |
1 | #ifndef ALIL3_HOUGH_Merge |
2 | #define ALIL3_HOUGH_Merge |
3 | |
4 | #include "AliL3RootTypes.h" |
5 | |
6 | class TClonesArray; |
7 | class TObjArray; |
8 | class TH2F; |
9 | class AliL3TrackArray; |
10 | |
11 | class AliL3HoughMerge : public TObject { |
12 | |
13 | private: |
14 | |
15 | AliL3TrackArray **fInTracks; //! |
16 | AliL3TrackArray *fOutTracks; //! |
17 | |
18 | Int_t fNPatches; |
19 | public: |
20 | AliL3HoughMerge(); |
21 | AliL3HoughMerge(Int_t slice,Int_t row_patches=5); |
22 | virtual ~AliL3HoughMerge(); |
23 | |
24 | void FillTracks(AliL3TrackArray *tracks,Int_t patch); |
25 | void FillHisto(TH2F *merge_hist); |
26 | |
27 | ClassDef(AliL3HoughMerge,1) |
28 | |
29 | }; |
30 | |
31 | #endif |