05f4fa74 |
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 FillESD(AliRunLoader* runLoader, AliESD* esd) const; |
12 | |
13 | private: |
14 | |
15 | ClassDef(AliPMDReconstructor, 1) // class for the PMD reconstruction |
16 | }; |
17 | |
18 | #endif |