]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/ITS/AliL3ITSclusterer.h
Added AliMpStringObjMap, AliMpDEIterator, AliMpDEManager, AliMpSegFactory
[u/mrichter/AliRoot.git] / HLT / ITS / AliL3ITSclusterer.h
CommitLineData
3136129d 1#ifndef ALIL3ITSCLUSTERER_H
2#define ALIL3ITSCLUSTERER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6//-------------------------------------------------------------------------
7// High Level Trigger ITS clusterer
8// This class derives completely from the off-line AliITSclustererV2.
9// The only difference is in the interface of calling it and stoting
10// the clusters's tree.
11//
12// Origin: Cvetan Cheshkov, CERN, Cvetan.Cheshkov@cern.ch
13//-------------------------------------------------------------------------
14
15#include "AliITSclustererV2.h"
16
17class TTree;
18class AliITSgeom;
19class AliRawReader;
20
21//-------------------------------------------------------------------------
22class AliL3ITSclusterer : public AliITSclustererV2 {
23public:
24 AliL3ITSclusterer():AliITSclustererV2(){fNModule = 0;}
25 AliL3ITSclusterer(const AliITSgeom *geom);
26
27 void Digits2Clusters(AliRawReader* rawReader,TTree *cTree);
28
29private:
30 Int_t fNModule; // total number of modules
31
32 ClassDef(AliL3ITSclusterer,1) //HLT ITS clusterer
33};
34
35#endif