]> git.uio.no Git - u/mrichter/AliRoot.git/blame - macros/Config_PDC06.C
Added a cut on PtHard at 2.76 GeV/c (Nicole)
[u/mrichter/AliRoot.git] / macros / Config_PDC06.C
CommitLineData
e3d91248 1//
2// Configuration for the Physics Data Challenge 2006
3//
4
13217d97 5// One can use the configuration macro in compiled mode by
6// root [0] gSystem->Load("libgeant321");
7// root [0] gSystem->SetIncludePath("-I$ROOTSYS/include -I$ALICE_ROOT/include\
8// -I$ALICE_ROOT -I$ALICE/geant3/TGeant3");
9// root [0] .x grun.C(1,"Config_PDC06.C++")
10
e3d91248 11#if !defined(__CINT__) || defined(__MAKECINT__)
12#include <Riostream.h>
13#include <TRandom.h>
14#include <TDatime.h>
15#include <TSystem.h>
16#include <TVirtualMC.h>
13217d97 17#include <TGeant3TGeo.h>
18#include "EVGEN/AliGenCocktail.h"
19#include "EVGEN/AliGenParam.h"
20#include "EVGEN/AliGenMUONlib.h"
e3d91248 21#include "STEER/AliRunLoader.h"
22#include "STEER/AliRun.h"
23#include "STEER/AliConfig.h"
24#include "PYTHIA6/AliDecayerPythia.h"
25#include "PYTHIA6/AliGenPythia.h"
26#include "STEER/AliMagFMaps.h"
27#include "STRUCT/AliBODY.h"
28#include "STRUCT/AliMAG.h"
29#include "STRUCT/AliABSOv0.h"
30#include "STRUCT/AliDIPOv2.h"
31#include "STRUCT/AliHALL.h"
32#include "STRUCT/AliFRAMEv2.h"
33#include "STRUCT/AliSHILv2.h"
34#include "STRUCT/AliPIPEv0.h"
13217d97 35#include "ITS/AliITSgeom.h"
e3d91248 36#include "ITS/AliITSvPPRasymmFMD.h"
37#include "TPC/AliTPCv2.h"
13217d97 38#include "TOF/AliTOFv5T0.h"
e3d91248 39#include "RICH/AliRICHv1.h"
13217d97 40#include "ZDC/AliZDCv2.h"
e3d91248 41#include "TRD/AliTRDv1.h"
13217d97 42#include "FMD/AliFMDv1.h"
e3d91248 43#include "MUON/AliMUONv1.h"
44#include "PHOS/AliPHOSv1.h"
45#include "PMD/AliPMDv1.h"
46#include "START/AliSTARTv1.h"
13217d97 47#include "EMCAL/AliEMCALv2.h"
48#include "CRT/AliCRTv0.h"
4a2f6442 49#include "VZERO/AliVZEROv7.h"
e3d91248 50#endif
51
52
53enum PDC06Proc_t
54{
55//--- Heavy Flavour Production ---
56 kCharmPbPb5500, kCharmpPb8800, kCharmpp14000, kCharmpp14000wmi,
57 kD0PbPb5500, kD0pPb8800, kD0pp14000,
58 kDPlusPbPb5500, kDPluspPb8800, kDPluspp14000,
59 kBeautyPbPb5500, kBeautypPb8800, kBeautypp14000, kBeautypp14000wmi,
60// -- Pythia Mb
13217d97 61 kPyMbNoHvq, kPyOmegaPlus, kPyOmegaMinus, kRunMax
62};
63
64const char * pprRunName[] = {
65 "kCharmPbPb5500", "kCharmpPb8800", "kCharmpp14000", "kCharmpp14000wmi",
66 "kD0PbPb5500", "kD0pPb8800", "kD0pp14000",
67 "kDPlusPbPb5500", "kDPluspPb8800", "kDPluspp14000",
68 "kBeautyPbPb5500", "kBeautypPb8800", "kBeautypp14000", "kBeautypp14000wmi",
69 "kPyMbNoHvq", "kPyOmegaPlus", "kPyOmegaMinus"
e3d91248 70};
71
72
73//--- Decay Mode ---
74enum DecayHvFl_t
75{
76 kNature, kHadr, kSemiEl, kSemiMu
77};
78//--- Rapidity Cut ---
79enum YCut_t
80{
81 kFull, kBarrel, kMuonArm
82};
83//--- Magnetic Field ---
84enum Mag_t
85{
86 k2kG, k4kG, k5kG
87};
6521ae06 88
89//--- Trigger config ---
90enum TrigConf_t
91{
92 kDefaultPPTrig, kDefaultPbPbTrig
93};
94
95const char * TrigConfName[] = {
96 "p-p","Pb-Pb"
97};
98
e3d91248 99//--- Functions ---
100AliGenPythia *PythiaHVQ(PDC06Proc_t proc);
101AliGenerator *MbCocktail();
102AliGenerator *PyMbTriggered(Int_t pdg);
13217d97 103void ProcessEnvironmentVars();
e3d91248 104
105// This part for configuration
a7e9beb2 106static PDC06Proc_t proc = kPyOmegaPlus;
e3d91248 107static DecayHvFl_t decHvFl = kNature;
108static YCut_t ycut = kFull;
109static Mag_t mag = k5kG;
6521ae06 110static TrigConf_t trig = kDefaultPPTrig; // default pp trigger configuration
13217d97 111//========================//
112// Set Random Number seed //
113//========================//
114TDatime dt;
115static UInt_t seed = dt.Get();
116
e3d91248 117// nEvts = -1 : you get 1 QQbar pair and all the fragmentation and
118// decay chain
119// nEvts = N>0 : you get N charm / beauty Hadrons
120Int_t nEvts = -1;
121// stars = kTRUE : all heavy resonances and their decay stored
122// = kFALSE: only final heavy hadrons and their decays stored
123Bool_t stars = kTRUE;
124
125// To be used only with kCharmppMNRwmi and kBeautyppMNRwmi
126// To get a "reasonable" agreement with MNR results, events have to be
127// generated with the minimum ptHard set to 2.76 GeV.
128// To get a "perfect" agreement with MNR results, events have to be
129// generated in four ptHard bins with the following relative
130// normalizations:
131// CHARM
132// 2.76-3 GeV: 25%
133// 3-4 GeV: 40%
134// 4-8 GeV: 29%
135// >8 GeV: 6%
136// BEAUTY
137// 2.76-4 GeV: 5%
138// 4-6 GeV: 31%
139// 6-8 GeV: 28%
140// >8 GeV: 36%
141Float_t ptHardMin = 2.76;
142Float_t ptHardMax = -1.;
143
144
145// Comment line
146static TString comment;
147
148void Config()
149{
150
13217d97 151
152 // Get settings from environment variables
153 ProcessEnvironmentVars();
154
155 gRandom->SetSeed(seed);
156 cerr<<"Seed for random number generation= "<<seed<<endl;
e3d91248 157
158 // libraries required by geant321
159#if defined(__CINT__)
160 gSystem->Load("libgeant321");
161#endif
162
163 new TGeant3TGeo("C++ Interface to Geant3");
164
165 //=======================================================================
166 // Create the output file
167
168
169 AliRunLoader* rl=0x0;
170
171 cout<<"Config.C: Creating Run Loader ..."<<endl;
172 rl = AliRunLoader::Open("galice.root",
173 AliConfig::GetDefaultEventFolderName(),
174 "recreate");
175 if (rl == 0x0)
176 {
177 gAlice->Fatal("Config.C","Can not instatiate the Run Loader");
178 return;
179 }
180 rl->SetCompressionLevel(2);
181 rl->SetNumberOfEventsPerFile(1000);
182 gAlice->SetRunLoader(rl);
6521ae06 183
184 // Set the trigger configuration
185 gAlice->SetTriggerDescriptor(TrigConfName[trig]);
186 cout<<"Trigger configuration is set to "<<TrigConfName[trig]<<endl;
e3d91248 187
188 //
189 //=======================================================================
190 // ************* STEERING parameters FOR ALICE SIMULATION **************
191 // --- Specify event type to be tracked through the ALICE setup
192 // --- All positions are in cm, angles in degrees, and P and E in GeV
193
194
195 gMC->SetProcess("DCAY",1);
196 gMC->SetProcess("PAIR",1);
197 gMC->SetProcess("COMP",1);
198 gMC->SetProcess("PHOT",1);
199 gMC->SetProcess("PFIS",0);
200 gMC->SetProcess("DRAY",0);
201 gMC->SetProcess("ANNI",1);
202 gMC->SetProcess("BREM",1);
203 gMC->SetProcess("MUNU",1);
204 gMC->SetProcess("CKOV",1);
205 gMC->SetProcess("HADR",1);
206 gMC->SetProcess("LOSS",2);
207 gMC->SetProcess("MULS",1);
208 gMC->SetProcess("RAYL",1);
209
210 Float_t cut = 1.e-3; // 1MeV cut by default
211 Float_t tofmax = 1.e10;
212
213 gMC->SetCut("CUTGAM", cut);
214 gMC->SetCut("CUTELE", cut);
215 gMC->SetCut("CUTNEU", cut);
216 gMC->SetCut("CUTHAD", cut);
217 gMC->SetCut("CUTMUO", cut);
218 gMC->SetCut("BCUTE", cut);
219 gMC->SetCut("BCUTM", cut);
220 gMC->SetCut("DCUTE", cut);
221 gMC->SetCut("DCUTM", cut);
222 gMC->SetCut("PPCUTM", cut);
223 gMC->SetCut("TOFMAX", tofmax);
224
225
226
227
228 // Set External decayer //
229 //======================//
230 TVirtualMCDecayer* decayer = new AliDecayerPythia();
231 // DECAYS
232 //
233 switch(decHvFl) {
234 case kNature:
235 decayer->SetForceDecay(kAll);
236 break;
237 case kHadr:
238 decayer->SetForceDecay(kHadronicD);
239 break;
240 case kSemiEl:
241 decayer->SetForceDecay(kSemiElectronic);
242 break;
243 case kSemiMu:
244 decayer->SetForceDecay(kSemiMuonic);
245 break;
246 }
247 decayer->Init();
248 gMC->SetExternalDecayer(decayer);
249
250 //=========================//
251 // Generator Configuration //
252 //=========================//
13217d97 253 AliGenerator* gener = 0x0;
e3d91248 254
255 if (proc <= kBeautypp14000wmi) {
256 AliGenPythia *pythia = PythiaHVQ(proc);
257 // FeedDown option
258 pythia->SetFeedDownHigherFamily(kFALSE);
259 // Stack filling option
260 if(!stars) pythia->SetStackFillOpt(AliGenPythia::kParentSelection);
261 // Set Count mode
262 if(nEvts>0) pythia->SetCountMode(AliGenPythia::kCountParents);
263 //
264 // DECAYS
265 //
266 switch(decHvFl) {
267 case kNature:
268 pythia->SetForceDecay(kAll);
269 break;
270 case kHadr:
271 pythia->SetForceDecay(kHadronicD);
272 break;
273 case kSemiEl:
274 pythia->SetForceDecay(kSemiElectronic);
275 break;
276 case kSemiMu:
277 pythia->SetForceDecay(kSemiMuonic);
278 break;
279 }
280 //
281 // GEOM & KINE CUTS
282 //
283 pythia->SetMomentumRange(0,99999999);
284 pythia->SetPhiRange(0., 360.);
285 pythia->SetThetaRange(0,180);
286 switch(ycut) {
287 case kFull:
288 pythia->SetYRange(-999,999);
289 break;
290 case kBarrel:
291 pythia->SetYRange(-2,2);
292 break;
293 case kMuonArm:
294 pythia->SetYRange(1,6);
295 break;
296 }
297 gener = pythia;
298 } else if (proc == kPyMbNoHvq) {
299 gener = MbCocktail();
300 } else if (proc == kPyOmegaMinus) {
301 gener = PyMbTriggered(3334);
302 } else if (proc == kPyOmegaPlus) {
303 gener = PyMbTriggered(-3334);
304 }
305
306
307
308 // PRIMARY VERTEX
309 //
310 gener->SetOrigin(0., 0., 0.); // vertex position
311 //
312 //
313 // Size of the interaction diamond
314 // Longitudinal
315 Float_t sigmaz = 7.55 / TMath::Sqrt(2.); // [cm]
316 //
317 // Transverse
318 Float_t betast = 10; // beta* [m]
319 Float_t eps = 3.75e-6; // emittance [m]
320 Float_t gamma = 7000. / 0.938272; // relativistic gamma [1]
321 Float_t sigmaxy = TMath::Sqrt(eps * betast / gamma) / TMath::Sqrt(2.) * 100.; // [cm]
322 printf("\n \n Diamond size x-y: %10.3e z: %10.3e\n \n", sigmaxy, sigmaz);
323
324 gener->SetSigma(sigmaxy, sigmaxy, sigmaz); // Sigma in (X,Y,Z) (cm) on IP position
550c2171 325 gener->SetCutVertexZ(3.); // Truncate at 3 sigma
e3d91248 326 gener->SetVertexSmear(kPerEvent);
327
e3d91248 328 gener->Init();
329
330 // FIELD
331 //
332 if (mag == k2kG) {
333 comment = comment.Append(" | L3 field 0.2 T");
334 } else if (mag == k4kG) {
335 comment = comment.Append(" | L3 field 0.4 T");
336 } else if (mag == k5kG) {
337 comment = comment.Append(" | L3 field 0.5 T");
338 }
339 printf("\n \n Comment: %s \n \n", comment.Data());
340
341 AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 2, 1., 10., mag);
342 field->SetL3ConstField(0); //Using const. field in the barrel
343 rl->CdGAFile();
344 gAlice->SetField(field);
345
346
347
348 Int_t iABSO = 1;
4a2f6442 349 Int_t iCRT = 0;
e3d91248 350 Int_t iDIPO = 1;
b9f5ae9d 351 Int_t iEMCAL = 1;
e3d91248 352 Int_t iFMD = 1;
353 Int_t iFRAME = 1;
354 Int_t iHALL = 1;
355 Int_t iITS = 1;
356 Int_t iMAG = 1;
357 Int_t iMUON = 1;
b9f5ae9d 358 Int_t iPHOS = 1;
e3d91248 359 Int_t iPIPE = 1;
360 Int_t iPMD = 1;
361 Int_t iRICH = 1;
362 Int_t iSHIL = 1;
363 Int_t iSTART = 1;
b9f5ae9d 364 Int_t iTOF = 1;
e3d91248 365 Int_t iTPC = 1;
366 Int_t iTRD = 1;
b9f5ae9d 367 Int_t iVZERO = 1;
e3d91248 368 Int_t iZDC = 1;
b9f5ae9d 369
e3d91248 370
b9f5ae9d 371 //=================== Alice BODY parameters =============================
372 AliBODY *BODY = new AliBODY("BODY", "Alice envelop");
e3d91248 373
e3d91248 374
b9f5ae9d 375 if (iMAG)
376 {
377 //=================== MAG parameters ============================
378 // --- Start with Magnet since detector layouts may be depending ---
379 // --- on the selected Magnet dimensions ---
380 AliMAG *MAG = new AliMAG("MAG", "Magnet");
381 }
e3d91248 382
e3d91248 383
b9f5ae9d 384 if (iABSO)
385 {
386 //=================== ABSO parameters ============================
387 AliABSO *ABSO = new AliABSOv0("ABSO", "Muon Absorber");
388 }
e3d91248 389
b9f5ae9d 390 if (iDIPO)
391 {
392 //=================== DIPO parameters ============================
e3d91248 393
b9f5ae9d 394 AliDIPO *DIPO = new AliDIPOv2("DIPO", "Dipole version 2");
395 }
e3d91248 396
b9f5ae9d 397 if (iHALL)
398 {
399 //=================== HALL parameters ============================
e3d91248 400
b9f5ae9d 401 AliHALL *HALL = new AliHALL("HALL", "Alice Hall");
402 }
e3d91248 403
e3d91248 404
b9f5ae9d 405 if (iFRAME)
406 {
407 //=================== FRAME parameters ============================
e3d91248 408
b9f5ae9d 409 AliFRAMEv2 *FRAME = new AliFRAMEv2("FRAME", "Space Frame");
b9f5ae9d 410 }
e3d91248 411
b9f5ae9d 412 if (iSHIL)
413 {
414 //=================== SHIL parameters ============================
e3d91248 415
b9f5ae9d 416 AliSHIL *SHIL = new AliSHILv2("SHIL", "Shielding Version 2");
417 }
e3d91248 418
e3d91248 419
b9f5ae9d 420 if (iPIPE)
421 {
422 //=================== PIPE parameters ============================
e3d91248 423
b9f5ae9d 424 AliPIPE *PIPE = new AliPIPEv0("PIPE", "Beam Pipe");
425 }
426
427 if(iITS) {
e3d91248 428
b9f5ae9d 429 //=================== ITS parameters ============================
e3d91248 430 //
431 // As the innermost detector in ALICE, the Inner Tracking System "impacts" on
432 // almost all other detectors. This involves the fact that the ITS geometry
433 // still has several options to be followed in parallel in order to determine
434 // the best set-up which minimizes the induced background. All the geometries
435 // available to date are described in the following. Read carefully the comments
436 // and use the default version (the only one uncommented) unless you are making
437 // comparisons and you know what you are doing. In this case just uncomment the
438 // ITS geometry you want to use and run Aliroot.
439 //
440 // Detailed geometries:
441 //
442 //
443 //AliITS *ITS = new AliITSv5symm("ITS","Updated ITS TDR detailed version with symmetric services");
444 //
445 //AliITS *ITS = new AliITSv5asymm("ITS","Updates ITS TDR detailed version with asymmetric services");
446 //
b9f5ae9d 447 AliITSvPPRasymmFMD *ITS = new AliITSvPPRasymmFMD("ITS","New ITS PPR detailed version with asymmetric services");
448 ITS->SetMinorVersion(2); // don't touch this parameter if you're not an ITS developer
449 ITS->SetReadDet(kTRUE); // don't touch this parameter if you're not an ITS developer
450 // ITS->SetWriteDet("$ALICE_ROOT/ITS/ITSgeometry_vPPRasymm2.det"); // don't touch this parameter if you're not an ITS developer
451 ITS->SetThicknessDet1(200.); // detector thickness on layer 1 must be in the range [100,300]
452 ITS->SetThicknessDet2(200.); // detector thickness on layer 2 must be in the range [100,300]
453 ITS->SetThicknessChip1(200.); // chip thickness on layer 1 must be in the range [150,300]
454 ITS->SetThicknessChip2(200.); // chip thickness on layer 2 must be in the range [150,300]
455 ITS->SetRails(0); // 1 --> rails in ; 0 --> rails out
456 ITS->SetCoolingFluid(1); // 1 --> water ; 0 --> freon
457
e3d91248 458 // Coarse geometries (warning: no hits are produced with these coarse geometries and they unuseful
459 // for reconstruction !):
460 //
461 //
462 //AliITSvPPRcoarseasymm *ITS = new AliITSvPPRcoarseasymm("ITS","New ITS PPR coarse version with asymmetric services");
b9f5ae9d 463 //ITS->SetRails(0); // 1 --> rails in ; 0 --> rails out
e3d91248 464 //ITS->SetSupportMaterial(0); // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon
465 //
466 //AliITS *ITS = new AliITSvPPRcoarsesymm("ITS","New ITS PPR coarse version with symmetric services");
b9f5ae9d 467 //ITS->SetRails(0); // 1 --> rails in ; 0 --> rails out
e3d91248 468 //ITS->SetSupportMaterial(0); // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon
469 //
470 //
471 //
472 // Geant3 <-> EUCLID conversion
473 // ============================
474 //
475 // SetEUCLID is a flag to output (=1) or not to output (=0) both geometry and
476 // media to two ASCII files (called by default ITSgeometry.euc and
477 // ITSgeometry.tme) in a format understandable to the CAD system EUCLID.
478 // The default (=0) means that you dont want to use this facility.
479 //
b9f5ae9d 480 ITS->SetEUCLID(0);
481 }
e3d91248 482
b9f5ae9d 483 if (iTPC)
484 {
485 //============================ TPC parameters =====================
486 AliTPC *TPC = new AliTPCv2("TPC", "Default");
487 }
e3d91248 488
e3d91248 489
b9f5ae9d 490 if (iTOF) {
491 //=================== TOF parameters ============================
492 AliTOF *TOF = new AliTOFv5T0("TOF", "normal TOF");
db73b724 493 // Partial geometry: modules at 2,3,4,6,7,11,12,14,15,16
494 // starting at 6h in positive direction
d2272c21 495 Int_t TOFSectors[18]={-1,-1,0,0,0,-1,0,0,-1,-1,-1,0,0,-1,0,0,0,0};
db73b724 496 TOF->SetTOFSectors(TOFSectors);
b9f5ae9d 497 }
e3d91248 498
e3d91248 499
b9f5ae9d 500 if (iRICH)
501 {
502 //=================== RICH parameters ===========================
503 AliRICH *RICH = new AliRICHv1("RICH", "normal RICH");
e3d91248 504
b9f5ae9d 505 }
e3d91248 506
e3d91248 507
b9f5ae9d 508 if (iZDC)
509 {
510 //=================== ZDC parameters ============================
e3d91248 511
b9f5ae9d 512 AliZDC *ZDC = new AliZDCv2("ZDC", "normal ZDC");
513 }
e3d91248 514
b9f5ae9d 515 if (iTRD)
516 {
517 //=================== TRD parameters ============================
e3d91248 518
b9f5ae9d 519 AliTRD *TRD = new AliTRDv1("TRD", "TRD slow simulator");
db73b724 520 AliTRDgeometry *geoTRD = TRD->GetGeometry();
d2272c21 521 // Partial geometry: modules at 2,3,4,6,11,12,14,15
db73b724 522 // starting at 6h in positive direction
523 geoTRD->SetSMstatus(0,0);
524 geoTRD->SetSMstatus(1,0);
525 geoTRD->SetSMstatus(5,0);
526 geoTRD->SetSMstatus(7,0);
527 geoTRD->SetSMstatus(8,0);
528 geoTRD->SetSMstatus(9,0);
529 geoTRD->SetSMstatus(10,0);
db73b724 530 geoTRD->SetSMstatus(13,0);
d2272c21 531 geoTRD->SetSMstatus(16,0);
db73b724 532 geoTRD->SetSMstatus(17,0);
b9f5ae9d 533 }
e3d91248 534
b9f5ae9d 535 if (iFMD)
536 {
537 //=================== FMD parameters ============================
538 AliFMD *FMD = new AliFMDv1("FMD", "normal FMD");
539 }
e3d91248 540
b9f5ae9d 541 if (iMUON)
542 {
543 //=================== MUON parameters ===========================
544 // New MUONv1 version (geometry defined via builders)
545 AliMUON *MUON = new AliMUONv1("MUON", "default");
546 }
547 //=================== PHOS parameters ===========================
e3d91248 548
b9f5ae9d 549 if (iPHOS)
550 {
551 AliPHOS *PHOS = new AliPHOSv1("PHOS", "IHEP");
552 }
e3d91248 553
554
b9f5ae9d 555 if (iPMD)
556 {
557 //=================== PMD parameters ============================
558 AliPMD *PMD = new AliPMDv1("PMD", "normal PMD");
559 }
e3d91248 560
b9f5ae9d 561 if (iSTART)
562 {
563 //=================== START parameters ============================
564 AliSTART *START = new AliSTARTv1("START", "START Detector");
565 }
e3d91248 566
b9f5ae9d 567 if (iEMCAL)
568 {
569 //=================== EMCAL parameters ============================
0588179e 570 AliEMCAL *EMCAL = new AliEMCALv2("EMCAL", "SHISH_77_TRD1_2X2_FINAL_110DEG");
b9f5ae9d 571 }
e3d91248 572
b9f5ae9d 573 if (iCRT)
574 {
575 //=================== CRT parameters ============================
576 AliCRT *CRT = new AliCRTv0("CRT", "normal ACORDE");
577 }
e3d91248 578
b9f5ae9d 579 if (iVZERO)
580 {
581 //=================== CRT parameters ============================
4a2f6442 582 AliVZERO *VZERO = new AliVZEROv7("VZERO", "normal VZERO");
b9f5ae9d 583 }
e3d91248 584}
585//
586// PYTHIA
587//
588AliGenPythia *PythiaHVQ(PDC06Proc_t proc) {
589//*******************************************************************//
590// Configuration file for charm / beauty generation with PYTHIA //
591// //
592// The parameters have been tuned in order to reproduce the inclusive//
593// heavy quark pt distribution given by the NLO pQCD calculation by //
594// Mangano, Nason and Ridolfi. //
595// //
596// For details and for the NORMALIZATION of the yields see: //
597// N.Carrer and A.Dainese, //
598// "Charm and beauty production at the LHC", //
599// ALICE-INT-2003-019, [arXiv:hep-ph/0311225]; //
600// PPR Chapter 6.6, CERN/LHCC 2005-030 (2005). //
601//*******************************************************************//
602 AliGenPythia * gener = 0x0;
603
604 switch(proc) {
605 case kCharmPbPb5500:
606 comment = comment.Append(" Charm in Pb-Pb at 5.5 TeV");
607 gener = new AliGenPythia(nEvts);
608 gener->SetProcess(kPyCharmPbPbMNR);
609 gener->SetStrucFunc(kCTEQ4L);
610 gener->SetPtHard(2.1,-1.0);
611 gener->SetEnergyCMS(5500.);
612 gener->SetNuclei(208,208);
613 break;
614 case kCharmpPb8800:
615 comment = comment.Append(" Charm in p-Pb at 8.8 TeV");
616 gener = new AliGenPythia(nEvts);
617 gener->SetProcess(kPyCharmpPbMNR);
618 gener->SetStrucFunc(kCTEQ4L);
619 gener->SetPtHard(2.1,-1.0);
620 gener->SetEnergyCMS(8800.);
621 gener->SetProjectile("P",1,1);
622 gener->SetTarget("Pb",208,82);
623 break;
624 case kCharmpp14000:
625 comment = comment.Append(" Charm in pp at 14 TeV");
626 gener = new AliGenPythia(nEvts);
627 gener->SetProcess(kPyCharmppMNR);
628 gener->SetStrucFunc(kCTEQ4L);
629 gener->SetPtHard(2.1,-1.0);
630 gener->SetEnergyCMS(14000.);
631 break;
632 case kCharmpp14000wmi:
633 comment = comment.Append(" Charm in pp at 14 TeV with mult. interactions");
634 gener = new AliGenPythia(-1);
635 gener->SetProcess(kPyCharmppMNRwmi);
636 gener->SetStrucFunc(kCTEQ5L);
637 gener->SetPtHard(ptHardMin,ptHardMax);
638 gener->SetEnergyCMS(14000.);
639 break;
640 case kD0PbPb5500:
641 comment = comment.Append(" D0 in Pb-Pb at 5.5 TeV");
642 gener = new AliGenPythia(nEvts);
643 gener->SetProcess(kPyD0PbPbMNR);
644 gener->SetStrucFunc(kCTEQ4L);
645 gener->SetPtHard(2.1,-1.0);
646 gener->SetEnergyCMS(5500.);
647 gener->SetNuclei(208,208);
648 break;
649 case kD0pPb8800:
650 comment = comment.Append(" D0 in p-Pb at 8.8 TeV");
651 gener = new AliGenPythia(nEvts);
652 gener->SetProcess(kPyD0pPbMNR);
653 gener->SetStrucFunc(kCTEQ4L);
654 gener->SetPtHard(2.1,-1.0);
655 gener->SetEnergyCMS(8800.);
656 gener->SetProjectile("P",1,1);
657 gener->SetTarget("Pb",208,82);
658 break;
659 case kD0pp14000:
660 comment = comment.Append(" D0 in pp at 14 TeV");
661 gener = new AliGenPythia(nEvts);
662 gener->SetProcess(kPyD0ppMNR);
663 gener->SetStrucFunc(kCTEQ4L);
664 gener->SetPtHard(2.1,-1.0);
665 gener->SetEnergyCMS(14000.);
666 break;
667 case kDPlusPbPb5500:
668 comment = comment.Append(" DPlus in Pb-Pb at 5.5 TeV");
669 gener = new AliGenPythia(nEvts);
670 gener->SetProcess(kPyDPlusPbPbMNR);
671 gener->SetStrucFunc(kCTEQ4L);
672 gener->SetPtHard(2.1,-1.0);
673 gener->SetEnergyCMS(5500.);
674 gener->SetNuclei(208,208);
675 break;
676 case kDPluspPb8800:
677 comment = comment.Append(" DPlus in p-Pb at 8.8 TeV");
678 gener = new AliGenPythia(nEvts);
679 gener->SetProcess(kPyDPluspPbMNR);
680 gener->SetStrucFunc(kCTEQ4L);
681 gener->SetPtHard(2.1,-1.0);
682 gener->SetEnergyCMS(8800.);
683 gener->SetProjectile("P",1,1);
684 gener->SetTarget("Pb",208,82);
685 break;
686 case kDPluspp14000:
687 comment = comment.Append(" DPlus in pp at 14 TeV");
688 gener = new AliGenPythia(nEvts);
689 gener->SetProcess(kPyDPlusppMNR);
690 gener->SetStrucFunc(kCTEQ4L);
691 gener->SetPtHard(2.1,-1.0);
692 gener->SetEnergyCMS(14000.);
693 break;
694 case kBeautyPbPb5500:
695 comment = comment.Append(" Beauty in Pb-Pb at 5.5 TeV");
696 gener = new AliGenPythia(nEvts);
697 gener->SetProcess(kPyBeautyPbPbMNR);
698 gener->SetStrucFunc(kCTEQ4L);
699 gener->SetPtHard(2.75,-1.0);
700 gener->SetEnergyCMS(5500.);
701 gener->SetNuclei(208,208);
702 break;
703 case kBeautypPb8800:
704 comment = comment.Append(" Beauty in p-Pb at 8.8 TeV");
705 gener = new AliGenPythia(nEvts);
706 gener->SetProcess(kPyBeautypPbMNR);
707 gener->SetStrucFunc(kCTEQ4L);
708 gener->SetPtHard(2.75,-1.0);
709 gener->SetEnergyCMS(8800.);
710 gener->SetProjectile("P",1,1);
711 gener->SetTarget("Pb",208,82);
712 break;
713 case kBeautypp14000:
714 comment = comment.Append(" Beauty in pp at 14 TeV");
715 gener = new AliGenPythia(nEvts);
716 gener->SetProcess(kPyBeautyppMNR);
717 gener->SetStrucFunc(kCTEQ4L);
718 gener->SetPtHard(2.75,-1.0);
719 gener->SetEnergyCMS(14000.);
720 break;
721 case kBeautypp14000wmi:
722 comment = comment.Append(" Beauty in pp at 14 TeV with mult. interactions");
723 gener = new AliGenPythia(-1);
724 gener->SetProcess(kPyBeautyppMNRwmi);
725 gener->SetStrucFunc(kCTEQ5L);
726 gener->SetPtHard(ptHardMin,ptHardMax);
727 gener->SetEnergyCMS(14000.);
728 break;
729 }
730
731 return gener;
732}
733
734AliGenerator* MbCocktail()
735{
736 comment = comment.Append(" pp at 14 TeV: Pythia low-pt, no heavy quarks + J/Psi from parameterisation");
13217d97 737 AliGenCocktail * gener = new AliGenCocktail();
e3d91248 738 gener->UsePerEventRates();
e3d91248 739
740//
741// Pythia
742 AliGenPythia* pythia = new AliGenPythia(-1);
743 pythia->SetMomentumRange(0, 999999.);
744 pythia->SetThetaRange(0., 180.);
745 pythia->SetYRange(-12.,12.);
746 pythia->SetPtRange(0,1000.);
747 pythia->SetProcess(kPyMb);
748 pythia->SetEnergyCMS(14000.);
749 pythia->SwitchHFOff();
750
751//
752// J/Psi parameterisation
753
754 AliGenParam* jpsi = new AliGenParam(1, AliGenMUONlib::kJpsi, "CDF scaled", "Jpsi");
755 jpsi->SetPtRange(0.,100.);
756 jpsi->SetYRange(-8., 8.);
757 jpsi->SetPhiRange(0., 360.);
758 jpsi->SetForceDecay(kAll);
759//
760//
761 gener->AddGenerator(pythia, "Pythia", 1.);
762 gener->AddGenerator(jpsi, "J/Psi", 8.e-4);
763
764 return gener;
765}
766
767AliGenerator* PyMbTriggered(Int_t pdg)
768{
769 AliGenPythia* pythia = new AliGenPythia(-1);
770 pythia->SetMomentumRange(0, 999999.);
771 pythia->SetThetaRange(0., 180.);
772 pythia->SetYRange(-12.,12.);
773 pythia->SetPtRange(0,1000.);
774 pythia->SetProcess(kPyMb);
775 pythia->SetEnergyCMS(14000.);
776 pythia->SetTriggerParticle(pdg, 0.9);
777 return pythia;
778}
779
13217d97 780void ProcessEnvironmentVars()
781{
782 // Run type
783 if (gSystem->Getenv("CONFIG_RUN_TYPE")) {
784 for (Int_t iRun = 0; iRun < kRunMax; iRun++) {
785 if (strcmp(gSystem->Getenv("CONFIG_RUN_TYPE"), pprRunName[iRun])==0) {
786 proc = (PDC06Proc_t)iRun;
787 cout<<"Run type set to "<<pprRunName[iRun]<<endl;
788 }
789 }
790 }
791
792 // Random Number seed
793 if (gSystem->Getenv("CONFIG_SEED")) {
794 seed = atoi(gSystem->Getenv("CONFIG_SEED"));
795 }
796}
e3d91248 797
798
799