]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenBox.cxx
Results saved in output root files
[u/mrichter/AliRoot.git] / EVGEN / AliGenBox.cxx
CommitLineData
790bbabf 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
88cb7938 16/* $Id$ */
790bbabf 17
790bbabf 18
675e9664 19// Generator for particles in a preset
20// kinematic range (flat distribution)
21// Note that for a given theta pt and p are not independent
22// Range for only one variable (pt or p) should be given.
675e9664 23// Comments and suggestions: andreas.morsch@cern.ch
0af12c00 24
790bbabf 25
116cbefd 26#include "TPDGCode.h"
27
28#include "AliConst.h"
790bbabf 29#include "AliGenBox.h"
30#include "AliRun.h"
42cca6d4 31#include "AliGenEventHeader.h"
565cc9c0 32#include "TDatabasePDG.h"
33#include "AliPDG.h"
790bbabf 34
35ClassImp(AliGenBox)
36
37//_____________________________________________________________________________
38AliGenBox::AliGenBox()
1c56e311 39 :AliGenerator(),
a8c51211 40 fIpart(0),
41 fEtaMin(0),
42 fEtaMax(0)
790bbabf 43{
44 //
45 // Default constructor
46 //
790bbabf 47}
48
49//_____________________________________________________________________________
50AliGenBox::AliGenBox(Int_t npart)
1c56e311 51 :AliGenerator(npart),
a8c51211 52 fIpart(kProton),
53 fEtaMin(0),
54 fEtaMax(0)
790bbabf 55{
56 //
57 // Standard constructor
58 //
8b31bfac 59 fName = "Box";
60 fTitle = "Box particle generator";
790bbabf 61}
62
63//_____________________________________________________________________________
64
65void AliGenBox::Generate()
66{
67 //
68 // Generate one trigger
69 //
70
71 Float_t polar[3]= {0,0,0};
72 //
73 Float_t origin[3];
74 Float_t p[3];
75 Int_t i, j, nt;
76 Double_t pmom, theta, phi, pt;
565cc9c0 77 Double_t y, mt;
790bbabf 78 //
79 Float_t random[6];
80 //
81 for (j=0;j<3;j++) origin[j]=fOrigin[j];
aee8290b 82 if(fVertexSmear==kPerEvent) {
c8f7f6f9 83 Vertex();
84 for (j=0;j<3;j++) origin[j]=fVertex[j];
790bbabf 85 }
c8f7f6f9 86
565cc9c0 87 Double_t m = TDatabasePDG::Instance()->GetParticle(fIpart)->Mass();
88
790bbabf 89 for(i=0;i<fNpart;i++) {
65fb704d 90 Rndm(random,3);
898bb7f8 91
565cc9c0 92 if (TestBit(kYRange)) {
93 y = fYMin+random[0]*(fYMax-fYMin);
94
95 if(TestBit(kMomentumRange)) {
96 pmom=fPMin+random[1]*(fPMax-fPMin);
97 mt = TMath::Sqrt(pmom*pmom+m*m)/TMath::CosH(y);
98 pt = TMath::Sqrt(mt*mt - m*m);
99 } else {
100 pt=fPtMin+random[1]*(fPtMax-fPtMin);
101 mt=TMath::Sqrt(pt*pt+m*m);
102 }
103
104 phi=fPhiMin+random[2]*(fPhiMax-fPhiMin);
105 p[0] = pt*TMath::Cos(phi);
106 p[1] = pt*TMath::Sin(phi);
107 p[2] = mt*TMath::SinH(y);
790bbabf 108 } else {
565cc9c0 109 if (TestBit(kThetaRange)) {
110 theta = fThetaMin+random[0]*(fThetaMax-fThetaMin);
111 } else {
112 Float_t eta = fEtaMin+random[0]*(fEtaMax-fEtaMin);
113 theta = 2. * TMath::ATan(TMath::Exp(-eta));
114 }
115
116 if(TestBit(kMomentumRange)) {
117 pmom=fPMin+random[1]*(fPMax-fPMin);
118 pt=pmom*TMath::Sin(theta);
119 } else {
790bbabf 120
565cc9c0 121 pt=fPtMin+random[1]*(fPtMax-fPtMin);
122 pmom=pt/TMath::Sin(theta);
123 }
898bb7f8 124
565cc9c0 125 phi=fPhiMin+random[2]*(fPhiMax-fPhiMin);
126 p[0] = pt*TMath::Cos(phi);
127 p[1] = pt*TMath::Sin(phi);
128 p[2] = pmom*TMath::Cos(theta);
129 }
790bbabf 130
aee8290b 131 if(fVertexSmear==kPerTrack) {
65fb704d 132 Rndm(random,6);
790bbabf 133 for (j=0;j<3;j++) {
134 origin[j]=fOrigin[j]+fOsigma[j]*TMath::Cos(2*random[2*j]*TMath::Pi())*
135 TMath::Sqrt(-2*TMath::Log(random[2*j+1]));
136 }
137 }
642f15cf 138 PushTrack(fTrackIt,-1,fIpart,p,origin,polar,0,kPPrimary,nt);
790bbabf 139 }
42cca6d4 140
141 AliGenEventHeader* header = new AliGenEventHeader("BOX");
142 header->SetPrimaryVertex(fVertex);
7cf36cae 143 header->SetNProduced(fNpart);
144
145 // Passes header either to the container or to gAlice
146 if (fContainer) {
147 fContainer->AddHeader(header);
148 } else {
149 gAlice->SetGenEventHeader(header);
150 }
790bbabf 151}
152
153//_____________________________________________________________________________
154
155void AliGenBox::Init()
156{
157// Initialisation, check consistency of selected ranges
158 if(TestBit(kPtRange)&&TestBit(kMomentumRange))
159 Fatal("Init","You should not set the momentum range and the pt range!\n");
160 if((!TestBit(kPtRange))&&(!TestBit(kMomentumRange)))
161 Fatal("Init","You should set either the momentum or the pt range!\n");
565cc9c0 162 if((TestBit(kYRange)&&TestBit(kThetaRange)) || (TestBit(kYRange)&&TestBit(kEtaRange)) || (TestBit(kEtaRange)&&TestBit(kThetaRange)) )
163 Fatal("Init","You should only set the range of one of these variables: y, eta or theta\n");
164 if((!TestBit(kYRange)) && (!TestBit(kEtaRange)) && (!TestBit(kThetaRange)) )
165 Fatal("Init","You should set the range of one of these variables: y, eta or theta\n");
166
167 AliPDG::AddParticlesToPdgDataBase();
790bbabf 168}
169