]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliGenerator.h
1) provide a static pointer to THerwig to be able to retriev AVWGT after running...
[u/mrichter/AliRoot.git] / STEER / AliGenerator.h
CommitLineData
fe4da5cc 1#ifndef ALIGENERATOR_H
2#define ALIGENERATOR_H
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
fe4da5cc 8///////////////////////////////////////////////////////////
9// //
10// Class to generate the particles for the MC //
11// The base class is empty //
12// //
13///////////////////////////////////////////////////////////
14
116cbefd 15#include <TArrayF.h>
16#include <TLorentzVector.h>
17#include <TMCProcess.h>
18
65fb704d 19#include "AliRndm.h"
eeb8ca4e 20
14248849 21class AliVertexGenerator;
116cbefd 22class AliCollisionGeometry;
d6eec420 23class AliGenEventHeader;
69a313ec 24class AliStack;
116cbefd 25class TGenerator;
26
69a313ec 27
fe4da5cc 28
0b910a04 29typedef enum { kNoSmear, kPerEvent, kPerTrack } VertexSmear_t;
30typedef enum { kExternal, kInternal, kContainer} VertexSource_t;
fe4da5cc 31
69a313ec 32
65fb704d 33class AliGenerator : public TNamed, public AliRndm
fe4da5cc 34{
35
fe4da5cc 36 public:
e7c989e4 37
fe4da5cc 38 AliGenerator();
39 AliGenerator(Int_t npart);
40 virtual ~AliGenerator();
41 virtual void Init();
94de3818 42 virtual void SetOrigin(Float_t ox, Float_t oy, Float_t oz);
43 virtual void SetOrigin(const TLorentzVector &o);
44 virtual void SetSigma(Float_t sx, Float_t sy, Float_t sz);
132427f0 45 virtual void SetSigmaZ(Float_t sz) {fOsigma[2] = sz;}
94de3818 46 virtual void SetMomentumRange(Float_t pmin=0, Float_t pmax=1.e10);
d48c5cd4 47 virtual void SetPtRange(Float_t ptmin=0, Float_t ptmax=1.e10);
05be135b 48 virtual void SetPhiRange(Float_t phimin = 0., Float_t phimax = 360.);
94de3818 49 virtual void SetYRange(Float_t ymin=-100, Float_t ymax=100);
fe4da5cc 50 virtual void SetVRange(Float_t vxmin, Float_t vxmax,
51 Float_t vymin, Float_t vymax,
94de3818 52 Float_t vzmin, Float_t vzmax);
fe4da5cc 53 virtual void SetNumberParticles(Int_t npart=100) {fNpart=npart;}
94de3818 54 virtual Int_t NumberParticles() const {return fNpart;}
55 virtual void SetThetaRange(Float_t thetamin=0, Float_t thetamax=180);
fe4da5cc 56 virtual void Generate()=0;
57 virtual void SetParentWeight(Float_t wgt) {fParentWeight=wgt;}
58 virtual void SetChildWeight(Float_t wgt) {fChildWeight=wgt;}
59 virtual void SetAnalog(Int_t flag=1) {fAnalog=flag;}
60 virtual void SetVertexSmear(VertexSmear_t smear) {fVertexSmear = smear;}
c34578e7 61 virtual void SetCutVertexZ(Float_t cut=999999.) {fCutVertexZ = cut;}
0b910a04 62 virtual void SetVertexSource(VertexSource_t source = kInternal) {fVertexSource = source;}
63 virtual void SetVertex(Float_t vx, Float_t vy, Float_t vz)
64 {fVertex[0] = vx; fVertex[1] = vy; fVertex[2] = vz;}
14248849 65 void SetVertexGenerator(AliVertexGenerator* vertexGenerator)
66 {fVertexGenerator = vertexGenerator; fVertexSource = kExternal; fVertexSmear = kPerEvent;}
f0831961 67 void SetPileUpTimeWindow(Float_t pileUpTimeW) {fPileUpTimeWindow = pileUpTimeW;}
68
4a3ba9d2 69 virtual void SetTrackingFlag(Int_t flag=1) {fTrackIt=flag;}
f89cabfe 70 void Vertex();
71 void VertexExternal();
72 virtual void VertexInternal();
0b910a04 73 virtual void FinishRun();
a08cd31a 74 virtual void SetMC(TGenerator *theMC) {fMCEvGen =theMC;}
3d581b22 75 virtual TGenerator* GetMC() const {return fMCEvGen;}
d6eec420 76 virtual void AddHeader(AliGenEventHeader* /*header*/) {;}
77 virtual void SetContainer(AliGenerator* container) {fContainer = container;}
aee8290b 78
c9001868 79 // Getters
80
94de3818 81 virtual void GetOrigin(Float_t &ox, Float_t &oy, Float_t &oz) const
82 {ox=fOrigin.At(0);oy=fOrigin.At(1);oz=fOrigin.At(2);}
83 virtual void GetOrigin(TLorentzVector &o) const
84 {o[0]=fOrigin.At(0);o[1]=fOrigin.At(1);o[2]=fOrigin.At(2);o[3]=0;}
2c5b3727 85 // Stack
69a313ec 86 void SetStack (AliStack *stack) {fStack = stack;}
87 AliStack* GetStack(){return fStack;}
2c5b3727 88 // Collision Geometry
116cbefd 89 virtual Bool_t ProvidesCollisionGeometry() const {return kFALSE;}
90 virtual Bool_t NeedsCollisionGeometry() const {return kFALSE;}
39192f05 91 virtual AliCollisionGeometry* CollisionGeometry() const {return fCollisionGeometry;}
2c5b3727 92 virtual void SetCollisionGeometry(AliCollisionGeometry* geom) {fCollisionGeometry = geom;}
e7c989e4 93
94 virtual Float_t GetEnergyCMS() const { return fEnergyCMS; }
95 virtual void SetEnergyCMS(Float_t energy = 0) { fEnergyCMS = energy; }
96 virtual void GetProjectile(TString& tar, Int_t& a, Int_t& z) const
97 {tar = fProjectile; a = fAProjectile; z = fZProjectile;}
98 virtual void GetTarget(TString& tar, Int_t& a, Int_t& z) const
99 {tar = fTarget; a = fATarget; z = fZTarget;}
100 virtual void SetProjectile(TString proj="", Int_t a = 0, Int_t z = 0)
101 {fProjectile = proj; fAProjectile = a; fZProjectile = z;}
102 virtual void SetTarget(TString tar="", Int_t a = 0, Int_t z = 0)
103 {fTarget = tar; fATarget = a; fZTarget = z;}
104
69a313ec 105 protected:
642f15cf 106 virtual void PushTrack(Int_t done, Int_t parent, Int_t pdg,
69a313ec 107 Float_t *pmom, Float_t *vpos, Float_t *polar,
98490ea9 108 Float_t tof, TMCProcess mech, Int_t &ntr,
47c8bcbe 109 Float_t weight = 1, Int_t is = 0);
642f15cf 110 virtual void PushTrack(Int_t done, Int_t parent, Int_t pdg,
69a313ec 111 Double_t px, Double_t py, Double_t pz, Double_t e,
112 Double_t vx, Double_t vy, Double_t vz, Double_t tof,
113 Double_t polx, Double_t poly, Double_t polz,
98490ea9 114 TMCProcess mech, Int_t &ntr, Float_t weight = 1, Int_t is = 0);
69a313ec 115 virtual void KeepTrack(Int_t itrack);
116 virtual void SetHighWaterMark(Int_t nt);
e7c989e4 117
69a313ec 118 protected:
a08cd31a 119 TGenerator* fMCEvGen; //!Pointer to the generator
aee8290b 120 Float_t fThetaMin; //Minimum theta of generation in radians
121 Float_t fThetaMax; //Maximum theta of generation in radians
122 Float_t fPhiMin; //Minimum phi of generation in radians
123 Float_t fPhiMax; //Maximum phi of generation in radians
124 Float_t fPMin; //Minimum momentum of generation in GeV/c
125 Float_t fPMax; //Minimum momentum of generation in GeV/c
126 Float_t fPtMin; //Minimum transverse momentum
127 Float_t fPtMax; //Maximum transverse momentum
128 Float_t fYMin; //Minimum rapidity
129 Float_t fYMax; //Maximum rapidity
130 TArrayF fVMin; //Minimum Decaylength
131 TArrayF fVMax; //Minimum Decaylength
132 Int_t fNpart; //Maximum number of particles per event
133 Float_t fParentWeight; //Parent Weight
134 Float_t fChildWeight; //ChildWeight
69a313ec 135 Int_t fAnalog; //Flag for anolog or pt-weighted generation
aee8290b 136 //
f89cabfe 137 VertexSmear_t fVertexSmear; //Vertex Smearing mode
c34578e7 138 VertexSource_t fVertexSource; //Vertex source (internal/external)
f0831961 139 Float_t fCutVertexZ; //Vertex cut in units of sigma_z
140 Float_t fPileUpTimeWindow; //Time window for pile-up events
6df200c3 141 Int_t fTrackIt; // if 1, Track final state particles
14248849 142 AliVertexGenerator* fVertexGenerator; //! Generator for the vertex
f89cabfe 143 TArrayF fOrigin; // Origin of event
6df200c3 144 TArrayF fOsigma; // Sigma of the Origin of event
d6eec420 145 TArrayF fVertex; //! Vertex of current event
c34578e7 146
d6eec420 147 AliStack* fStack; //! Local pointer to stack
148 AliGenerator* fContainer; //! Local pointer to container
149
2c5b3727 150 AliCollisionGeometry* fCollisionGeometry; //!Collision geometry
69a313ec 151 /*************************************************************************/
5e34a898 152 enum {kThetaRange = BIT(14),
153 kVertexRange = BIT(15),
69a313ec 154 kPhiRange = BIT(16),
5e34a898 155 kPtRange = BIT(17),
69a313ec 156 kYRange = BIT(18),
157 kMomentumRange = BIT(19)
5e34a898 158 };
93a2041b 159
e7c989e4 160 Float_t fEnergyCMS; // Centre of mass energy
161 Int_t fAProjectile; // Projectile A
162 Int_t fZProjectile; // Projectile Z
163 Int_t fATarget; // Target A
164 Int_t fZTarget; // Target Z
165 TString fProjectile; // Projectile
166 TString fTarget; // Target
167
93a2041b 168 private:
169 AliGenerator(const AliGenerator &gen);
170 AliGenerator & operator=(const AliGenerator &gen);
171
e7c989e4 172 ClassDef(AliGenerator,4) // Base class for event generators
fe4da5cc 173};
174
175#endif
69a313ec 176
177
178
c34578e7 179
180
181
182
183
184
185
186
187
188
189