]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDReconstruction.h
readers updated (mini header -> data header)
[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)
a39f3926 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 */
37c55dc0 14
15
dc8af42e 16#ifndef AliFMDReconstruction_h
dc8af42e 17#define AliFMDReconstruction_h
18
dc8af42e 19#include "TTask.h"
a39f3926 20class TString;
21class AliFMD;
dc8af42e 22
88cb7938 23class AliRunLoader;
24
dc8af42e 25class AliFMDReconstruction: public TTask
26{
27 public:
28 AliFMDReconstruction() ;
88cb7938 29 AliFMDReconstruction(AliRunLoader* rl) ;
dc8af42e 30 virtual ~AliFMDReconstruction();
46501dfb 31 virtual void Exec();
dc8af42e 32 void SetNEvents(Int_t Nevents){fNevents = Nevents;}
a39f3926 33 Stat_t GetNEvents() {return fNevents;}
34 TClonesArray *Digits() {return fDigits;}
a39f3926 35
dc8af42e 36 private:
cb1df35e 37 TClonesArray *fDigits; // ! array with digits
37c55dc0 38 Int_t fNevents ; // Number of events
3d44ce66 39
88cb7938 40 AliRunLoader* fRunLoader; //!Run Loader of that event
3d44ce66 41
37c55dc0 42 ClassDef(AliFMDReconstruction,2)
cb1df35e 43
44
a39f3926 45};
dc8af42e 46#endif
47
48
49
50
51
52
53
54
55