From 94a4bce7b7fa82de544e1783c692bf21d9260541 Mon Sep 17 00:00:00 2001 From: morsch Date: Wed, 19 Dec 2001 14:38:31 +0000 Subject: [PATCH] Number of trials for bookkeeping added. --- EVGEN/AliGenPythiaEventHeader.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/EVGEN/AliGenPythiaEventHeader.h b/EVGEN/AliGenPythiaEventHeader.h index cd1822dd6b5..50866e017f0 100644 --- a/EVGEN/AliGenPythiaEventHeader.h +++ b/EVGEN/AliGenPythiaEventHeader.h @@ -16,11 +16,14 @@ class AliGenPythiaEventHeader : public AliGenEventHeader AliGenPythiaEventHeader(){;} virtual ~AliGenPythiaEventHeader() {} // Getters - Int_t ProcessType() {return fProcessType;} + Int_t ProcessType() {return fProcessType;} // Setters - void SetProcessType(Int_t type) {fProcessType = type;} + void SetProcessType(Int_t type) {fProcessType = type;} + Int_t Trials() {return fTrials;} + void SetTrials(Int_t trials) {fTrials = trials;} protected: - Int_t fProcessType; + Int_t fProcessType; // PYTHIA process id for this event + Int_t fTrials; // Number of trials to fulfill trigger condition ClassDef(AliGenPythiaEventHeader,1) // Event header for Pythia event }; -- 2.43.0