]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/AliJetESDReader.h
Scripts needed for analysis.
[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 //---------------------------------------------------------------------
8 // Jet ESD Reader 
9 // ESD reader for jet analysis
10 // Author: Mercedes Lopez Noriega (mercedes.lopez.noriega@cern.ch)
11 //---------------------------------------------------------------------
12
13 #include "AliJetReader.h"
14 class AliJetESDReaderHeader;
15
16
17 class AliJetESDReader : public AliJetReader
18 {
19  public: 
20   AliJetESDReader();
21   virtual ~AliJetESDReader();
22
23   // Getters
24   Float_t GetTrackMass() const {return fMass;}  // returns mass of the track
25   Int_t   GetTrackSign() const {return fSign;}  // returns sign of the track
26
27   // Setters
28   void FillMomentumArray(Int_t event); 
29   void OpenInputFiles();
30    
31  protected:
32   Float_t fMass;    // Particle mass
33   Int_t   fSign;    // Particle sign
34
35   ClassDef(AliJetESDReader,1)
36 };
37  
38 #endif