]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVGEN/AliGenEMCocktail.cxx
Moving some macros
[u/mrichter/AliRoot.git] / EVGEN / AliGenEMCocktail.cxx
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
16 /* $Id: AliGenEMCocktail.cxx 40702 2010-04-26 13:09:52Z morsch $ */
17
18 // Class to create cocktails for physics with electrons, di-electrons,
19 // and photons from the decay of the following sources:
20 // pizero, eta, rho, omega, etaprime, phi
21 // Kinematic distributions of the sources are taken from AliGenEMlib.
22 // Decay channels can be selected via the method SetDecayMode.
23 // Particles can be generated flat in pT with weights according to the
24 // chosen pT distributions from AliGenEMlib (weighting mode: kNonAnalog),
25 // or they are generated according to the pT distributions themselves
26 // (weighting mode: kAnalog)  
27  
28 #include <TObjArray.h>
29 #include <TParticle.h>
30 #include <TF1.h>
31 #include <TVirtualMC.h>
32 #include <TPDGCode.h>
33 #include "AliGenCocktailEventHeader.h"
34
35 #include "AliGenCocktailEntry.h"
36 #include "AliGenEMCocktail.h"
37 #include "AliGenEMlib.h"
38 #include "AliGenBox.h"
39 #include "AliGenParam.h"
40 #include "AliMC.h"
41 #include "AliRun.h"
42 #include "AliStack.h"
43 #include "AliDecayer.h"
44 #include "AliDecayerPythia.h"
45 #include "AliLog.h"
46 #include "AliGenCorrHF.h"
47
48 ClassImp(AliGenEMCocktail)  
49   
50 //________________________________________________________________________
51 AliGenEMCocktail::AliGenEMCocktail()
52   :AliGenCocktail(),
53    fDecayer(0),
54    fDecayMode(kAll),
55    fWeightingMode(kNonAnalog),
56    fNPart(1000),
57    fYieldArray()
58 {
59 // Constructor
60
61 }
62
63 //_________________________________________________________________________
64 AliGenEMCocktail::~AliGenEMCocktail()
65 {
66 // Destructor
67
68 }
69
70 //_________________________________________________________________________
71 void AliGenEMCocktail::CreateCocktail()
72 {
73 // create and add sources to the cocktail
74
75   fDecayer->SetForceDecay(fDecayMode);
76   fDecayer->ForceDecay();
77
78 // Set kinematic limits
79   Double_t ptMin  = fPtMin;
80   Double_t ptMax  = fPtMax;
81   Double_t yMin   = fYMin;;
82   Double_t yMax   = fYMax;;
83   Double_t phiMin = fPhiMin*180./TMath::Pi();
84   Double_t phiMax = fPhiMax*180./TMath::Pi();
85   AliInfo(Form("Ranges pT:%4.1f : %4.1f GeV/c, y:%4.2f : %4.2f, Phi:%5.1f : %5.1f degres",ptMin,ptMax,yMin,yMax,phiMin,phiMax));
86   AliInfo(Form("the parametrised sources uses the decay mode %d",fDecayMode));
87
88 // Create and add electron sources to the generator
89
90 // pizero
91   AliGenParam * genpizero=0;
92   Char_t namePizero[10];    
93   snprintf(namePizero,10, "Pizero");    
94   genpizero = new AliGenParam(fNPart, new AliGenEMlib(), AliGenEMlib::kPizero, "DUMMY");
95   AddSource2Generator(namePizero,genpizero);
96   TF1 *fPtPizero = genpizero->GetPt();
97   fYieldArray[kGenPizero] = fPtPizero->Integral(fPtMin,fPtMax,(Double_t *) 0x0,1.e-6);
98 // eta  
99   AliGenParam * geneta=0;
100   Char_t nameEta[10];    
101   snprintf(nameEta,10, "Eta");    
102   geneta = new AliGenParam(fNPart, new AliGenEMlib(), AliGenEMlib::kEta, "DUMMY");
103   AddSource2Generator(nameEta,geneta);
104   TF1 *fPtEta = geneta->GetPt();
105   fYieldArray[kGenEta] = fPtEta->Integral(fPtMin,fPtMax,(Double_t *) 0x0,1.e-6);
106 // rho  
107   AliGenParam * genrho=0;
108   Char_t nameRho[10];    
109   snprintf(nameRho,10, "Rho");    
110   genrho = new AliGenParam(fNPart, new AliGenEMlib(), AliGenEMlib::kRho, "DUMMY");
111   AddSource2Generator(nameRho,genrho);
112   TF1 *fPtRho = genrho->GetPt();
113   fYieldArray[kGenRho] = fPtRho->Integral(fPtMin,fPtMax,(Double_t *) 0x0,1.e-6);
114 // omega
115   AliGenParam * genomega=0;
116   Char_t nameOmega[10];    
117   snprintf(nameOmega,10, "Omega");    
118   genomega = new AliGenParam(fNPart, new AliGenEMlib(), AliGenEMlib::kOmega, "DUMMY");
119   AddSource2Generator(nameOmega,genomega);
120   TF1 *fPtOmega = genomega->GetPt();
121   fYieldArray[kGenOmega] = fPtOmega->Integral(fPtMin,fPtMax,(Double_t *) 0x0,1.e-6);
122 // etaprime
123   AliGenParam * genetaprime=0;
124   Char_t nameEtaprime[10];    
125   snprintf(nameEtaprime,10, "Etaprime");    
126   genetaprime = new AliGenParam(fNPart, new AliGenEMlib(), AliGenEMlib::kEtaprime, "DUMMY");
127   AddSource2Generator(nameEtaprime,genetaprime);
128   TF1 *fPtEtaprime = genetaprime->GetPt();
129   fYieldArray[kGenEtaprime] = fPtEtaprime->Integral(fPtMin,fPtMax,(Double_t *) 0x0,1.e-6);
130 // phi  
131   AliGenParam * genphi=0;
132   Char_t namePhi[10];    
133   snprintf(namePhi, 10, "Phi");    
134   genphi = new AliGenParam(fNPart, new AliGenEMlib(), AliGenEMlib::kPhi, "DUMMY");
135   AddSource2Generator(namePhi,genphi);
136   TF1 *fPtPhi = genphi->GetPt();
137   fYieldArray[kGenPhi] = fPtPhi->Integral(fPtMin,fPtMax,(Double_t *) 0x0,1.e-6);
138 }
139
140 //-------------------------------------------------------------------
141 void AliGenEMCocktail::AddSource2Generator(Char_t* nameSource, 
142                                          AliGenParam* const genSource)
143 {
144 // add sources to the cocktail
145   Double_t phiMin = fPhiMin*180./TMath::Pi();
146   Double_t phiMax = fPhiMax*180./TMath::Pi();
147
148   genSource->SetPtRange(fPtMin, fPtMax);  
149   genSource->SetYRange(fYMin, fYMax);
150   genSource->SetPhiRange(phiMin, phiMax);
151   genSource->SetWeighting(fWeightingMode);
152   if (!gMC) genSource->SetDecayer(fDecayer);  
153   genSource->Init();
154     
155   AddGenerator(genSource,nameSource,1.); // Adding Generator    
156 }
157
158 //-------------------------------------------------------------------
159 void AliGenEMCocktail::Init()
160 {
161 // Initialisation
162   TIter next(fEntries);
163   AliGenCocktailEntry *entry;
164   if (fStack) {
165     while((entry = (AliGenCocktailEntry*)next())) {
166       entry->Generator()->SetStack(fStack);
167     }
168   }
169 }
170
171 //_________________________________________________________________________
172 void AliGenEMCocktail::Generate()
173 {
174 // Generate event 
175   TIter next(fEntries);
176   AliGenCocktailEntry *entry = 0;
177   AliGenCocktailEntry *preventry = 0;
178   AliGenerator* gen = 0;
179
180   if (fHeader) delete fHeader;
181   fHeader = new AliGenCocktailEventHeader("Electromagnetic Cocktail Header");
182
183   const TObjArray *partArray = gAlice->GetMCApp()->Particles();
184     
185 // Generate the vertex position used by all generators    
186   if(fVertexSmear == kPerEvent) Vertex();
187
188 //Reseting stack
189   AliRunLoader * runloader = AliRunLoader::Instance();
190   if (runloader)
191     if (runloader->Stack())
192       runloader->Stack()->Clean();
193   
194 // Loop over generators and generate events
195   Int_t igen = 0;
196   while((entry = (AliGenCocktailEntry*)next())) {
197     gen = entry->Generator();
198     gen->SetVertex(fVertex.At(0), fVertex.At(1), fVertex.At(2));
199     gen->SetTime(fTime);
200     
201     if (fNPart > 0) {
202       igen++;   
203       if (igen == 1) entry->SetFirst(0);                
204       else  entry->SetFirst((partArray->GetEntriesFast())+1);
205       gen->SetNumberParticles(fNPart);          
206       gen->Generate();
207       entry->SetLast(partArray->GetEntriesFast());
208       preventry = entry;
209     }
210   }  
211   next.Reset();
212
213 // Setting weights for proper absolute normalization
214   Int_t iPart, iMother;
215   Int_t pdgMother = 0;
216   Double_t weight = 0.;
217   Double_t dNdy = 0.;
218   Int_t maxPart = partArray->GetEntriesFast();
219   for(iPart=0; iPart<maxPart; iPart++){      
220     TParticle *part = gAlice->GetMCApp()->Particle(iPart);
221     iMother = part->GetFirstMother();
222     TParticle *mother = 0;
223     if (iMother>=0){
224       mother = gAlice->GetMCApp()->Particle(iMother);
225       pdgMother = mother->GetPdgCode();
226     }
227     else
228       pdgMother = part->GetPdgCode();
229     switch (pdgMother){
230     case 111:
231       dNdy = fYieldArray[kGenPizero];
232       break;
233     case 221:
234       dNdy = fYieldArray[kGenEta];
235       break;
236     case 113:
237       dNdy = fYieldArray[kGenRho];
238       break;
239     case 223:
240       dNdy = fYieldArray[kGenOmega];
241       break;
242     case 331:
243       dNdy = fYieldArray[kGenEtaprime];
244       break;
245     case 333:
246       dNdy = fYieldArray[kGenPhi];
247       break;
248       
249     default:
250       dNdy = 0.;
251     }
252     
253     weight = dNdy*part->GetWeight();
254     part->SetWeight(weight);
255   }     
256   
257   fHeader->SetNProduced(maxPart);
258
259
260   TArrayF eventVertex;
261   eventVertex.Set(3);
262   for (Int_t j=0; j < 3; j++) eventVertex[j] = fVertex[j];
263   
264   fHeader->SetPrimaryVertex(eventVertex);
265   fHeader->SetInteractionTime(fTime);
266
267   gAlice->SetGenEventHeader(fHeader);
268 }
269
270