]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDReconstructor.h
Method added to start reconstruction from raw data
[u/mrichter/AliRoot.git] / PMD / AliPMDReconstructor.h
1 #ifndef ALIPMDRECONSTRUCTOR_H
2 #define ALIPMDRECONSTRUCTOR_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 #include "AliReconstructor.h"
7
8 class AliPMDReconstructor: public AliReconstructor {
9 public:
10   virtual void Reconstruct(AliRunLoader* runLoader) const;
11   virtual void Reconstruct(AliRunLoader* runLoader,
12                            AliRawReader *rawReader) const;
13   virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const;
14
15 private:
16
17   ClassDef(AliPMDReconstructor, 2)   // class for the PMD reconstruction
18 };
19
20 #endif