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 **************************************************************************/
16 // Generator for particles according generic functions
18 // TF1 * fFMomentum; // momentum distribution function inGeV
19 // TF1 * fFPhi; // phi distribution function in rad
20 // TF1 * fFTheta; // theta distribution function in rad
21 // TF3 * fFPosition; // position distribution function in cm
22 // TF1 * fFPdg; // pdg distribution function
23 // We assume that the moment, postion and PDG code of particles are independent
24 // Only tracks/particle crossing the reference radius at given z range
26 // Origin: marian.ivanov@cern.ch
30 Example generic function for cosmic generation:
33 AliGenFunction *generCosmic = new AliGenFunction;
34 generCosmic->SetNumberParticles(100);
35 TF1 *fmom = new TF1("fmom","TMath::Exp(-x/8)",0,30);
37 TF1 *fphi = new TF1("fphi","TMath::Gaus(x,-TMath::Pi()/2,0.3)",-3.14,3.14);
38 TF1 *ftheta = new TF1("ftheta","TMath::Gaus(x,TMath::Pi()/2,0.3)",-3.14,3.14);
39 TF3 *fpos = new TF3("fpos","1+(x+y+z)*0",-2000,2000,700,701,-2000,2000);
40 TF1 * fpdg= new TF1("fpdg","1*(abs(x-13)<0.1)+1*(abs(x+13)<0.1)",-300,300);
41 fpdg->SetNpx(10000); // neccessary - number of bins for generation
42 generCosmic->SetVertexSmear(kPerEvent);
43 generCosmic->SetFunctions(fmom,fphi,ftheta,fpos,fpdg);
44 generCosmic->SetCylinder(375,-375,375);
45 generCosmic->SetBkG(0.2);
46 gener->AddGenerator(generCosmic,"generCosmic",1);
55 #include <TParticle.h>
60 #include "AliESDtrack.h"
61 #include "AliESDVertex.h"
62 #include "AliGenFunction.h"
64 ClassImp(AliGenFunction)
66 //-----------------------------------------------------------------------------
67 AliGenFunction::AliGenFunction():
70 fFMomentum(0), // momentum distribution function
71 fFPhi(0), // phi distribution function
72 fFTheta(0), // theta distribution function
73 fFPosition(0), // position distribution function
74 fFPdg(0), // pdg distribution function
75 fRefRadius(0), // reference radius to be crossed
76 fZmin(0), // minimal z at reference radius
77 fZmax(0), // z at reference radius
78 fMaxTrial(10000) // maximal number of attempts
81 // Default constructor
83 SetNumberParticles(1);
85 //-----------------------------------------------------------------------------
86 void AliGenFunction::Generate()
93 for (Int_t ipart=0; ipart<fMaxTrial && naccepted<fNpart; ipart++){
101 Double_t ptot,pt, phi, theta;
103 ptot = fFMomentum->GetRandom();
104 phi = fFPhi->GetRandom();
105 theta = fFTheta->GetRandom();
106 pt = ptot*TMath::Sin(theta);
107 mom[0] = pt*TMath::Cos(phi);
108 mom[1] = pt*TMath::Sin(phi);
109 mom[2] = ptot*TMath::Cos(theta);
112 fFPosition->GetRandom3(pos[0],pos[1],pos[2]);
116 pdg = TMath::Nint(fFPdg->GetRandom());
117 if (!IntersectCylinder(fRefRadius,fZmin, fZmax, pdg, posf, mom)) continue;
120 Float_t polarization[3]= {0,0,0};
122 PushTrack(fTrackIt,-1,pdg,mom, posf, polarization,0,kPPrimary,nt);
129 //-----------------------------------------------------------------------------
130 void AliGenFunction::Init()
133 // Initialisation, check consistency of selected ranges
135 printf("************ AliGenFunction ****************\n");
136 printf("************************************************\n");
138 AliFatal("Momentum distribution function not specified");
141 AliFatal("Position distribution function not specified");
144 AliFatal("PDG distribution function not specified");
147 AliFatal("Z range not specified");
153 void AliGenFunction::SetFunctions(TF1 * momentum, TF1 *fphi, TF1 *ftheta,TF3 * position, TF1* pdg){
157 fFMomentum = momentum;
160 fFPosition = position;
164 void AliGenFunction::SetCylinder(Double_t refR, Double_t zmin, Double_t zmax){
168 fRefRadius = refR; // reference radius to be crossed
169 fZmin = zmin; // minimal z at reference radius
170 fZmax = zmax; // maximal z at reference radius
175 //-----------------------------------------------------------------------------
176 Bool_t AliGenFunction::IntersectCylinder(Float_t r,Float_t zmin, Float_t zmax,Int_t pdg,
177 Float_t o[3],Float_t p[3]) const
180 // Intersection between muon and cylinder [-z,+z] with radius r
183 if (TDatabasePDG::Instance()->GetParticle(pdg)){
184 mass = TDatabasePDG::Instance()->GetParticle(13)->Mass();
187 Float_t en = TMath::Sqrt(mass*mass+p[0]*p[0]+p[1]*p[1]+p[2]*p[2]);
188 TParticle part(pdg,0,0,0,0,0,p[0],p[1],p[2],en,o[0],o[1],o[2],0);
189 AliESDtrack track(&part);
190 Double_t pos[3]={0.,0.,0.},sigma[3]={0.,0.,0.};
191 AliESDVertex origin(pos,sigma);
193 track.RelateToVertex(&origin,fBkG,10000.);
195 Float_t d0z0[2],covd0z0[3];
196 track.GetImpactParameters(d0z0,covd0z0);
199 if(TMath::Abs(d0z0[0])>r) return kFALSE;
201 if(d0z0[1]>zmax) return kFALSE;
202 if(d0z0[1]<zmin) return kFALSE;