]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDReconstruction.h
Bug fix for SDD test beam simulation.
[u/mrichter/AliRoot.git] / FMD / AliFMDReconstruction.h
1 //   Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved.
2 //  See cxx source for full Copyright notice                               
3 //  AliFMDReconstruction.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
15
16 #ifndef AliFMDReconstruction_h
17 #define AliFMDReconstruction_h
18
19 #include "TTask.h"
20 class TString;
21 class AliFMD;
22
23 class AliRunLoader;
24
25 class AliFMDReconstruction: public TTask 
26 {
27  public:
28   AliFMDReconstruction() ; 
29   AliFMDReconstruction(AliRunLoader* rl) ; 
30   virtual ~AliFMDReconstruction();
31   virtual void  Exec(); 
32   void SetNEvents(Int_t Nevents){fNevents = Nevents;}
33   Stat_t GetNEvents()  {return fNevents;}
34   TClonesArray *Digits() {return fDigits;}
35   
36  private:
37   TClonesArray *fDigits;               // ! array with digits
38   Int_t   fNevents ;                         // Number of events
39   
40   AliRunLoader* fRunLoader;  //!Run Loader of that event
41   
42   ClassDef(AliFMDReconstruction,2) 
43
44
45 }; 
46 #endif
47
48
49
50
51
52
53
54
55