]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHReconstructor.h
Implementation of reconstructors (T.Kuhr)
[u/mrichter/AliRoot.git] / RICH / AliRICHReconstructor.h
CommitLineData
121a60bd 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
10class AliRICH;
11
12
13class AliRICHReconstructor: public AliReconstructor {
14public:
15 AliRICHReconstructor(): AliReconstructor() {};
16 virtual ~AliRICHReconstructor() {};
17
18 virtual void Reconstruct(AliRunLoader* runLoader) const;
19 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const;
20
21private:
22 AliRICH* GetRICH(AliRunLoader* runLoader) const;
23
24 ClassDef(AliRICHReconstructor, 0) // class for the RICH reconstruction
25};
26
27#endif