]> git.uio.no Git - u/mrichter/AliRoot.git/blame - BCM/Config_BCM.C
Coverity fixes
[u/mrichter/AliRoot.git] / BCM / Config_BCM.C
CommitLineData
a275a1a0 1// One can use the configuration macro in compiled mode by
2// root [0] gSystem->Load("libgeant321");
3// root [0] gSystem->SetIncludePath("-I$ROOTSYS/include -I$ALICE_ROOT/include\
4// -I$ALICE_ROOT -I$ALICE/geant3/TGeant3");
5// root [0] .x grun.C(1,"Config.C++")
6
7#if !defined(__CINT__) || defined(__MAKECINT__)
8#include <Riostream.h>
9#include <TRandom.h>
10#include <TSystem.h>
11#include <TVirtualMC.h>
12#include <TGeant3TGeo.h>
13#include "STEER/AliRunLoader.h"
14#include "STEER/AliRun.h"
15#include "STEER/AliConfig.h"
16#include "PYTHIA6/AliDecayerPythia.h"
17#include "EVGEN/AliGenCocktail.h"
18#include "EVGEN/AliGenHIJINGpara.h"
f7a1cc68 19#include "STEER/AliMagF.h"
a275a1a0 20#include "STRUCT/AliBODY.h"
21#include "STRUCT/AliMAG.h"
22#include "STRUCT/AliABSOv0.h"
23#include "STRUCT/AliDIPOv2.h"
24#include "STRUCT/AliHALL.h"
25#include "STRUCT/AliFRAMEv2.h"
26#include "STRUCT/AliSHILv2.h"
27#include "STRUCT/AliPIPEv0.h"
28#include "ITS/AliITSvPPRasymmFMD.h"
29#include "TPC/AliTPCv2.h"
30#include "TOF/AliTOFv5T0.h"
8b1c76de 31#include "HMPID/AliHMPIDv1.h"
a275a1a0 32#include "ZDC/AliZDCv2.h"
33#include "TRD/AliTRDv1.h"
34#include "FMD/AliFMDv1.h"
35#include "MUON/AliMUONv1.h"
36#include "PHOS/AliPHOSv1.h"
37#include "PMD/AliPMDv1.h"
38#include "START/AliSTARTv1.h"
39#include "EMCAL/AliEMCALv2.h"
40#include "CRT/AliCRTv0.h"
41#include "VZERO/AliVZEROv7.h"
42#endif
43
44Float_t EtaToTheta(Float_t arg);
45
46void Config()
47{
48 // ThetaRange is (0., 180.). It was (0.28,179.72) 7/12/00 09:00
49 // Theta range given through pseudorapidity limits 22/6/2001
50
51 // Set Random Number seed
52 gRandom->SetSeed(123456); // Set 0 to use the currecnt time
53 AliLog::Message(AliLog::kInfo, Form("Seed for random number generation = %d",gRandom->GetSeed()), "Config.C", "Config.C", "Config()","Config.C", __LINE__);
54
55
56 // libraries required by geant321
57#if defined(__CINT__)
58 gSystem->Load("libgeant321");
59 gSystem->Load("libGed.so");
60 gSystem->Load("libRGL.so");
61 //gSystem->Load("libGeom");
62 //cout << "\t* Loading TFluka..." << endl;
63 //gSystem->Load("libTFluka");
64 cout << "\t* Instantiating TFluka..." << endl;
65// new TFluka("C++ Interface to Fluka", 0/*verbositylevel*/);
66#endif
67
68 new TGeant3TGeo("C++ Interface to Geant3");
69
70 AliRunLoader* rl=0x0;
71
72 AliLog::Message(AliLog::kInfo, "Creating Run Loader", "Config.C", "Config.C", "Config()"," Config.C", __LINE__);
73
74 rl = AliRunLoader::Open("galice.root",
75 AliConfig::GetDefaultEventFolderName(),
76 "recreate");
77 if (rl == 0x0)
78 {
79 gAlice->Fatal("Config.C","Can not instatiate the Run Loader");
80 return;
81 }
82 rl->SetCompressionLevel(2);
83 rl->SetNumberOfEventsPerFile(100);
84 gAlice->SetRunLoader(rl);
85
86 AliCDBManager* man = AliCDBManager::Instance();
87 man->SetDefaultStorage("local://$(ALICE_ROOT)/");
88
89 // Set the trigger configuration
28da60d3 90 AliSimulation::Instance()->SetTriggerConfig("Pb-Pb");
a275a1a0 91 cout<<"Trigger configuration is set to Pb-Pb"<<endl;
92
93 //
94 // Set External decayer
95 TVirtualMCDecayer *decayer = new AliDecayerPythia();
96
97 decayer->SetForceDecay(kAll);
98 decayer->Init();
99 gMC->SetExternalDecayer(decayer);
100 //=======================================================================
101 // ************* STEERING parameters FOR ALICE SIMULATION **************
102 // --- Specify event type to be tracked through the ALICE setup
103 // --- All positions are in cm, angles in degrees, and P and E in GeV
104
105
106 gMC->SetProcess("DCAY",1);
107 gMC->SetProcess("PAIR",1);
108 gMC->SetProcess("COMP",1);
109 gMC->SetProcess("PHOT",1);
110 gMC->SetProcess("PFIS",0);
111 gMC->SetProcess("DRAY",0);
112 gMC->SetProcess("ANNI",1);
113 gMC->SetProcess("BREM",1);
114 gMC->SetProcess("MUNU",1);
115 gMC->SetProcess("CKOV",1);
116 gMC->SetProcess("HADR",1);
117 gMC->SetProcess("LOSS",2);
118 gMC->SetProcess("MULS",1);
119 gMC->SetProcess("RAYL",1);
120
121 Float_t cut = 1.e-3; // 1MeV cut by default
122 Float_t tofmax = 1.e10;
123
124 gMC->SetCut("CUTGAM", cut);
125 gMC->SetCut("CUTELE", cut);
126 gMC->SetCut("CUTNEU", cut);
127 gMC->SetCut("CUTHAD", cut);
128 gMC->SetCut("CUTMUO", cut);
129 gMC->SetCut("BCUTE", cut);
130 gMC->SetCut("BCUTM", cut);
131 gMC->SetCut("DCUTE", cut);
132 gMC->SetCut("DCUTM", cut);
133 gMC->SetCut("PPCUTM", cut);
134 gMC->SetCut("TOFMAX", tofmax);
135
136
137 int nParticles = 1000;
138 if (gSystem->Getenv("CONFIG_NPARTICLES"))
139 {
140 nParticles = atoi(gSystem->Getenv("CONFIG_NPARTICLES"));
141 }
142
143
144 AliGenPythia *gener = new AliGenPythia(-1);
145 gener->SetProcess(kPyMb);
146 gener->SetEnergyCMS(14000);
147 gener->Init();
148
149
150 //
151 // Activate this line if you want the vertex smearing to happen
152 // track by track
153 //
154 //gener->SetVertexSmear(perTrack);
155 // Field (L3 0.4 T)
4642ac4b 156 TGeoGlobalMagField::Instance()->SetField(new AliMagF("Maps","Maps", 1., 1., AliMagF::k5kG));
a275a1a0 157
158 Int_t iABSO = 1;
159 Int_t iACORDE = 0;
160 Int_t iDIPO = 1;
161 Int_t iEMCAL = 0;
162 Int_t iFMD = 1;
163 Int_t iFRAME = 0;
164 Int_t iHALL = 1;
165 Int_t iITS = 1;
166 Int_t iMAG = 1;
167 Int_t iMUON = 0;
168 Int_t iPHOS = 0;
169 Int_t iPIPE = 1;
170 Int_t iPMD = 0;
171 Int_t iHMPID = 0;
172 Int_t iSHIL = 1;
173 Int_t iT0 = 1;
174 Int_t iTOF = 0;
175 Int_t iTPC = 0;
176 Int_t iTRD = 0;
177 Int_t iVZERO = 1;
178 Int_t iZDC = 0;
179 Int_t iBCM = 1;
180
181 rl->CdGAFile();
182 //=================== Alice BODY parameters =============================
183 AliBODY *BODY = new AliBODY("BODY", "Alice envelop");
184
185 if (iBCM) {
186 AliBCM *BCM = new AliBCM("BCM", "Alice Beam Condition Monitor");
187 }
188
189
190 if (iMAG)
191 {
192 //=================== MAG parameters ============================
193 // --- Start with Magnet since detector layouts may be depending ---
194 // --- on the selected Magnet dimensions ---
195 AliMAG *MAG = new AliMAG("MAG", "Magnet");
196 }
197
198
199 if (iABSO)
200 {
201 //=================== ABSO parameters ============================
202 AliABSO *ABSO = new AliABSOv3("ABSO", "Muon Absorber");
203 }
204
205 if (iDIPO)
206 {
207 //=================== DIPO parameters ============================
208
209 AliDIPO *DIPO = new AliDIPOv3("DIPO", "Dipole version 3");
210 }
211
212 if (iHALL)
213 {
214 //=================== HALL parameters ============================
215
216 AliHALL *HALL = new AliHALLv3("HALL", "Alice Hall");
217 }
218
219
220 if (iFRAME)
221 {
222 //=================== FRAME parameters ============================
223
224 AliFRAMEv2 *FRAME = new AliFRAMEv2("FRAME", "Space Frame");
225 }
226
227 if (iSHIL)
228 {
229 //=================== SHIL parameters ============================
230
231 AliSHIL *SHIL = new AliSHILv3("SHIL", "Shielding Version 3");
232 }
233
234
235 if (iPIPE)
236 {
237 //=================== PIPE parameters ============================
238
239 AliPIPE *PIPE = new AliPIPEv3("PIPE", "Beam Pipe");
240 }
241
242 if(iITS) {
243
244 //=================== ITS parameters ============================
245 //
246 // As the innermost detector in ALICE, the Inner Tracking System "impacts" on
247 // almost all other detectors. This involves the fact that the ITS geometry
248 // still has several options to be followed in parallel in order to determine
249 // the best set-up which minimizes the induced background. All the geometries
250 // available to date are described in the following. Read carefully the comments
251 // and use the default version (the only one uncommented) unless you are making
252 // comparisons and you know what you are doing. In this case just uncomment the
253 // ITS geometry you want to use and run Aliroot.
254 //
255 // Detailed geometries:
256 //
257 //
258 //AliITS *ITS = new AliITSv5symm("ITS","Updated ITS TDR detailed version with symmetric services");
259 //
260 //AliITS *ITS = new AliITSv5asymm("ITS","Updates ITS TDR detailed version with asymmetric services");
261 //
262 AliITSvPPRasymmFMD *ITS = new AliITSvPPRasymmFMD("ITS","New ITS PPR detailed version with asymmetric services");
263 ITS->SetMinorVersion(2); // don't touch this parameter if you're not an ITS developer
264 ITS->SetReadDet(kFALSE); // don't touch this parameter if you're not an ITS developer
265 // ITS->SetWriteDet("$ALICE_ROOT/ITS/ITSgeometry_vPPRasymm2.det"); // don't touch this parameter if you're not an ITS developer
266 ITS->SetThicknessDet1(200.); // detector thickness on layer 1 must be in the range [100,300]
267 ITS->SetThicknessDet2(200.); // detector thickness on layer 2 must be in the range [100,300]
268 ITS->SetThicknessChip1(150.); // chip thickness on layer 1 must be in the range [150,300]
269 ITS->SetThicknessChip2(150.); // chip thickness on layer 2 must be in the range [150,300]
270 ITS->SetRails(0); // 1 --> rails in ; 0 --> rails out
271 ITS->SetCoolingFluid(1); // 1 --> water ; 0 --> freon
272
273 // Coarse geometries (warning: no hits are produced with these coarse geometries and they unuseful
274 // for reconstruction !):
275 //
276 //
277 //AliITSvPPRcoarseasymm *ITS = new AliITSvPPRcoarseasymm("ITS","New ITS PPR coarse version with asymmetric services");
278 //ITS->SetRails(0); // 1 --> rails in ; 0 --> rails out
279 //ITS->SetSupportMaterial(0); // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon
280 //
281 //AliITS *ITS = new AliITSvPPRcoarsesymm("ITS","New ITS PPR coarse version with symmetric services");
282 //ITS->SetRails(0); // 1 --> rails in ; 0 --> rails out
283 //ITS->SetSupportMaterial(0); // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon
284 //
285 //
286 //
287 // Geant3 <-> EUCLID conversion
288 // ============================
289 //
290 // SetEUCLID is a flag to output (=1) or not to output (=0) both geometry and
291 // media to two ASCII files (called by default ITSgeometry.euc and
292 // ITSgeometry.tme) in a format understandable to the CAD system EUCLID.
293 // The default (=0) means that you dont want to use this facility.
294 //
295 ITS->SetEUCLID(0);
296 }
297
298 if (iTPC)
299 {
300 //============================ TPC parameters =====================
301 AliTPC *TPC = new AliTPCv2("TPC", "Default");
302 }
303
304
305 if (iTOF) {
306 //=================== TOF parameters ============================
307 AliTOF *TOF = new AliTOFv6T0("TOF", "normal TOF");
308 // Partial geometry: modules at 2,3,4,6,7,11,12,14,15,16
309 // starting at 6h in positive direction
310 // Int_t TOFSectors[18]={-1,-1,0,0,0,-1,0,0,-1,-1,-1,0,0,-1,0,0,0,0};
311 // Partial geometry: modules at 1,2,6,7,9,10,11,12,15,16,17
312 // (ALICE numbering convention)
313 Int_t TOFSectors[18]={-1,0,0,-1,-1,-1,0,0,-1,0,0,0,0,-1,-1,0,0,0};
314 TOF->SetTOFSectors(TOFSectors);
315 }
316
317
318 if (iHMPID)
319 {
320 //=================== HMPID parameters ===========================
321 AliHMPID *HMPID = new AliHMPIDv1("HMPID", "normal HMPID");
322
323 }
324
325
326 if (iZDC)
327 {
328 //=================== ZDC parameters ============================
329
330 AliZDC *ZDC = new AliZDCv2("ZDC", "normal ZDC");
331 }
332
333 if (iTRD)
334 {
335 //=================== TRD parameters ============================
336
337 AliTRD *TRD = new AliTRDv1("TRD", "TRD slow simulator");
338 AliTRDgeometry *geoTRD = TRD->GetGeometry();
339 // Partial geometry: modules at 2,3,4,6,11,12,14,15
340 // starting at 6h in positive direction
341 geoTRD->SetSMstatus(0,0);
342 geoTRD->SetSMstatus(1,0);
343 geoTRD->SetSMstatus(5,0);
344 geoTRD->SetSMstatus(7,0);
345 geoTRD->SetSMstatus(8,0);
346 geoTRD->SetSMstatus(9,0);
347 geoTRD->SetSMstatus(10,0);
348 geoTRD->SetSMstatus(13,0);
349 geoTRD->SetSMstatus(16,0);
350 geoTRD->SetSMstatus(17,0);
351 }
352
353 if (iFMD)
354 {
355 //=================== FMD parameters ============================
356 AliFMD *FMD = new AliFMDv1("FMD", "normal FMD");
357 }
358
359 if (iMUON)
360 {
361 //=================== MUON parameters ===========================
362 // New MUONv1 version (geometry defined via builders)
363 AliMUON *MUON = new AliMUONv1("MUON", "default");
364 }
365 //=================== PHOS parameters ===========================
366
367 if (iPHOS)
368 {
369 AliPHOS *PHOS = new AliPHOSv1("PHOS", "IHEP");
370 }
371
372
373 if (iPMD)
374 {
375 //=================== PMD parameters ============================
376 AliPMD *PMD = new AliPMDv1("PMD", "normal PMD");
377 }
378
379 if (iT0)
380 {
381 //=================== T0 parameters ============================
382 AliT0 *T0 = new AliT0v1("T0", "T0 Detector");
383 }
384
385 if (iEMCAL)
386 {
387 //=================== EMCAL parameters ============================
8224b11d 388 AliEMCAL *EMCAL = new AliEMCALv2("EMCAL", "EMCAL_COMPLETE");
a275a1a0 389 }
390
391 if (iACORDE)
392 {
393 //=================== ACORDE parameters ============================
f7882672 394 AliACORDE *ACORDE = new AliACORDEv1("ACORDE", "normal ACORDE");
a275a1a0 395 }
396
397 if (iVZERO)
398 {
399 //=================== ACORDE parameters ============================
400 AliVZERO *VZERO = new AliVZEROv7("VZERO", "normal VZERO");
401 }
402 AliLog::Message(AliLog::kInfo, "End of Config", "Config.C", "Config.C", "Config()"," Config.C", __LINE__);
403
404}
405
406Float_t EtaToTheta(Float_t arg){
407 return (180./TMath::Pi())*2.*atan(exp(-arg));
408}