]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDReconstructor.h
fix warning: unused variables
[u/mrichter/AliRoot.git] / PMD / AliPMDReconstructor.h
CommitLineData
05f4fa74 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"
b3d178a4 7#include "AliPMDRecoParam.h"
05f4fa74 8
9class AliPMDReconstructor: public AliReconstructor {
10public:
908683d3 11 AliPMDReconstructor() : AliReconstructor() {}
12
cb6ed79d 13 virtual void Reconstruct(AliRawReader* rawReader,
14 TTree* clustersTree) const;
8fbad6d3 15 virtual void Reconstruct(TTree* digitsTree, TTree* clustersTree) const;
16
cb6ed79d 17 virtual void FillESD(AliRawReader* /*rawReader*/, TTree* clustersTree,
af885e0f 18 AliESDEvent* esd) const;
8fbad6d3 19
20 virtual void FillESD(TTree* /*digitsTree*/, TTree* clustersTree,
af885e0f 21 AliESDEvent* esd) const;
8fbad6d3 22
b3d178a4 23 static const AliPMDRecoParam* GetRecoParam() { return dynamic_cast<const AliPMDRecoParam*>(AliReconstructor::GetRecoParam(10)); } // getting RecoParam obj
24
05f4fa74 25private:
26
b3d178a4 27 ClassDef(AliPMDReconstructor, 6) // class for the PMD reconstruction
05f4fa74 28};
29
30#endif