]> git.uio.no Git - u/mrichter/AliRoot.git/blob - macros/ConfigCharmPPR.C
Coverity fix
[u/mrichter/AliRoot.git] / macros / ConfigCharmPPR.C
1 #if !defined(__CINT__) || defined(__MAKECINT__)
2 #include <Riostream.h>
3 #include <TRandom.h>
4 #include <TDatime.h>
5 #include <TSystem.h>
6 #include <TVirtualMC.h>
7 #include <TGeant3.h>
8 #include "STEER/AliRunLoader.h"
9 #include "STEER/AliRun.h"
10 #include "STEER/AliConfig.h"
11 #include "PYTHIA6/AliDecayerPythia.h"
12 #include "PYTHIA6/AliGenPythia.h"
13 #include "STEER/AliMagFCM.h"
14 #include "STRUCT/AliBODY.h"
15 #include "STRUCT/AliMAG.h"
16 #include "STRUCT/AliABSOv3.h"
17 #include "STRUCT/AliDIPOv3.h"
18 #include "STRUCT/AliHALLv3.h"
19 #include "STRUCT/AliFRAMEv2.h"
20 #include "STRUCT/AliSHILv3.h"
21 #include "STRUCT/AliPIPEv3.h"
22 #include "ITS/AliITSv11Hybrid.h"
23 #include "TPC/AliTPCv2.h"
24 #include "TOF/AliTOFv6T0.h"
25 #include "HMPID/AliHMPIDv3.h"
26 #include "ZDC/AliZDCv3.h"
27 #include "TRD/AliTRDv1.h"
28 #include "FMD/AliFMDv0.h"
29 #include "MUON/AliMUONv1.h"
30 #include "PHOS/AliPHOSv1.h"
31 #include "PMD/AliPMDv1.h"
32 #include "T0/AliT0v1.h"
33 #include "ACORDE/AliACORDEv1.h"
34 #endif
35
36 void LoadPythia();
37
38 void Config()
39 {
40  
41   //
42   // Set Random Number seed
43   TDatime dt;
44   UInt_t curtime=dt.Get();
45   UInt_t procid=gSystem->GetPid();
46   UInt_t seed=curtime-procid;
47
48   //  gRandom->SetSeed(seed);
49   gRandom->SetSeed(12345);
50   cerr<<"Seed for random number generation= "<<seed<<endl; 
51   // Load Pythia libraries
52   LoadPythia();
53    // libraries required by geant321
54 #if defined(__CINT__)
55     gSystem->Load("libgeant321");
56 #endif
57
58   new TGeant3TGeo("C++ Interface to Geant3");
59
60   if(!AliCDBManager::Instance()->IsDefaultStorageSet()){
61     AliCDBManager::Instance()->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
62     AliCDBManager::Instance()->SetRun(0);
63   }
64
65   //=======================================================================
66   //  Create the output file
67    
68   AliRunLoader* rl=0x0;
69
70   cout<<"Config.C: Creating Run Loader ..."<<endl;
71   rl = AliRunLoader::Open("galice.root",
72                           AliConfig::GetDefaultEventFolderName(),
73                           "recreate");
74   if (rl == 0x0)
75     {
76       gAlice->Fatal("Config.C","Can not instatiate the Run Loader");
77       return;
78     }
79   rl->SetCompressionLevel(2);
80   rl->SetNumberOfEventsPerFile(3);
81   gAlice->SetRunLoader(rl);
82   // gAlice->SetGeometryFromFile("geometry.root");
83   // gAlice->SetGeometryFromCDB();
84
85   // Set the trigger configuration
86   AliSimulation::Instance()->SetTriggerConfig("Pb-Pb");
87   cout<<"Trigger configuration is set to  Pb-Pb"<<endl;
88
89   //
90   // Set External decayer
91   AliDecayer* decayer = new AliDecayerPythia();
92   decayer->SetForceDecay(kAll);
93   decayer->Init();
94   gMC->SetExternalDecayer(decayer);
95
96
97   //
98   //=======================================================================
99   // ************* STEERING parameters FOR ALICE SIMULATION **************
100   // --- Specify event type to be tracked through the ALICE setup
101   // --- All positions are in cm, angles in degrees, and P and E in GeV
102
103
104   gMC->SetProcess("DCAY",1);
105   gMC->SetProcess("PAIR",1);
106   gMC->SetProcess("COMP",1);
107   gMC->SetProcess("PHOT",1);
108   gMC->SetProcess("PFIS",0);
109   gMC->SetProcess("DRAY",0);
110   gMC->SetProcess("ANNI",1);
111   gMC->SetProcess("BREM",1);
112   gMC->SetProcess("MUNU",1);
113   gMC->SetProcess("CKOV",1);
114   gMC->SetProcess("HADR",1);
115   gMC->SetProcess("LOSS",2);
116   gMC->SetProcess("MULS",1);
117   gMC->SetProcess("RAYL",1);
118   
119   Float_t cut = 1.e-3;        // 1MeV cut by default
120   Float_t tofmax = 1.e10;
121
122   gMC->SetCut("CUTGAM", cut);
123   gMC->SetCut("CUTELE", cut);
124   gMC->SetCut("CUTNEU", cut);
125   gMC->SetCut("CUTHAD", cut);
126   gMC->SetCut("CUTMUO", cut);
127   gMC->SetCut("BCUTE",  cut); 
128   gMC->SetCut("BCUTM",  cut); 
129   gMC->SetCut("DCUTE",  cut); 
130   gMC->SetCut("DCUTM",  cut); 
131   gMC->SetCut("PPCUTM", cut);
132   gMC->SetCut("TOFMAX", tofmax); 
133   
134
135   // AliGenPythia *gener = new AliGenPythia(ntracks);
136   AliGenPythia *gener = new AliGenPythia(-1);
137
138   gener->SetMomentumRange(0,999);
139   gener->SetPhiRange(0., 360.);
140   gener->SetThetaRange(0,180);
141   gener->SetYRange(-999,999);
142   //gener->SetPtRange(0,100);
143   gener->SetOrigin(0,0,0);          // vertex position
144   //gener->SetVertexSmear(kPerEvent); 
145   gener->SetSigma(0,0,5.3);  // Sigma in (X,Y,Z) (cm) on IP position
146   gener->SetTrackingFlag(0);
147   // gener->SetForceDecay(kHadronicD);
148
149   //
150   // The following settings select the Pythia parameters tuned to agree
151   // with charm NLO calculation for Pb-Pb @ 5.5 TeV with MNR code.
152   //
153   gener->SetProcess(kPyCharmPbPbMNR);
154   gener->SetStrucFunc(kCTEQ4L);
155   gener->SetPtHard(2.1,-1.0);
156   gener->SetEnergyCMS(5500.);
157   gener->SetNuclei(208,208); // Pb-Pb collisions
158
159   gener->Init();
160   // 
161   // Activate this line if you want the vertex smearing to happen
162   // track by track
163   //
164   //gener->SetVertexSmear(perTrack); 
165
166   // Field (L3 0.4 T)
167   AliMagFCM* field = new AliMagFCM(
168                      "Map2","$(ALICE_ROOT)/data/field01.dat", 2, 1., 10.);
169   field->SetSolenoidField(4.);
170   gAlice->SetField(field);    
171
172   Int_t iABSO=0;
173   Int_t iACORDE=0;
174   Int_t iDIPO=0;
175   Int_t iFMD=0;
176   Int_t iFRAME=0;
177   Int_t iHALL=0;
178   Int_t iITS=0;
179   Int_t iMAG=0;
180   Int_t iMUON=0;
181   Int_t iPHOS=0;
182   Int_t iPIPE=0;
183   Int_t iPMD=0;
184   Int_t iHMPID=0;
185   Int_t iSHIL=0;
186   Int_t iT0=0;
187   Int_t iTOF=0;
188   Int_t iTPC=0;
189   Int_t iTRD=0;
190   Int_t iZDC=0;
191
192   //=================== Alice BODY parameters =============================
193   AliBODY *BODY = new AliBODY("BODY","Alice envelop");
194
195   if(iMAG) {
196     //=================== MAG parameters ============================
197     // --- Start with Magnet since detector layouts may be depending ---
198     // --- on the selected Magnet dimensions ---
199     AliMAG *MAG  = new AliMAG("MAG","Magnet");
200   }
201
202
203   if(iABSO) {
204     //=================== ABSO parameters ============================
205     AliABSO *ABSO  = new AliABSOv3("ABSO","Muon Absorber");
206   }
207
208   if(iDIPO) {
209     //=================== DIPO parameters ============================
210
211     AliDIPO *DIPO  = new AliDIPOv3("DIPO","Dipole version 3");
212   }
213
214   if(iHALL) {
215     //=================== HALL parameters ============================
216
217     AliHALL *HALL  = new AliHALLv3("HALL","Alice Hall");
218   }
219
220
221   if(iFRAME) {
222     //=================== FRAME parameters ============================
223
224     AliFRAME *FRAME  = new AliFRAMEv2("FRAME","Space Frame");
225     FRAME->SetHoles(1);
226   }
227
228   if(iSHIL) {
229     //=================== SHIL parameters ============================
230
231     AliSHIL *SHIL  = new AliSHILv3("SHIL","Shielding");
232   }
233
234
235   if(iPIPE) {
236     //=================== PIPE parameters ============================
237
238     AliPIPE *PIPE  = new AliPIPEv3("PIPE","Beam Pipe");
239   }
240
241
242   if (iITS)
243   {
244     //=================== ITS parameters ============================
245
246     AliITS *ITS  = new AliITSv11Hybrid("ITS","ITS v11Hybrid");
247   }
248   
249
250   if(iTPC) {
251     //============================ TPC parameters ===================
252     AliTPC *TPC  = new AliTPCv2("TPC","Default");
253   }
254
255
256   if(iTOF) {
257     //=================== TOF parameters ============================
258     AliTOF *TOF  = new AliTOFv6T0("TOF","normal TOF");
259   }
260
261   if(iHMPID) {
262     //=================== HMPID parameters ===========================
263     AliHMPID *HMPID  = new AliHMPIDv3("HMPID","normal HMPID");    
264
265   }
266
267
268   if(iZDC) {
269     //=================== ZDC parameters ============================
270
271     AliZDC *ZDC  = new AliZDCv3("ZDC","normal ZDC");
272   }
273
274   if(iACORDE) {
275     //=================== ACORDE parameters ============================
276
277     AliACORDE *ACORDE  = new AliACORDEv1("ACORDE","normal ACORDE");
278   }
279
280   if(iTRD) {
281     //=================== TRD parameters ============================
282   
283     AliTRD *TRD  = new AliTRDv1("TRD","TRD slow simulator");
284   }
285
286   if(iFMD) {
287     //=================== FMD parameters ============================
288
289     AliFMD *FMD  = new AliFMDv0("FMD","normal FMD");
290   }
291
292   if(iMUON) {
293     //=================== MUON parameters ===========================
294     AliMUON *MUON  = new AliMUONv1("MUON","default");
295   }
296  
297   //=================== PHOS parameters ===========================
298
299   if(iPHOS) {
300     AliPHOS *PHOS  = new AliPHOSv1("PHOS","GPS2");
301   }
302
303
304   //=================== ACORDE parameters ===========================
305
306   if(iACORDE) {
307     AliACORDE *ACORDE  = new AliACORDEv1("ACORDE","Normal ACORDEGPS2");
308   }
309
310
311   if(iPMD) {
312     //=================== PMD parameters ============================
313
314     AliPMD *PMD  = new AliPMDv1("PMD","normal PMD");
315     PMD->SetPAR(1., 1., 0.8, 0.02);
316     PMD->SetIN(6., 18., -580., 27., 27.);
317     PMD->SetGEO(0.0, 0.2, 4.);
318     PMD->SetPadSize(0.8, 1.0, 1.0, 1.5);
319
320   }
321
322   if(iT0) {
323     //=================== T0 parameters ============================
324     AliT0 *T0  = new AliT0v1("T0","T0 Detector");
325   }
326
327          
328 }
329
330 void LoadPythia()
331 {
332     // Load Pythia related libraries
333     gSystem->Load("liblhapdf.so");      // Parton density functions
334     gSystem->Load("libEGPythia6.so");   // TGenerator interface
335     gSystem->Load("libpythia6.so");     // Pythia
336     gSystem->Load("libAliPythia6.so");  // ALICE specific implementations
337 }