121a60bd |
1 | #ifndef ALISTARTRECONSTRUCTOR_H |
2 | #define ALISTARTRECONSTRUCTOR_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 | |
121a60bd |
10 | class AliSTARTReconstructor: public AliReconstructor { |
11 | public: |
12 | AliSTARTReconstructor(): AliReconstructor() {}; |
13 | virtual ~AliSTARTReconstructor() {}; |
d4637c2e |
14 | virtual void Reconstruct(AliRunLoader* /*runLoader*/) const; |
a8859328 |
15 | virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const; |
16 | |
121a60bd |
17 | ClassDef(AliSTARTReconstructor, 0) // class for the START reconstruction |
18 | }; |
19 | |
20 | #endif |