]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliJetKineReaderHeader.h
MUON trigger classes to collaborate with CTP (E. Lopez Torres)
[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
83a444b1 21 void SetFastSimTPC(Bool_t flag = kTRUE) {fFastSimTPC = flag;} // if TPC fast simulation
22 void SetFastSimEMCAL(Bool_t flag = kTRUE) {fFastSimEMCAL = flag;} // if EMCAL fast simulation
23
99e5fe42 24 // Getter
25 Bool_t FastSimTPC() const {return fFastSimTPC;}
dd1aa8ee 26 Bool_t FastSimEMCAL() const {return fFastSimEMCAL;}
83a444b1 27
99e5fe42 28
29 protected:
30 //parameters set by user
31 Bool_t fFastSimTPC;
dd1aa8ee 32 Bool_t fFastSimEMCAL;
83a444b1 33
99e5fe42 34 ClassDef(AliJetKineReaderHeader,1);
35};
36
37#endif