]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FMD/AliFMDReconstruction.h
Removed fAlice and changed ReadTreeK to make it look as the others. Event now require...
[u/mrichter/AliRoot.git] / FMD / AliFMDReconstruction.h
index 40c81e49be96944d16b4cfa09e2e802e1e53f3e5..42ca0106e2ae40736e4823cd430da679aec15d0e 100644 (file)
@@ -1,16 +1,16 @@
+//   Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved.
+//  See cxx source for full Copyright notice                               
+//  AliFMDReconstruction.h 
+//  Task Class for making TreeR in FMD                        
+//-- Authors: Evgeny Karpechev (INR) and Alla Maevskaia (INR)
+
+
 #ifndef AliFMDReconstruction_h
-//#define AliFMDReconstruction_h 1
 #define AliFMDReconstruction_h
 
-// --- ROOT system ---
 #include "TTask.h"
 #include "TString.h"
 #include "AliFMD.h"
-#include "AliDetector.h"
-
-// --- Standard library ---
-
-// --- AliRoot header files ---
 
 class AliFMDReconstruction: public TTask 
 {
@@ -19,19 +19,17 @@ class AliFMDReconstruction: public TTask
   AliFMDReconstruction(char* HeaderFile,char *SdigitsFile = 0) ; 
   virtual ~AliFMDReconstruction();
   char *GetReconstParticlesFile()const{return (char*) fReconstParticlesFile.Data();}  
-  virtual void  Exec(TClonesArray *fReconParticles,Option_t *option); 
+  virtual void  Exec(Option_t *option); 
   void SetNEvents(Int_t Nevents){fNevents = Nevents;}
   Stat_t GetNEvents(){return fNevents;}
   void SetReconstParticlesFile(char * file ) ;
-  virtual void Print(Option_t* option) const ;
-  //TClonesArray *ReconParticles() const {return fReconParticles;}   
+  virtual void Print(Option_t* option) const ;   
 
  private:
-  Int_t   fNevents ;                         // Number of events to digitize
-  TString fReconstParticlesFile;    //output file 
+  Int_t   fNevents ;                         // Number of events
+  TString fReconstParticlesFile;             //output file 
   TString fHeadersFile ;                     //input file
-  //  TClonesArray *fReconParticles;
-  ClassDef(AliFMDReconstruction,1) 
+  ClassDef(AliFMDReconstruction,2) 
 };
 #endif