]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RICH/AliRICHReconstructor.h
Allowing coding conventions to be checked
[u/mrichter/AliRoot.git] / RICH / AliRICHReconstructor.h
1 #ifndef ALIRICHRECONSTRUCTOR_H
2 #define ALIRICHRECONSTRUCTOR_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 "AliReconstructor.h"
9
10 class AliRICH;
11
12
13 class AliRICHReconstructor: public AliReconstructor {
14 public:
15   AliRICHReconstructor(): AliReconstructor() {};
16   virtual ~AliRICHReconstructor() {};
17
18   virtual void         Reconstruct(AliRunLoader* runLoader) const;
19   virtual void         FillESD(AliRunLoader* runLoader, AliESD* esd) const;
20
21 private:
22   AliRICH*             GetRICH(AliRunLoader* runLoader) const;
23
24   ClassDef(AliRICHReconstructor, 0)   // class for the RICH reconstruction
25 };
26
27 #endif