]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDReconstructor.h
Cleaned up code for coding conventions.
[u/mrichter/AliRoot.git] / TRD / AliTRDReconstructor.h
1 #ifndef ALITRDRECONSTRUCTOR_H
2 #define ALITRDRECONSTRUCTOR_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 ///////////////////////////////////////////////////////////////////////////////
7 //                                                                           //
8 // class for TRD reconstruction                                              //
9 //                                                                           //
10 ///////////////////////////////////////////////////////////////////////////////
11
12 /* $Id$ */
13
14 #include "AliReconstructor.h"
15
16 class AliTRDparameter;
17
18
19 class AliTRDReconstructor: public AliReconstructor {
20 public:
21   AliTRDReconstructor(): AliReconstructor() {};
22   virtual ~AliTRDReconstructor() {};
23
24   virtual void         Reconstruct(AliRunLoader* runLoader) const;
25   virtual AliTracker*  CreateTracker(AliRunLoader* runLoader) const;
26   virtual void         FillESD(AliRunLoader* runLoader, AliESD* esd) const;
27
28 private:
29   AliTRDparameter*     GetTRDparameter(AliRunLoader* runLoader) const;
30
31   ClassDef(AliTRDReconstructor, 0)   // class for the TRD reconstruction
32 };
33
34 #endif