]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONReconstructor.h
- Modified comment lines to be compatible with Doxygen
[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
692de412 9/// \ingroup rec
10/// \class AliMUONReconstructor
11/// \brief Class for the MUON reconstruction
12
cac2eb58 13#include "AliReconstructor.h"
14
30178c30 15class AliMUONReconstructor: public AliReconstructor
16{
8789635b 17 public:
18 AliMUONReconstructor();
19 virtual ~AliMUONReconstructor();
cac2eb58 20
337c9041 21 virtual void Reconstruct(TTree* /*digitsTree*/,
22 TTree* /*clustersTree*/) const {return;}
23 virtual void Reconstruct(AliRawReader* /*rawReader*/,
24 TTree* /*clustersTree*/) const {return;}
8789635b 25 virtual void Reconstruct(AliRunLoader* runLoader) const;
337c9041 26 virtual void Reconstruct(AliRunLoader* runLoader,
27 AliRawReader* rawReader) const;
cf464691 28
337c9041 29 virtual void FillESD(TTree* /*digitsTree*/, TTree* /*clustersTree*/,
30 AliESD* /*esd*/) const {return;}
31 virtual void FillESD(AliRawReader* /*rawReader*/, TTree* /*clustersTree*/,
32 AliESD* /*esd*/) const {return;}
8789635b 33 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const;
a2da7817 34 virtual void FillESD(AliRunLoader* runLoader,
35 AliRawReader* /*rawReader*/, AliESD* esd) const;
337c9041 36
cac2eb58 37
38 ClassDef(AliMUONReconstructor, 0) // class for the MUON reconstruction
39};
40
41#endif