]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDReconstructor.h
New version of the PMD DA avoiding the creation of huge amount of histograms. Now...
[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(AliRawReader* rawReader,
11                              TTree* clustersTree) const;
12   virtual void   Reconstruct(TTree* digitsTree, TTree* clustersTree) const;
13
14   virtual void   FillESD(AliRawReader* /*rawReader*/, TTree* clustersTree, 
15                          AliESDEvent* esd) const;
16
17   virtual void   FillESD(TTree* /*digitsTree*/, TTree* clustersTree, 
18                          AliESDEvent* esd) const;
19
20 private:
21
22   ClassDef(AliPMDReconstructor, 5)   // class for the PMD reconstruction
23 };
24
25 #endif