]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenHijing.h
Changed from hardcoded param to a version which gets the param string from AliL3Trans...
[u/mrichter/AliRoot.git] / EVGEN / AliGenHijing.h
CommitLineData
110410f9 1#ifndef ALIGENHIJING_H
2#define ALIGENHIJING_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
675e9664 8// Generator using HIJING as an external generator
9// The main HIJING options are accessable for the user through this interface.
10// andreas.morsch@cern.ch
110410f9 11
55d6adcf 12#include "AliGenMC.h"
3b8bd63f 13#include <TString.h>
110410f9 14#include <TArrayI.h>
15
65fb704d 16class THijing;
110410f9 17class TArrayI;
18class TParticle;
b23a502f 19class TClonesArray;
21ce2e6f 20class TGraph;
110410f9 21
55d6adcf 22class AliGenHijing : public AliGenMC
110410f9 23{
24 enum {kNoTrigger, kHardProcesses, kDirectPhotons};
25
26 public:
27 AliGenHijing();
28 AliGenHijing(Int_t npart);
29 AliGenHijing(const AliGenHijing &Hijing);
30 virtual ~AliGenHijing();
31 virtual void Generate();
32 virtual void Init();
33 // set centre of mass energy
34 virtual void SetEnergyCMS(Float_t energy=5500) {fEnergyCMS=energy;}
59d7832e 35 virtual void SetReferenceFrame(TString frame="CMS")
3b8bd63f 36 {fFrame=frame;}
0a33f383 37 virtual void SetProjectile(TString proj="A", Int_t a=208, Int_t z=82)
38 {fProjectile = proj; fAProjectile = a; fZProjectile = z;}
39 virtual void SetTarget(TString tar="A", Int_t a=208, Int_t z=82)
40 {fTarget = tar; fATarget = a; fZTarget = z;}
7a186781 41 virtual void SetImpactParameterRange(Float_t bmin = 0, Float_t bmax = 15.)
0a33f383 42 {fMinImpactParam=bmin; fMaxImpactParam=bmax;}
110410f9 43 virtual void KeepFullEvent();
ed6361b0 44 virtual void SetJetQuenching(Int_t flag=1) {fQuench = flag;}
45 virtual void SetShadowing(Int_t flag=1) {fShadowing = flag;}
46 virtual void SetDecaysOff(Int_t flag=1) {fDecaysOff = flag;}
47 virtual void SetTrigger(Int_t flag=kNoTrigger) {fTrigger = flag;}
48 virtual void SetFlavor(Int_t flag=0) {fFlavor = flag;}
49 virtual void SetEvaluate(Int_t flag=0) {fEvaluate = flag;}
50 virtual void SetSelectAll(Int_t flag=0) {fSelectAll = flag;}
332c8db0 51 virtual void SetRadiation(Int_t flag=3) {fRadiation = flag;}
2705454f 52 virtual void SetSpectators(Int_t spects=1) {fSpectators = spects;}
3792091f 53 virtual void SetPtJet(Float_t ptmin) {fPtMinJet = ptmin;}
54 virtual void SetSimpleJets(Int_t flag=0) {fSimpleJet = flag;}
0b22c984 55 virtual void SetNoGammas(Int_t flag=0) {fNoGammas = flag;}
56
e4ffda63 57 virtual void SetJetEtaRange(Float_t etamin = -20., Float_t etamax = 20.)
58 {fEtaMinJet = etamin; fEtaMaxJet = etamax;}
7a186781 59 virtual void SetJetPhiRange(Float_t phimin = -180., Float_t phimax = 180.)
6018641b 60 {fPhiMinJet = TMath::Pi()*phimin/180.; fPhiMaxJet = TMath::Pi()*phimax/180.;}
0a33f383 61 virtual void SetBoostLHC(Int_t flag = 0) {fLHC = flag;}
62// Getters
63 virtual Float_t GetEnergyCMS() {return fEnergyCMS;}
64 virtual TString GetReferenceFrame() {return fFrame;}
65 virtual void GetProjectile(TString& tar, Int_t& a, Int_t& z)
66 {tar = fProjectile; a = fAProjectile; z = fZProjectile;}
67 virtual void GetTarget(TString& tar, Int_t& a, Int_t& z)
68 {tar = fTarget; a = fATarget; z = fZTarget;}
69 virtual void GetImpactParameterRange(Float_t& bmin, Float_t& bmax)
70 {bmin = fMinImpactParam; bmax = fMaxImpactParam;}
71 virtual Int_t GetJetQuenching() {return fQuench;}
72 virtual Int_t GetShadowing() {return fShadowing;}
73 virtual Int_t GetTrigger(Int_t flag=kNoTrigger) {return fTrigger;}
74 virtual Int_t GetFlavor(Int_t flag=0) {return fFlavor;}
75 virtual Int_t GetRadiation(Int_t flag=3) {return fRadiation;}
76 virtual Int_t GetSpectators(Int_t spects=1) {return fSpectators;}
77 virtual Float_t GetPtJet(Float_t ptmin) {return fPtMinJet;}
78 virtual void GetJetEtaRange(Float_t& etamin, Float_t& etamax)
79 {etamin = fEtaMinJet; etamax = fEtaMaxJet;}
80 virtual void GetJetPhiRange(Float_t& phimin, Float_t& phimax)
81 {phimin = fPhiMinJet*180./TMath::Pi(); phimax = fPhiMaxJet*180./TMath::Pi();}
82
110410f9 83// Physics Routines
84 virtual void EvaluateCrossSections();
7a013373 85 virtual void Boost();
21ce2e6f 86 virtual TGraph* CrossSection() {return fDsigmaDb;}
e4ffda63 87 virtual TGraph* BinaryCollisions() {return fDnDb;}
88 virtual Bool_t CheckTrigger();
0a33f383 89//
90 AliGenHijing & operator=(const AliGenHijing & rhs);
eb342d2d 91 protected:
92 Bool_t SelectFlavor(Int_t pid);
3b8bd63f 93 void MakeHeader();
94
110410f9 95 protected:
3b8bd63f 96 TString fFrame; // Reference frame
97 TString fProjectile; // Projectile
98 TString fTarget; // Target
99 Int_t fAProjectile; // Projectile A
100 Int_t fZProjectile; // Projectile Z
101 Int_t fATarget; // Target A
102 Int_t fZTarget; // Target Z
110410f9 103 Float_t fMinImpactParam; // minimum impact parameter
104 Float_t fMaxImpactParam; // maximum impact parameter
3b8bd63f 105 Int_t fKeep; // Flag to keep full event information
106 Int_t fQuench; // Flag to switch on jet quenching
107 Int_t fShadowing; // Flag to switch on voclear effects on parton distribution function
108 Int_t fDecaysOff; // Flag to turn off decays of pi0, K_s, D, Lambda, sigma
109 Int_t fTrigger; // Trigger type
110 Int_t fEvaluate; // Evaluate total and partial cross-sections
111 Int_t fSelectAll; // Flag to write the full event
112 Int_t fFlavor; // Selected particle flavor 4: charm+beauty 5: beauty
3b8bd63f 113 Float_t fEnergyCMS; // Centre of mass energy
114 Float_t fKineBias; // Bias from kinematic selection
115 Int_t fTrials; // Number of trials
116 TArrayI fParentSelect; // Parent particles to be selected
117 TArrayI fChildSelect; // Decay products to be selected
118 Float_t fXsection; // Cross-section
119 THijing *fHijing; // Hijing
120 Float_t fPtHardMin; // lower pT-hard cut
121 Float_t fPtHardMax; // higher pT-hard cut
2705454f 122 Int_t fSpectators; // put spectators on stack
21ce2e6f 123 TGraph* fDsigmaDb; // dSigma/db for the system
ed6361b0 124 TGraph* fDnDb; // dNBinaryCollisions/db
332c8db0 125 Float_t fPtMinJet; // Minimum Pt of triggered Jet
e4ffda63 126 Float_t fEtaMinJet; // Minimum eta of triggered Jet
127 Float_t fEtaMaxJet; // Maximum eta of triggered Jet
7a186781 128 Float_t fPhiMinJet; // At least one of triggered Jets must be in this
129 Float_t fPhiMaxJet; // phi range
332c8db0 130 Int_t fRadiation; // Flag to switch on/off initial and final state radiation
3792091f 131 Int_t fSimpleJet; // Flag to produce simple tiggered jet topology
0b22c984 132 Int_t fNoGammas; // Don't write gammas if flag "on"
332c8db0 133
b46f2676 134// ZDC proposal (by Chiara) to store num. of SPECTATORS protons and neutrons
135 Int_t fSpecn; // Num. of spectator neutrons
136 Int_t fSpecp; // Num. of spectator protons
cc71f2d3 137 Int_t fLHC; // Assume LHC as lab frame
7a013373 138 TClonesArray* fParticles; // Particle List
cc71f2d3 139
110410f9 140 private:
110410f9 141 // adjust the weight from kinematic cuts
142 void AdjustWeights();
143 // check seleted daughters
7a013373 144 Bool_t DaughtersSelection(TParticle* iparticle);
608708ba 145 // check if stable
146 Bool_t Stable(TParticle* particle);
147
7a013373 148 ClassDef(AliGenHijing,4) // AliGenerator interface to Hijing
110410f9 149};
150#endif
151
152
153
154
155