]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDReconstructor.h
5d638c5b6d398b1dd0dd6d880c2db91fcfbd2ce4
[u/mrichter/AliRoot.git] / FMD / AliFMDReconstructor.h
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
23 class 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