]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliGenHerwigEventHeader.h
The description of changes:
[u/mrichter/AliRoot.git] / STEER / AliGenHerwigEventHeader.h
CommitLineData
bef86169 1#ifndef ALIGENHERWIGEVENTHEADER_H
2#define ALIGENHERWIGEVENTHEADER_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
8
9#include "AliGenEventHeader.h"
10
11
12class AliGenHerwigEventHeader : public AliGenEventHeader
13{
14 public:
15 AliGenHerwigEventHeader();
16 AliGenHerwigEventHeader(const char* name);
17 virtual ~AliGenHerwigEventHeader() {}
18 Int_t ProcessType() {return fProcessType;}
19 void SetProcessType(Int_t type) {fProcessType = type;}
20 Int_t Trials() {return fTrials;}
21 void SetTrials(Int_t trials) {fTrials = trials;}
22protected:
23 Int_t fProcessType; // HERWIG process id for this event
24 Int_t fTrials; // Number of trials to fulfill trigger condition
25 ClassDef(AliGenHerwigEventHeader, 1) // Event header for Herwig event
26};
27
28
29
30#endif