]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONReconstructor.h
Reverted direct flow parameters
[u/mrichter/AliRoot.git] / MUON / AliMUONReconstructor.h
CommitLineData
cac2eb58 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$ */
30178c30 7// Revision of includes 07/05/2004
cac2eb58 8
9#include "AliReconstructor.h"
10
30178c30 11class AliMUONReconstructor: public AliReconstructor
12{
8789635b 13 public:
14 AliMUONReconstructor();
15 virtual ~AliMUONReconstructor();
cac2eb58 16
337c9041 17 virtual void Reconstruct(TTree* /*digitsTree*/,
18 TTree* /*clustersTree*/) const {return;}
19 virtual void Reconstruct(AliRawReader* /*rawReader*/,
20 TTree* /*clustersTree*/) const {return;}
8789635b 21 virtual void Reconstruct(AliRunLoader* runLoader) const;
337c9041 22 virtual void Reconstruct(AliRunLoader* runLoader,
23 AliRawReader* rawReader) const;
cf464691 24
337c9041 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;}
8789635b 29 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const;
337c9041 30 virtual void FillESD(AliRunLoader* /*runLoader*/,
31 AliRawReader* /*rawReader*/, AliESD* /*esd*/) const {return;}
32
cac2eb58 33
34 ClassDef(AliMUONReconstructor, 0) // class for the MUON reconstruction
35};
36
37#endif