]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/src/AliL3InterMerger.h
Merged HLT tag v1-2 with ALIROOT tag v3-09-Release.
[u/mrichter/AliRoot.git] / HLT / src / AliL3InterMerger.h
1 // @(#) $Id$
2
3 #ifndef ALIL3INTERMERGER_H
4 #define ALIL3INTERMERGER_H
5
6 #ifndef __CINT__ 
7 #include "AliL3Merger.h"
8 #endif
9
10 class AliL3InterMerger : public AliL3Merger {
11
12  private:
13   Int_t fPatch;
14   Int_t fRowMin;
15   Int_t fRowMax;
16  public:
17   AliL3InterMerger();
18   virtual ~AliL3InterMerger();
19
20   void Init(Int_t *row,Int_t p){fRowMin=row[0];fRowMax=row[1];fPatch=p;}
21   void SlowMerge();
22   Int_t Merge();
23   void MMerge();  //Loop over tracks from different subsectors
24   
25   ClassDef(AliL3InterMerger,1) //Intermerging class
26 };
27
28 #endif