]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/STEERBase/AliGenDPMjetEventHeader.h
Updates in order to enable the '2D' PID for the TRD developed by Daniel Lohner.
[u/mrichter/AliRoot.git] / STEER / STEERBase / AliGenDPMjetEventHeader.h
CommitLineData
d650875e 1#ifndef ALIGENDPMJETEVENTHEADER_H
2#define ALIGENDPMJETEVENTHEADER_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7#include <TLorentzVector.h>
8
9#include "AliGenEventHeader.h"
10#include "AliCollisionGeometry.h"
11
12class AliGenDPMjetEventHeader : public AliGenEventHeader, public AliCollisionGeometry
13{
14 public:
15 AliGenDPMjetEventHeader(const char* name);
16 AliGenDPMjetEventHeader();
17 virtual ~AliGenDPMjetEventHeader() {}
18
19 // Getters
5e6a3170 20 Float_t TotalEnergy() const {return fTotalEnergy;}
21 Int_t Trials() const {return fTrials;}
22 Int_t ProcessType() const {return fProcessType;}
d650875e 23
24
25 // Setters
26 void SetTotalEnergy(Float_t energy) {fTotalEnergy = energy;}
27 void SetTrials(Int_t trials) {fTrials = trials;}
28 void SetProcessType(Int_t type) {fProcessType = type;}
29
30protected:
31 Float_t fTotalEnergy; // Total energy of produced particles
32 Int_t fTrials; // Number of trials to fulfill trigger condition
33 Int_t fProcessType; // Process Type
34
35 ClassDef(AliGenDPMjetEventHeader,1) // Event header for dpmjet event
36};
37
38#endif