]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/AliJetParticlesReaderHLT.h
Bugfix.
[u/mrichter/AliRoot.git] / JETAN / AliJetParticlesReaderHLT.h
1 #ifndef ALIJETPARTICLESREADERHLT_H
2 #define ALIJETPARTICLESREADERHLT_H
3
4 //___________________________________________________________________________
5 /////////////////////////////////////////////////////////////////////////////
6 //                                                                         //
7 // File reader for HLT tracks ESD                                          //
8 //                                                                         //
9 // loizides@ikf.uni-frankfurt.de                                           //
10 /////////////////////////////////////////////////////////////////////////////
11
12 #include "AliJetParticlesReaderESD.h"
13
14 class AliJetParticlesReaderHLT: public AliJetParticlesReaderESD
15 {
16   public:
17   AliJetParticlesReaderHLT(Bool_t bMapper, const Char_t* esdfilename = "AliESDs.root") ;
18   AliJetParticlesReaderHLT(Bool_t bMapper, TObjArray* dirs, const Char_t* esdfilename = "AliESDs.root");
19
20   virtual ~AliJetParticlesReaderHLT();
21
22   void SetMinHits(Int_t i){fMinHits=i;}
23   void SetMinWeight(Int_t i){fMinWeight=i;}
24
25   protected:
26   Int_t    ReadESD(AliESD* esd); //read esd file/objects
27
28   Bool_t fTrackerType; //track type: 0==Conformal Tracker, 1==Hough Tracker
29   Int_t fMinHits;      //minimum hits required
30   Int_t fMinWeight;    //minimum weight required 
31
32   ClassDef(AliJetParticlesReaderHLT,1) //
33 };
34
35 #endif