]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/src/AliL3InterMerger.h
More improved Makefile, setting logging paths, TOPDIR and LIBDIR.
[u/mrichter/AliRoot.git] / HLT / src / AliL3InterMerger.h
1 #ifndef ALIL3INTERMERGER_H
2 #define ALIL3INTERMERGER_H
3
4 #ifndef __CINT__ 
5 #include "AliL3Merger.h"
6 #endif
7
8 class AliL3InterMerger : public AliL3Merger {
9
10  private:
11   Int_t fPatch;
12   Int_t fRowMin;
13   Int_t fRowMax;
14  public:
15   AliL3InterMerger();
16   virtual ~AliL3InterMerger();
17
18   void Init(Int_t *row,Int_t p){fRowMin=row[0];fRowMax=row[1];fPatch=p;}
19   void SlowMerge();
20   Int_t Merge();
21   void MMerge();  //Loop over tracks from different subsectors
22   
23   ClassDef(AliL3InterMerger,1) //Intermerging class
24 };
25
26 #endif