]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/src/AliL3InterMerger.h
New convention for the solenoid field
[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 #include "AliL3RootTypes.h"
11
12 class AliL3InterMerger : public AliL3Merger {
13
14  private:
15   Int_t fPatch;
16   Int_t fRowMin;
17   Int_t fRowMax;
18  public:
19   AliL3InterMerger();
20   virtual ~AliL3InterMerger();
21
22   void Init(Int_t *row,Int_t p){fRowMin=row[0];fRowMax=row[1];fPatch=p;}
23   void SlowMerge();
24   Int_t Merge();
25   void MMerge();  //Loop over tracks from different subsectors
26   
27   ClassDef(AliL3InterMerger,1) //Intermerging class
28 };
29
30 #endif