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