]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONReconstructor.h
Updated for replacement of AliMpReader with AliMpSectorReader
[u/mrichter/AliRoot.git] / MUON / AliMUONReconstructor.h
1 #ifndef ALIMUONRECONSTRUCTOR_H
2 #define ALIMUONRECONSTRUCTOR_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 // Revision of includes 07/05/2004
8
9 #include "AliReconstructor.h"
10
11 class AliMUONReconstructor: public AliReconstructor 
12 {
13   public:
14     AliMUONReconstructor();
15     virtual ~AliMUONReconstructor();
16
17     virtual void         Reconstruct(TTree* /*digitsTree*/, 
18                                      TTree* /*clustersTree*/) const {return;}
19     virtual void         Reconstruct(AliRawReader* /*rawReader*/, 
20                                      TTree* /*clustersTree*/) const {return;}
21     virtual void         Reconstruct(AliRunLoader* runLoader) const;
22     virtual void         Reconstruct(AliRunLoader* runLoader, 
23                                    AliRawReader* rawReader) const;
24
25     virtual void         FillESD(TTree* /*digitsTree*/, TTree* /*clustersTree*/, 
26                                  AliESD* /*esd*/) const {return;}
27     virtual void         FillESD(AliRawReader* /*rawReader*/, TTree* /*clustersTree*/, 
28                                  AliESD* /*esd*/) const {return;}
29     virtual void         FillESD(AliRunLoader* runLoader, AliESD* esd) const;
30     virtual void         FillESD(AliRunLoader* /*runLoader*/, 
31                                  AliRawReader* /*rawReader*/, AliESD* /*esd*/) const {return;}
32
33  
34   ClassDef(AliMUONReconstructor, 0)   // class for the MUON reconstruction
35 };
36
37 #endif