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