]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDReconstructor.h
Bug fix (C.Cheshkov)
[u/mrichter/AliRoot.git] / FMD / AliFMDReconstructor.h
CommitLineData
121a60bd 1// Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved.
2// See cxx source for full Copyright notice
3// AliFMDReconstructor.h
4// Task Class for making TreeR in FMD
5//-- Authors: Evgeny Karpechev (INR) and Alla Maevskaia (INR)
6/*
7 Reconstruct nember of particles
8 in given group of pads for given FMDvolume
9 determine by numberOfVolume ,
10 numberOfMinSector,numberOfMaxSector,
11 numberOfMinRing, numberOfMaxRing
12 Reconstruction method choose dependence on number of empty pads
13 */
14/* $Id$ */
15
16
17#ifndef ALIFMDRECONSTRUCTOR_H
18#define ALIFMDRECONSTRUCTOR_H
19
20#include "AliReconstructor.h"
21
22
23class AliFMDReconstructor: public AliReconstructor
24{
25 public:
26 AliFMDReconstructor(): AliReconstructor() {};
27 virtual ~AliFMDReconstructor() {};
28
29 virtual void Reconstruct(AliRunLoader* runLoader) const;
30 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const;
31
32 ClassDef(AliFMDReconstructor, 0) // class for the FMD reconstruction
33
34
35};
36#endif
37
38
39
40
41
42
43
44
45