]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/AliJetESDReader.h
TPC fast simulation added.
[u/mrichter/AliRoot.git] / JETAN / AliJetESDReader.h
1 #ifndef ALIJETESDREADER_H
2 #define ALIJETESDREADER_H
3  
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6  
7 // Jet ESD Reader 
8 // ESD reader for jet analysis
9 // Author: Mercedes Lopez Noriega (mercedes.lopez.noriega@cern.ch)
10
11 #include "AliJetReader.h"
12 class AliJetESDReaderHeader;
13
14
15 class AliJetESDReader : public AliJetReader
16 {
17  public: 
18   AliJetESDReader();
19   virtual ~AliJetESDReader();
20
21   // Getters
22   Float_t GetTrackMass() const {return fMass;}     // returns mass of the track
23   Int_t   GetTrackSign() const {return fSign;}     // returns sign of the track
24
25   // Setters
26   void FillMomentumArray(Int_t event); 
27   void OpenInputFiles();
28    
29  protected:
30   Float_t fMass;    // Particle mass
31   Int_t   fSign;    // Particle sign
32
33   ClassDef(AliJetESDReader,1)
34 };
35  
36 #endif