]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - PMD/AliPMDReconstructor.h
added HLTOUT treatment for HLTReconstruction
[u/mrichter/AliRoot.git] / PMD / AliPMDReconstructor.h
... / ...
CommitLineData
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:
10 virtual void Reconstruct(AliRawReader* rawReader,
11 TTree* clustersTree) const;
12 virtual void Reconstruct(TTree* digitsTree, TTree* clustersTree) const;
13
14 virtual void FillESD(AliRawReader* /*rawReader*/, TTree* clustersTree,
15 AliESDEvent* esd) const;
16
17 virtual void FillESD(TTree* /*digitsTree*/, TTree* clustersTree,
18 AliESDEvent* esd) const;
19
20private:
21
22 ClassDef(AliPMDReconstructor, 5) // class for the PMD reconstruction
23};
24
25#endif