]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVGEN/AliGenPythiaEventHeader.h
cd1822dd6b593f87c38ba505c90b4fc555fbd343
[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 protected:
23   Int_t fProcessType;
24   ClassDef(AliGenPythiaEventHeader,1) // Event header for Pythia event
25 };
26
27 #endif