]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/STEERBase/AliGenDPMjetEventHeader.h
1) Centrality dependent thresholds parameters
[u/mrichter/AliRoot.git] / STEER / STEERBase / AliGenDPMjetEventHeader.h
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     AliGenDPMjetEventHeader(const char* name);
16     AliGenDPMjetEventHeader();
17     virtual ~AliGenDPMjetEventHeader() {}
18
19   // Getters
20   Float_t TotalEnergy()  const {return fTotalEnergy;} 
21   Int_t   Trials()       const {return fTrials;}
22   Int_t   ProcessType()  const {return fProcessType;}
23   void    SetNDiffractive(Int_t sd1, Int_t sd2, Int_t sdd) {fNSD1 = sd1; fNSD2 = sd2; fNDD = sdd;}
24   void    GetNDiffractive(Int_t& sd1, Int_t& sd2, Int_t& sdd) {sd1 = fNSD1; sd2 = fNSD2; sdd = fNDD;}
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           
30 protected:
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   Int_t   fNSD1;                     // number of SD1 in pA, AA 
35   Int_t   fNSD2;                     // number of SD2 in pA, AA
36   Int_t   fNDD;                      // number of DD  in pA, AA
37   ClassDef(AliGenDPMjetEventHeader,1) // Event header for dpmjet event
38 };
39
40 #endif