]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVGEN/AliGenPythiaEventHeader.h
50866e017f0c1005caa241bb9a9037dcae039a7a
[u/mrichter/AliRoot.git] / EVGEN / AliGenPythiaEventHeader.h
1 #ifndef ALIGENPYTHIAEVENTHEADER_H
2 #define ALIGENPYTHIAEVENTHEADER_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
12 class AliGenPythiaEventHeader : public AliGenEventHeader
13 {
14  public:
15   AliGenPythiaEventHeader(const char* name){;}
16   AliGenPythiaEventHeader(){;}
17   virtual ~AliGenPythiaEventHeader() {}
18   // Getters
19   Int_t ProcessType()  {return fProcessType;}
20   // Setters
21   void  SetProcessType(Int_t type)  {fProcessType = type;}
22   Int_t Trials() {return fTrials;}
23   void  SetTrials(Int_t trials) {fTrials = trials;}
24 protected:
25   Int_t   fProcessType;              // PYTHIA process id for this event 
26   Int_t   fTrials;                   // Number of trials to fulfill trigger condition
27   ClassDef(AliGenPythiaEventHeader,1) // Event header for Pythia event
28 };
29
30 #endif