]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDReconstructor.h
Coding rules
[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 #include "AliPMDRecoParam.h"
8
9 class AliPMDReconstructor: public AliReconstructor {
10 public:
11   virtual void   Reconstruct(AliRawReader* rawReader,
12                              TTree* clustersTree) const;
13   virtual void   Reconstruct(TTree* digitsTree, TTree* clustersTree) const;
14
15   virtual void   FillESD(AliRawReader* /*rawReader*/, TTree* clustersTree, 
16                          AliESDEvent* esd) const;
17
18   virtual void   FillESD(TTree* /*digitsTree*/, TTree* clustersTree, 
19                          AliESDEvent* esd) const;
20
21   static const AliPMDRecoParam* GetRecoParam() { return dynamic_cast<const AliPMDRecoParam*>(AliReconstructor::GetRecoParam(10)); } // getting RecoParam obj
22
23 private:
24
25   ClassDef(AliPMDReconstructor, 6)   // class for the PMD reconstruction
26 };
27
28 #endif