]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/src/AliL3InterMerger.h
-Added protected copy constructors and assignment operators. -Public data members...
[u/mrichter/AliRoot.git] / HLT / src / AliL3InterMerger.h
CommitLineData
3e87ef69 1// @(#) $Id$
2
108615fc 3#ifndef ALIL3INTERMERGER_H
4#define ALIL3INTERMERGER_H
5
6#ifndef __CINT__
7#include "AliL3Merger.h"
8#endif
9
1f1942b8 10#include "AliL3RootTypes.h"
11
108615fc 12class 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
b661165c 27 ClassDef(AliL3InterMerger,1) //Intermerging class
108615fc 28};
29
30#endif