]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliJetKineReaderHeader.h
Temporary removing AliEMCALv3 and AliEMCALHitv1 from the compilation until they are...
[u/mrichter/AliRoot.git] / JETAN / AliJetKineReaderHeader.h
CommitLineData
99e5fe42 1#ifndef ALIJETKINEREADERHEADER_H
2#define ALIJETKINEREADERHEADER_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 Kinematics Reader Header
8// Header for the Kine reader in the jet analysis
9// Author: Andreas Morsch (andreas.morsch@cern.ch)
10
11#include "AliJetReaderHeader.h"
12
13class AliJetKineReaderHeader : public AliJetReaderHeader
14{
15
16 public:
17 AliJetKineReaderHeader();
18 virtual ~AliJetKineReaderHeader();
19
20 // Setters
21 void SetFastSimTPC(Bool_t flag = kTRUE) {fFastSimTPC = flag;}
dd1aa8ee 22 void SetFastSimEMCAL(Bool_t flag = kTRUE) {fFastSimEMCAL = flag;}
ab737211 23 virtual void SetPtCut(Float_t par = 2.0) {fPtCut = par;}
99e5fe42 24 // Getter
25 Bool_t FastSimTPC() const {return fFastSimTPC;}
dd1aa8ee 26 Bool_t FastSimEMCAL() const {return fFastSimEMCAL;}
99e5fe42 27 Float_t GetPtCut() const {return fPtCut;}
28
29 protected:
30 //parameters set by user
31 Bool_t fFastSimTPC;
dd1aa8ee 32 Bool_t fFastSimEMCAL;
99e5fe42 33 Float_t fPtCut;
34 ClassDef(AliJetKineReaderHeader,1);
35};
36
37#endif