1 /**************************************************************************
2 * Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
17 // Generator for muons according to kinematic parametrizations at ALICE
18 // (not at the surface).
19 // Origin: andrea.dainese@lnl.infn.it
21 #include <TParticle.h>
25 #include "AliESDtrack.h"
26 #include "AliESDVertex.h"
27 #include "AliGenCosmicsParam.h"
29 ClassImp(AliGenCosmicsParam)
31 //-----------------------------------------------------------------------------
32 AliGenCosmicsParam::AliGenCosmicsParam():
37 fMaxAngleWRTVertical(-99.),
46 // Default constructor
49 //-----------------------------------------------------------------------------
50 void AliGenCosmicsParam::Generate()
60 Double_t ptot=0,pt=0,angleWRTVertical=0;
61 Bool_t okMom=kFALSE,okAngle=kFALSE;
63 Float_t rtrigger=250.0,ztrigger=250.0; // TPC is default
64 if(fITS) { rtrigger=50.0; ztrigger=50.0; }
65 if(fSPDouter) { rtrigger=6.5; ztrigger=14.0; }
66 if(fSPDinner) { rtrigger=3.5; ztrigger=14.0; }
70 Float_t muMinusFraction = 4./9.; // mu+/mu- = 1.25
72 if(gRandom->Rndm()<muMinusFraction) {
78 if(fParamACORDE) { // extracted from AliGenACORDE events
79 // sample total momentum only once (to speed up)
80 TF1 *dNdpACORDE = new TF1("dNdpACORDE","x/(1.+(x/12.8)*(x/12.8))^1.96",fPMin,fPMax);
81 ptot = (Double_t)dNdpACORDE->GetRandom();
91 origin[0] = (fYOrigin*TMath::Tan(fMaxAngleWRTVertical)+rtrigger)*(-1.+2.*gRandom->Rndm());
93 origin[2] = (fYOrigin*TMath::Tan(fMaxAngleWRTVertical)+ztrigger)*(-1.+2.*gRandom->Rndm());
97 okMom=kFALSE; okAngle=kFALSE;
99 if(fParamMI) { // parametrization by M.Ivanov of LEP cosmics data
100 Float_t pref = 1. + gRandom->Exp(30.);
102 p[0] = gRandom->Gaus(0.0,0.2)*pref;
103 p[2] = gRandom->Gaus(0.0,0.2)*pref;
104 if(gRandom->Rndm()>0.9) {
105 p[0] = gRandom->Gaus(0.0,0.4)*pref;
106 p[2] = gRandom->Gaus(0.0,0.4)*pref;
108 ptot=TMath::Sqrt(p[0]*p[0]+p[1]*p[1]+p[2]*p[2]);
109 pt=TMath::Sqrt(p[0]*p[0]+p[1]*p[1]);
110 } else if(fParamACORDE) { // extracted from AliGenACORDE events
113 theta = gRandom->Gaus(0.5*TMath::Pi(),0.42);
114 if(TMath::Abs(theta-0.5*TMath::Pi())<fMaxAngleWRTVertical) break;
117 phi = gRandom->Gaus(-0.5*TMath::Pi(),0.42);
118 if(TMath::Abs(phi+0.5*TMath::Pi())<fMaxAngleWRTVertical) break;
120 pt = ptot*TMath::Sin(theta);
121 p[0] = pt*TMath::Cos(phi);
122 p[1] = pt*TMath::Sin(phi);
123 p[2] = ptot*TMath::Cos(theta);
125 AliFatal("Parametrization not set: use SetParamMI or SetParamACORDE");
129 // check kinematic cuts
130 if(TestBit(kMomentumRange)) {
131 if(ptot>fPMin && ptot<fPMax) okMom=kTRUE;
134 angleWRTVertical=TMath::ACos(TMath::Abs(p[1])/ptot); // acos(|py|/ptot)
135 if(angleWRTVertical<fMaxAngleWRTVertical) okAngle=kTRUE;
137 if(okAngle&&okMom) break;
140 // acceptance trigger
141 if(IntersectCylinder(rtrigger,ztrigger,ipart,origin,p)) {
145 if(IntersectACORDE(ipart,origin,p)) break;
151 Float_t polarization[3]= {0,0,0};
152 PushTrack(fTrackIt,-1,ipart,p,origin,polarization,0,kPPrimary,nt);
154 //printf("TRIALS %d\n",trials);
159 //-----------------------------------------------------------------------------
160 void AliGenCosmicsParam::Init()
163 // Initialisation, check consistency of selected ranges
165 if(TestBit(kPtRange))
166 AliFatal("You cannot set the pt range for this generator! Only momentum range");
169 if(TestBit(kMomentumRange))
170 AliWarning("Minimum momentum cannot be < 8 GeV/c");
172 if(fMaxAngleWRTVertical<0.)
173 AliFatal("You must use SetMaxAngleWRTVertical() instead of SetThetaRange(), SetPhiRange()");
175 printf("************ AliGenCosmicsParam ****************\n");
176 printf("***** Muons generated at Y = %f cm\n",fYOrigin);
177 printf("************************************************\n");
181 //-----------------------------------------------------------------------------
182 Bool_t AliGenCosmicsParam::IntersectCylinder(Float_t r,Float_t z,Int_t pdg,
183 Float_t o[3],Float_t p[3]) const
186 // Intersection between muon and cylinder [-z,+z] with radius r
189 Float_t en = TMath::Sqrt(0.105*0.105+p[0]*p[0]+p[1]*p[1]+p[2]*p[2]);
190 TParticle part(pdg,0,0,0,0,0,p[0],p[1],p[2],en,o[0],o[1],o[2],0);
191 AliESDtrack track(&part);
192 Double_t pos[3]={0.,0.,0.},sigma[3]={0.,0.,0.};
193 AliESDVertex origin(pos,sigma);
195 track.RelateToVertex(&origin,fBkG,10000.);
197 Float_t d0z0[2],covd0z0[3];
198 track.GetImpactParameters(d0z0,covd0z0);
201 if(TMath::Abs(d0z0[0])>r) return kFALSE;
203 if(TMath::Abs(d0z0[1])>z) return kFALSE;
206 if(TMath::Abs(fB)<0.01) { // NO FIELD
207 Float_t drphi = TMath::Abs(o[1]-p[1]/p[0]*o[0])/
208 TMath::Sqrt(p[1]*p[1]/p[0]/p[0]+1.);
209 if(drphi>r) return kFALSE;
210 Float_t dz = o[2]-p[2]/p[0]*o[0]+p[2]/p[0]*
211 (p[1]*p[1]/p[0]/p[0]*o[0]-p[1]/p[0]*o[1])/(1.+p[1]*p[1]/p[0]/p[0]);
212 if(TMath::Abs(dz)>z) return kFALSE;
218 //-----------------------------------------------------------------------------
219 Bool_t AliGenCosmicsParam::IntersectACORDE(Int_t pdg,
220 Float_t o[3],Float_t p[3]) const
223 // Intersection between muon and ACORDE (very rough)
226 Float_t en = TMath::Sqrt(0.105*0.105+p[0]*p[0]+p[1]*p[1]+p[2]*p[2]);
227 TParticle part(pdg,0,0,0,0,0,p[0],p[1],p[2],en,o[0],o[1],o[2],0);
228 AliESDtrack track(&part);
230 Float_t rACORDE=800.0,xACORDE=750.0,zACORDE=600.0;
233 track.GetXYZAt(rACORDE,fBkG,xyz);
236 if(TMath::Abs(xyz[0]) > xACORDE) return kFALSE;
238 if(TMath::Abs(xyz[2]) > zACORDE) return kFALSE;
242 //-----------------------------------------------------------------------------