]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/src/AliL3InterMerger.h
Data structures for track and clusters
[u/mrichter/AliRoot.git] / HLT / src / AliL3InterMerger.h
CommitLineData
108615fc 1#ifndef ALIL3INTERMERGER_H
2#define ALIL3INTERMERGER_H
3
4#ifndef __CINT__
5#include "AliL3Merger.h"
6#endif
7
8class AliL3InterMerger : public AliL3Merger {
9
10 private:
11 Int_t fPatch;
12 Int_t fRowMin;
13 Int_t fRowMax;
14 public:
15 AliL3InterMerger();
16 virtual ~AliL3InterMerger();
17
18 void Init(Int_t *row,Int_t p){fRowMin=row[0];fRowMax=row[1];fPatch=p;}
19 void SlowMerge();
20 Int_t Merge();
21 void MMerge(); //Loop over tracks from different subsectors
22
b661165c 23 ClassDef(AliL3InterMerger,1) //Intermerging class
108615fc 24};
25
26#endif