]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/src/AliHLTInterMerger.h
L3 becomes HLT
[u/mrichter/AliRoot.git] / HLT / src / AliHLTInterMerger.h
CommitLineData
3e87ef69 1// @(#) $Id$
2
108615fc 3#ifndef ALIL3INTERMERGER_H
4#define ALIL3INTERMERGER_H
5
6#ifndef __CINT__
4aa41877 7#include "AliHLTMerger.h"
108615fc 8#endif
9
4aa41877 10#include "AliHLTRootTypes.h"
1f1942b8 11
4aa41877 12class AliHLTInterMerger : public AliHLTMerger {
108615fc 13
14 private:
15 Int_t fPatch;
16 Int_t fRowMin;
17 Int_t fRowMax;
18 public:
4aa41877 19 AliHLTInterMerger();
20 virtual ~AliHLTInterMerger();
108615fc 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
4aa41877 27 ClassDef(AliHLTInterMerger,1) //Intermerging class
108615fc 28};
29
4aa41877 30typedef AliHLTInterMerger AliL3InterMerger; // for backward compatibility
31
108615fc 32#endif