]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDReconstructor.h
Extacting the OCDB in a separate module. The detectors have write permission in the...
[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"
7
8class AliPMDReconstructor: public AliReconstructor {
9public:
cb6ed79d 10 virtual void Reconstruct(AliRawReader* rawReader,
11 TTree* clustersTree) const;
8fbad6d3 12 virtual void Reconstruct(TTree* digitsTree, TTree* clustersTree) const;
13
cb6ed79d 14 virtual void FillESD(AliRawReader* /*rawReader*/, TTree* clustersTree,
af885e0f 15 AliESDEvent* esd) const;
8fbad6d3 16
17 virtual void FillESD(TTree* /*digitsTree*/, TTree* clustersTree,
af885e0f 18 AliESDEvent* esd) const;
8fbad6d3 19
05f4fa74 20private:
21
d76c31f4 22 ClassDef(AliPMDReconstructor, 5) // class for the PMD reconstruction
05f4fa74 23};
24
25#endif