X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=JETAN%2FAliJetKineReaderHeader.h;h=855c976e7e558d161cdea6390cb5b6ffb5fabad5;hb=d3b8c07fb430cdb2dc5405c657649c7e8a502a26;hp=8f60288485598654d091698c8e2ceb30d134f273;hpb=1240edf52b298cfdce5a984cdb4c144b1515be50;p=u%2Fmrichter%2FAliRoot.git diff --git a/JETAN/AliJetKineReaderHeader.h b/JETAN/AliJetKineReaderHeader.h index 8f602884855..855c976e7e5 100644 --- a/JETAN/AliJetKineReaderHeader.h +++ b/JETAN/AliJetKineReaderHeader.h @@ -3,38 +3,40 @@ /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ + +/* $Id$ */ +//---------------------------------------------------- // Jet Kinematics Reader Header -// Header for the Kine reader in the jet analysis +// Header for the reader in the jet analysis for Kinematics // Author: Andreas Morsch (andreas.morsch@cern.ch) +//---------------------------------------------------- #include "AliJetReaderHeader.h" class AliJetKineReaderHeader : public AliJetReaderHeader { - public: AliJetKineReaderHeader(); - virtual ~AliJetKineReaderHeader(); + virtual ~AliJetKineReaderHeader() {} // Setters - void SetFastSimTPC(Bool_t flag = kTRUE) {fFastSimTPC = flag;} // if TPC fast simulation - void SetFastSimEMCAL(Bool_t flag = kTRUE) {fFastSimEMCAL = flag;} // if EMCAL fast simulation - void SetChargedOnly(Bool_t flag = kTRUE) {fChargedOnly = flag;} // for charged particles only, no smearing and no acceptance cuts + void SetFastSimTPC(Bool_t flag = kTRUE) {fFastSimTPC = flag;} // if TPC fast simulation + void SetFastSimEMCAL(Bool_t flag = kTRUE) {fFastSimEMCAL = flag;} // if EMCAL fast simulation + void SetChargedOnly(Bool_t flag = kTRUE) {fChargedOnly = flag;} // for charged particles only, no smearing and no acceptance cuts // Getter - Bool_t FastSimTPC() const {return fFastSimTPC;} + Bool_t FastSimTPC() const {return fFastSimTPC;} Bool_t FastSimEMCAL() const {return fFastSimEMCAL;} - Bool_t ChargedOnly() const {return fChargedOnly;} + Bool_t ChargedOnly() const {return fChargedOnly;} - protected: //parameters set by user - Bool_t fFastSimTPC; // TPC fast simulation flag - Bool_t fFastSimEMCAL; // EMCAL fast simulation flag - Bool_t fChargedOnly; // Charged particle only flag + Bool_t fFastSimTPC; // TPC fast simulation flag + Bool_t fFastSimEMCAL; // EMCAL fast simulation flag + Bool_t fChargedOnly; // charged particles only flag - ClassDef(AliJetKineReaderHeader,2); + ClassDef(AliJetKineReaderHeader,3) // Kinematics reader header class }; #endif