]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenPythiaEventHeader.h
Possibility to investigate a primary of not yet loaded particle (I.Hrivnacova)
[u/mrichter/AliRoot.git] / EVGEN / AliGenPythiaEventHeader.h
CommitLineData
c0ac61ca 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
12class 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;}
22protected:
23 Int_t fProcessType;
24 ClassDef(AliGenPythiaEventHeader,1) // Event header for Pythia event
25};
26
27#endif