]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/AliJetESDmcReader.h
- configure adapted to the new directory structure of the HOMER module in PubSub
[u/mrichter/AliRoot.git] / JETAN / AliJetESDmcReader.h
1 #ifndef ALIJETESDMCREADER_H
2 #define ALIJETESDMCREADER_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 (it reads the esd and the MC trees)
9 // Author: Mercedes Lopez Noriega (mercedes.lopez.noriega@cern.ch)
10
11 #include "AliJetReader.h"
12 class AliJetESDReaderHeader;
13
14
15 class AliJetESDmcReader : public AliJetReader
16 {
17  public: 
18   AliJetESDmcReader();
19   virtual ~AliJetESDmcReader();
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(AliJetESDmcReader,1)
34 };
35  
36 #endif