]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenHijing.h
Common vertex related code moved to base class AliGenerator.
[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;}
59d7832e 37 virtual void SetProjectile(TString proj="A",
3b8bd63f 38 Int_t a=208, Int_t z=82)
110410f9 39 {fProjectile = proj;
40 fAProjectile = a;
41 fZProjectile = z;}
59d7832e 42 virtual void SetTarget(TString tar="A",
3b8bd63f 43 Int_t a=208, Int_t z=82)
110410f9 44 {fTarget = tar;
45 fATarget = a;
46 fZTarget =z;}
47 virtual void SetImpactParameterRange(Float_t bmin = 0, Float_t bmax =15.)
48 { fMinImpactParam=bmin;
49 fMaxImpactParam=bmax;
50 }
51 virtual void KeepFullEvent();
ed6361b0 52 virtual void SetJetQuenching(Int_t flag=1) {fQuench = flag;}
53 virtual void SetShadowing(Int_t flag=1) {fShadowing = flag;}
54 virtual void SetDecaysOff(Int_t flag=1) {fDecaysOff = flag;}
55 virtual void SetTrigger(Int_t flag=kNoTrigger) {fTrigger = flag;}
56 virtual void SetFlavor(Int_t flag=0) {fFlavor = flag;}
57 virtual void SetEvaluate(Int_t flag=0) {fEvaluate = flag;}
58 virtual void SetSelectAll(Int_t flag=0) {fSelectAll = flag;}
332c8db0 59 virtual void SetRadiation(Int_t flag=3) {fRadiation = flag;}
2705454f 60 virtual void SetSpectators(Int_t spects=1) {fSpectators = spects;}
ed6361b0 61 virtual void SetPtMinJet(Float_t ptmin) {fPtMinJet = ptmin;}
eb342d2d 62 AliGenHijing & operator=(const AliGenHijing & rhs);
110410f9 63// Physics Routines
64 virtual void EvaluateCrossSections();
21ce2e6f 65 virtual TGraph* CrossSection() {return fDsigmaDb;}
66 virtual TGraph* BinaryCollisions() {return fDnDb;}
eb342d2d 67 protected:
68 Bool_t SelectFlavor(Int_t pid);
3b8bd63f 69 void MakeHeader();
70
110410f9 71 protected:
3b8bd63f 72 TString fFrame; // Reference frame
73 TString fProjectile; // Projectile
74 TString fTarget; // Target
75 Int_t fAProjectile; // Projectile A
76 Int_t fZProjectile; // Projectile Z
77 Int_t fATarget; // Target A
78 Int_t fZTarget; // Target Z
110410f9 79 Float_t fMinImpactParam; // minimum impact parameter
80 Float_t fMaxImpactParam; // maximum impact parameter
3b8bd63f 81 Int_t fKeep; // Flag to keep full event information
82 Int_t fQuench; // Flag to switch on jet quenching
83 Int_t fShadowing; // Flag to switch on voclear effects on parton distribution function
84 Int_t fDecaysOff; // Flag to turn off decays of pi0, K_s, D, Lambda, sigma
85 Int_t fTrigger; // Trigger type
86 Int_t fEvaluate; // Evaluate total and partial cross-sections
87 Int_t fSelectAll; // Flag to write the full event
88 Int_t fFlavor; // Selected particle flavor 4: charm+beauty 5: beauty
3b8bd63f 89 Float_t fEnergyCMS; // Centre of mass energy
90 Float_t fKineBias; // Bias from kinematic selection
91 Int_t fTrials; // Number of trials
92 TArrayI fParentSelect; // Parent particles to be selected
93 TArrayI fChildSelect; // Decay products to be selected
94 Float_t fXsection; // Cross-section
95 THijing *fHijing; // Hijing
96 Float_t fPtHardMin; // lower pT-hard cut
97 Float_t fPtHardMax; // higher pT-hard cut
2705454f 98 Int_t fSpectators; // put spectators on stack
21ce2e6f 99 TGraph* fDsigmaDb; // dSigma/db for the system
ed6361b0 100 TGraph* fDnDb; // dNBinaryCollisions/db
332c8db0 101 Float_t fPtMinJet; // Minimum Pt of triggered Jet
102 Int_t fRadiation; // Flag to switch on/off initial and final state radiation
103
b46f2676 104// ZDC proposal (by Chiara) to store num. of SPECTATORS protons and neutrons
105 Int_t fSpecn; // Num. of spectator neutrons
106 Int_t fSpecp; // Num. of spectator protons
107
110410f9 108 private:
110410f9 109 // adjust the weight from kinematic cuts
110 void AdjustWeights();
111 // check seleted daughters
112 Bool_t DaughtersSelection(TParticle* iparticle, TClonesArray* particles);
608708ba 113 // check if stable
114 Bool_t Stable(TParticle* particle);
115
110410f9 116 ClassDef(AliGenHijing,1) // AliGenerator interface to Hijing
117};
118#endif
119
120
121
122
123