]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/src/AliL3GlobalMerger.h
Added missing files and defines, compilation should now work again.
[u/mrichter/AliRoot.git] / HLT / src / AliL3GlobalMerger.h
CommitLineData
3e87ef69 1// @(#) $Id$
2
108615fc 3#ifndef ALIL3_GLOBALMERGER_H
4#define ALIL3_GLOBALMERGER_H
5
6#ifndef __CINT__
7#include "AliL3Merger.h"
8#endif
9
1f1942b8 10#include "AliL3RootTypes.h"
11
108615fc 12class AliL3GlobalMerger : public AliL3Merger{
13
14 private:
15 Int_t fNSlices;
16 Int_t fFirst;
17 Int_t fLast;
18
99cd2dbf 19 Double_t CheckTracks(AliL3Track *innertrack,AliL3Track *outertrack,Int_t slice);
20
108615fc 21 public:
22 AliL3GlobalMerger();
108615fc 23 virtual ~AliL3GlobalMerger();
0a86fbb7 24
25 void Setup(Int_t first,Int_t last);
108615fc 26 void InitSlice(Int_t slice);
0a86fbb7 27 void SlowMerge(Char_t *path="./");
108615fc 28 void Merge(); //Loop over tracks from different sectors
29
b661165c 30 ClassDef(AliL3GlobalMerger,1) //Slice merger
108615fc 31};
32
33#endif