]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCInterMerger.h
Imported files from the existing L3 code directories (../src, ../comp,
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCInterMerger.h
CommitLineData
a6c02c85 1// @(#) $Id$
2
3#ifndef ALIHLTTPCINTERMERGER_H
4#define ALIHLTTPCINTERMERGER_H
5
6#ifndef __CINT__
7#include "AliHLTTPCMerger.h"
8#endif
9
10#include "AliHLTTPCRootTypes.h"
11
12class AliHLTTPCInterMerger : public AliHLTTPCMerger {
13
14 private:
15 Int_t fPatch;
16 Int_t fRowMin;
17 Int_t fRowMax;
18 public:
19 AliHLTTPCInterMerger();
20 virtual ~AliHLTTPCInterMerger();
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(AliHLTTPCInterMerger,1) //Intermerging class
28};
29
30#endif