X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=FMD%2FAliFMDReconstruction.h;h=42ca0106e2ae40736e4823cd430da679aec15d0e;hb=5b5d8342f0e7e9551165480ef3453c970d9d0761;hp=40c81e49be96944d16b4cfa09e2e802e1e53f3e5;hpb=dc8af42e765ec2b5d86ad0fee473cdcc33ce6f99;p=u%2Fmrichter%2FAliRoot.git diff --git a/FMD/AliFMDReconstruction.h b/FMD/AliFMDReconstruction.h index 40c81e49be9..42ca0106e2a 100644 --- a/FMD/AliFMDReconstruction.h +++ b/FMD/AliFMDReconstruction.h @@ -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