]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - MUON/AliMUONReconstructor.h
Corrected overloading functions (defined in TObject) (Ivana)
[u/mrichter/AliRoot.git] / MUON / AliMUONReconstructor.h
... / ...
CommitLineData
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
11class AliMUONReconstructor: public AliReconstructor
12{
13 public:
14 AliMUONReconstructor();
15 virtual ~AliMUONReconstructor();
16
17 virtual void Reconstruct(AliRunLoader* runLoader) const;
18 virtual void Reconstruct(AliRunLoader* runLoader,
19 AliRawReader* rawReader) const;
20
21 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const;
22
23 ClassDef(AliMUONReconstructor, 0) // class for the MUON reconstruction
24};
25
26#endif