]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDReconstruction.h
Updated VZERO source
[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
8 #ifndef AliFMDReconstruction_h
9 #define AliFMDReconstruction_h
10
11 #include "TTask.h"
12 #include "TString.h"
13 #include "AliFMD.h"
14
15 class AliFMDReconstruction: public TTask 
16 {
17  public:
18   AliFMDReconstruction() ; 
19   AliFMDReconstruction(char* HeaderFile,char *SdigitsFile = 0) ; 
20   virtual ~AliFMDReconstruction();
21   char *GetReconstParticlesFile()const{return (char*) fReconstParticlesFile.Data();}  
22   virtual void  Exec(Option_t *option); 
23   void SetNEvents(Int_t Nevents){fNevents = Nevents;}
24   Stat_t GetNEvents(){return fNevents;}
25   void SetReconstParticlesFile(char * file ) ;
26   virtual void Print(Option_t* option) const ;   
27
28  private:
29   Int_t   fNevents ;                         // Number of events
30   TString fReconstParticlesFile;             //output file 
31   TString fHeadersFile ;                     //input file
32   ClassDef(AliFMDReconstruction,2) 
33 };
34 #endif
35
36
37
38
39
40
41
42
43