]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/src/AliL3GlobalMerger.h
b933ab7b21e6240f02d7691731480d56977dce5c
[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 #include "AliL3RootTypes.h"
11
12 class AliL3GlobalMerger : public AliL3Merger{
13
14  private:
15   Int_t fNSlices;
16   Int_t fFirst;
17   Int_t fLast;
18
19   Double_t CheckTracks(AliL3Track *innertrack,AliL3Track *outertrack,Int_t slice);
20   
21  public:
22   AliL3GlobalMerger();
23   virtual ~AliL3GlobalMerger();
24   
25   void Setup(Int_t first,Int_t last);
26   void InitSlice(Int_t slice);
27   void SlowMerge(Char_t *path="./");
28   void Merge();  //Loop over tracks from different sectors
29
30   ClassDef(AliL3GlobalMerger,1) //Slice merger
31 };
32
33 #endif