]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/hough/AliL3HoughGlobalMerger.h
New version of SPD raw-data reconstruction. The format now correponds to the actual...
[u/mrichter/AliRoot.git] / HLT / hough / AliL3HoughGlobalMerger.h
1 // @(#) $Id$
2
3 #ifndef ALIL3_HOUGHGLOBALMERGER_H
4 #define ALIL3_HOUGHGLOBALMERGER_H
5
6 #include "AliL3Merger.h"
7
8 class AliL3TrackArray;
9 class AliL3Track;
10
11 class AliL3HoughGlobalMerger {
12
13  private:
14   AliL3TrackArray **fTracks; //!
15   Int_t fNSlices;
16
17  public:
18   AliL3HoughGlobalMerger();
19   AliL3HoughGlobalMerger(Int_t first,Int_t last);
20   virtual ~AliL3HoughGlobalMerger();
21   
22   void FillTracks(AliL3TrackArray *tracks,Int_t i);
23   void Merge();
24
25   ClassDef(AliL3HoughGlobalMerger,1) 
26 };
27
28 #endif