]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliJetESDReader.h
START positions
[u/mrichter/AliRoot.git] / JETAN / AliJetESDReader.h
CommitLineData
99e5fe42 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
83a444b1 7//---------------------------------------------------------------------
99e5fe42 8// Jet ESD Reader
9// ESD reader for jet analysis
10// Author: Mercedes Lopez Noriega (mercedes.lopez.noriega@cern.ch)
83a444b1 11//---------------------------------------------------------------------
99e5fe42 12
13#include "AliJetReader.h"
14class AliJetESDReaderHeader;
15
16
17class AliJetESDReader : public AliJetReader
18{
19 public:
20 AliJetESDReader();
21 virtual ~AliJetESDReader();
22
23 // Getters
83a444b1 24 Float_t GetTrackMass() const {return fMass;} // returns mass of the track
25 Int_t GetTrackSign() const {return fSign;} // returns sign of the track
99e5fe42 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