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