1a52e0ed |
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 | |
12 | class AliGenDPMjetEventHeader : public AliGenEventHeader, public AliCollisionGeometry |
13 | { |
14 | public: |
15 | |
16 | AliGenDPMjetEventHeader(const char* name){;} |
17 | AliGenDPMjetEventHeader(){;} |
18 | virtual ~AliGenDPMjetEventHeader() {} |
19 | |
20 | // Getters |
21 | Float_t TotalEnergy() {return fTotalEnergy;} |
22 | Int_t Trials() {return fTrials;} |
23 | |
24 | // Setters |
25 | void SetTotalEnergy(Float_t energy) {fTotalEnergy=energy;} |
26 | void SetTrials(Int_t trials) {fTrials = trials;} |
27 | |
28 | protected: |
29 | Float_t fTotalEnergy; // Total energy of produced particles |
30 | Int_t fTrials; // Number of trials to fulfill trigger condition |
31 | |
32 | ClassDef(AliGenDPMjetEventHeader,1) // Event header for dpmjet event |
33 | }; |
34 | |
35 | #endif |