]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDclusterizerV1.h
Update to track display by Chuncheng
[u/mrichter/AliRoot.git] / TRD / AliTRDclusterizerV1.h
1 #ifndef ALITRDCLUSTERIZERV1_H
2 #define ALITRDCLUSTERIZERV1_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 #include "AliTRDclusterizer.h"
9
10 ///////////////////////////////////////////////////////
11 //  Finds and handles cluster (slow simulation)      //
12 ///////////////////////////////////////////////////////
13
14 class AliTRDdigitsManager;
15
16 class AliTRDclusterizerV1 : public AliTRDclusterizer {
17
18  public:
19
20   AliTRDclusterizerV1();
21   AliTRDclusterizerV1(const Text_t* name, const Text_t* title);
22   AliTRDclusterizerV1(const AliTRDclusterizerV1 &c);
23   virtual ~AliTRDclusterizerV1();
24   AliTRDclusterizerV1 &operator=(const AliTRDclusterizerV1 &c);
25
26   virtual void     Copy(TObject &c);
27   virtual Bool_t   MakeClusters();
28   virtual Bool_t   ReadDigits();
29
30  protected:
31
32   AliTRDdigitsManager *fDigitsManager;      //! TRD digits manager
33
34  private:
35
36   virtual Float_t  Unfold(Float_t eps, Int_t plane, Float_t *padSignal);
37
38   ClassDef(AliTRDclusterizerV1,5)           // TRD-Cluster finder, slow simulator
39
40 };
41
42 #endif