]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/src/AliL3GlobalMerger.h
61cf25e55f51d1e68e0b129c0b4d5672addd568b
[u/mrichter/AliRoot.git] / HLT / src / AliL3GlobalMerger.h
1 // @(#) $Id$
2
3 #ifndef ALIL3_GLOBALMERGER_H
4 #define ALIL3_GLOBALMERGER_H
5
6 #ifndef  __CINT__
7 #include "AliL3Merger.h"
8 #endif
9
10 class AliL3GlobalMerger : public AliL3Merger{
11
12  private:
13   Int_t fNSlices;
14   Int_t fFirst;
15   Int_t fLast;
16
17   Double_t CheckTracks(AliL3Track *innertrack,AliL3Track *outertrack,Int_t slice);
18   
19  public:
20   AliL3GlobalMerger();
21   virtual ~AliL3GlobalMerger();
22   
23   void Setup(Int_t first,Int_t last);
24   void InitSlice(Int_t slice);
25   void SlowMerge(Char_t *path="./");
26   void Merge();  //Loop over tracks from different sectors
27
28   ClassDef(AliL3GlobalMerger,1) //Slice merger
29 };
30
31 #endif