]> git.uio.no Git - u/mrichter/AliRoot.git/blame - macros/Config.C
Initialization of all data members
[u/mrichter/AliRoot.git] / macros / Config.C
CommitLineData
de78d77f 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 <TGeant3.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"
19#include "STEER/AliMagFMaps.h"
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"
e1cd8da1 28#include "ITS/AliITSvPPRasymmFMD.h"
de78d77f 29#include "TPC/AliTPCv2.h"
30#include "TOF/AliTOFv2FHoles.h"
31#include "TOF/AliTOFv4T0.h"
b4f90c20 32#include "RICH/AliRICHv1.h"
de78d77f 33#include "ZDC/AliZDCv2.h"
34#include "TRD/AliTRDv1.h"
35#include "FMD/AliFMDv1.h"
36#include "MUON/AliMUONv1.h"
37#include "PHOS/AliPHOSv1.h"
38#include "PMD/AliPMDv1.h"
39#include "START/AliSTARTv1.h"
40#include "EMCAL/AliEMCALv1.h"
41#include "CRT/AliCRTv0.h"
42#include "VZERO/AliVZEROv2.h"
43#endif
44
45Float_t EtaToTheta(Float_t arg);
456a8e2d 46static Int_t eventsPerRun = 100;
b84cbedc 47enum PprGeo_t
48{
49 kHoles, kNoHoles
50};
51static PprGeo_t geo = kHoles;
52
fe4da5cc 53void Config()
54{
682a4a95 55 // ThetaRange is (0., 180.). It was (0.28,179.72) 7/12/00 09:00
81bf125a 56 // Theta range given through pseudorapidity limits 22/6/2001
682a4a95 57
58 // Set Random Number seed
de78d77f 59 gRandom->SetSeed(123456); // Set 0 to use the currecnt time
60 cout<<"Seed for random number generation= "<<gRandom->GetSeed()<<endl;
682a4a95 61
b9d0a01d 62
63 // libraries required by geant321
de78d77f 64#if defined(__CINT__)
b9d0a01d 65 gSystem->Load("libgeant321");
de78d77f 66#endif
b9d0a01d 67
68 new TGeant3("C++ Interface to Geant3");
682a4a95 69
de78d77f 70 AliRunLoader* rl=0x0;
71
72 cout<<"Config.C: Creating Run Loader ..."<<endl;
73 rl = AliRunLoader::Open("galice.root",
74 AliConfig::fgkDefaultEventFolderName,
75 "recreate");
76 if (rl == 0x0)
77 {
78 gAlice->Fatal("Config.C","Can not instatiate the Run Loader");
79 return;
80 }
81 rl->SetCompressionLevel(2);
82 rl->SetNumberOfEventsPerFile(3);
83 gAlice->SetRunLoader(rl);
d551411b 84
2ab0c725 85 //
682a4a95 86 // Set External decayer
b9d0a01d 87 TVirtualMCDecayer *decayer = new AliDecayerPythia();
682a4a95 88
89 decayer->SetForceDecay(kAll);
90 decayer->Init();
91 gMC->SetExternalDecayer(decayer);
682a4a95 92 //=======================================================================
6a3df6c9 93 // ************* STEERING parameters FOR ALICE SIMULATION **************
94 // --- Specify event type to be tracked through the ALICE setup
95 // --- All positions are in cm, angles in degrees, and P and E in GeV
96
97
98 gMC->SetProcess("DCAY",1);
99 gMC->SetProcess("PAIR",1);
100 gMC->SetProcess("COMP",1);
101 gMC->SetProcess("PHOT",1);
102 gMC->SetProcess("PFIS",0);
103 gMC->SetProcess("DRAY",0);
104 gMC->SetProcess("ANNI",1);
105 gMC->SetProcess("BREM",1);
106 gMC->SetProcess("MUNU",1);
107 gMC->SetProcess("CKOV",1);
108 gMC->SetProcess("HADR",1);
109 gMC->SetProcess("LOSS",2);
110 gMC->SetProcess("MULS",1);
111 gMC->SetProcess("RAYL",1);
682a4a95 112
113 Float_t cut = 1.e-3; // 1MeV cut by default
114 Float_t tofmax = 1.e10;
115
6a3df6c9 116 gMC->SetCut("CUTGAM", cut);
117 gMC->SetCut("CUTELE", cut);
118 gMC->SetCut("CUTNEU", cut);
119 gMC->SetCut("CUTHAD", cut);
120 gMC->SetCut("CUTMUO", cut);
121 gMC->SetCut("BCUTE", cut);
122 gMC->SetCut("BCUTM", cut);
123 gMC->SetCut("DCUTE", cut);
124 gMC->SetCut("DCUTM", cut);
125 gMC->SetCut("PPCUTM", cut);
126 gMC->SetCut("TOFMAX", tofmax);
127
128
e1cd8da1 129 int nParticles = 100;
682a4a95 130 if (gSystem->Getenv("CONFIG_NPARTICLES"))
131 {
de78d77f 132 nParticles = atoi(gSystem->Getenv("CONFIG_NPARTICLES"));
682a4a95 133 }
de78d77f 134
88cb7938 135 AliGenCocktail *gener = new AliGenCocktail();
e1cd8da1 136 gener->SetPhiRange(0, 360);
81bf125a 137 // Set pseudorapidity range from -8 to 8.
e1cd8da1 138 Float_t thmin = EtaToTheta(8); // theta min. <---> eta max
139 Float_t thmax = EtaToTheta(-8); // theta max. <---> eta min
81bf125a 140 gener->SetThetaRange(thmin,thmax);
682a4a95 141 gener->SetOrigin(0, 0, 0); //vertex position
142 gener->SetSigma(0, 0, 0); //Sigma in (X,Y,Z) (cm) on IP position
88cb7938 143
144 AliGenHIJINGpara *hijingparam = new AliGenHIJINGpara(nParticles);
145 hijingparam->SetMomentumRange(0.2, 999);
146 gener->AddGenerator(hijingparam,"HIJING PARAM",1);
147
148// AliGenBox *genbox = new AliGenBox(nParticles);
149// genbox->SetPart(22);
150// genbox->SetPtRange(0.3, 10.00);
151// gener->AddGenerator(genbox,"GENBOX GAMMA for PHOS",1);
682a4a95 152 gener->Init();
88cb7938 153
154
682a4a95 155 //
156 // Activate this line if you want the vertex smearing to happen
157 // track by track
2ab0c725 158 //
682a4a95 159 //gener->SetVertexSmear(perTrack);
35be7bcf 160 // Field (L3 0.4 T)
161 AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 2, 1., 10., 1);
35be7bcf 162 gAlice->SetField(field);
163
164
de78d77f 165 Int_t iABSO = 1;
35be7bcf 166 Int_t iDIPO = 1;
de78d77f 167 Int_t iFMD = 1;
35be7bcf 168 Int_t iFRAME = 1;
169 Int_t iHALL = 1;
170 Int_t iITS = 1;
171 Int_t iMAG = 1;
de78d77f 172 Int_t iMUON = 1;
35be7bcf 173 Int_t iPHOS = 1;
174 Int_t iPIPE = 1;
de78d77f 175 Int_t iPMD = 1;
176 Int_t iRICH = 1;
35be7bcf 177 Int_t iSHIL = 1;
de78d77f 178 Int_t iSTART = 1;
179 Int_t iTOF = 1;
35be7bcf 180 Int_t iTPC = 1;
de78d77f 181 Int_t iTRD = 1;
182 Int_t iZDC = 1;
183 Int_t iEMCAL = 1;
35be7bcf 184 Int_t iCRT = 0;
de78d77f 185 Int_t iVZERO = 1;
88cb7938 186 rl->CdGAFile();
682a4a95 187 //=================== Alice BODY parameters =============================
188 AliBODY *BODY = new AliBODY("BODY", "Alice envelop");
2ab0c725 189
682a4a95 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 }
8de40c27 197
fe4da5cc 198
682a4a95 199 if (iABSO)
200 {
201 //=================== ABSO parameters ============================
202 AliABSO *ABSO = new AliABSOv0("ABSO", "Muon Absorber");
203 }
fe4da5cc 204
682a4a95 205 if (iDIPO)
206 {
207 //=================== DIPO parameters ============================
fe4da5cc 208
682a4a95 209 AliDIPO *DIPO = new AliDIPOv2("DIPO", "Dipole version 2");
210 }
fe4da5cc 211
682a4a95 212 if (iHALL)
213 {
214 //=================== HALL parameters ============================
2ab0c725 215
682a4a95 216 AliHALL *HALL = new AliHALL("HALL", "Alice Hall");
217 }
2ab0c725 218
2ab0c725 219
682a4a95 220 if (iFRAME)
221 {
222 //=================== FRAME parameters ============================
2ab0c725 223
35be7bcf 224 AliFRAMEv2 *FRAME = new AliFRAMEv2("FRAME", "Space Frame");
225 if (geo == kHoles) {
226 FRAME->SetHoles(1);
227 } else {
228 FRAME->SetHoles(0);
229 }
682a4a95 230 }
fe4da5cc 231
682a4a95 232 if (iSHIL)
233 {
234 //=================== SHIL parameters ============================
8dfe31df 235
35be7bcf 236 AliSHIL *SHIL = new AliSHILv2("SHIL", "Shielding Version 2");
682a4a95 237 }
fe4da5cc 238
ecd5c1f7 239
682a4a95 240 if (iPIPE)
241 {
242 //=================== PIPE parameters ============================
b422f318 243
682a4a95 244 AliPIPE *PIPE = new AliPIPEv0("PIPE", "Beam Pipe");
245 }
d6478a5d 246
35be7bcf 247 if(iITS) {
2ab0c725 248
35be7bcf 249 //=================== ITS parameters ============================
d6478a5d 250 //
251 // As the innermost detector in ALICE, the Inner Tracking System "impacts" on
252 // almost all other detectors. This involves the fact that the ITS geometry
253 // still has several options to be followed in parallel in order to determine
254 // the best set-up which minimizes the induced background. All the geometries
255 // available to date are described in the following. Read carefully the comments
256 // and use the default version (the only one uncommented) unless you are making
257 // comparisons and you know what you are doing. In this case just uncomment the
258 // ITS geometry you want to use and run Aliroot.
259 //
260 // Detailed geometries:
261 //
262 //
d6478a5d 263 //
e1cd8da1 264 AliITSvPPRasymmFMD *ITS = new AliITSvPPRasymmFMD("ITS","ITS PPR detailed version with asymmetric services");
265 ITS->SetMinorVersion(2); // don't touch this parameter if you're not an ITS developer
266 ITS->SetReadDet(kTRUE); // don't touch this parameter if you're not an ITS developer
267 // ITS->SetWriteDet("$ALICE_ROOT/ITS/ITSgeometry_vPPRasymm2.det"); // don't touch this parameter if you're not an ITS developer
35be7bcf 268 ITS->SetThicknessDet1(200.); // detector thickness on layer 1 must be in the range [100,300]
269 ITS->SetThicknessDet2(200.); // detector thickness on layer 2 must be in the range [100,300]
270 ITS->SetThicknessChip1(200.); // chip thickness on layer 1 must be in the range [150,300]
271 ITS->SetThicknessChip2(200.); // chip thickness on layer 2 must be in the range [150,300]
e1cd8da1 272 ITS->SetRails(0); // 1 --> rails in ; 0 --> rails out
273 ITS->SetCoolingFluid(1); // 1 --> water ; 0 --> freon
274
275
d6478a5d 276 //
277 // Coarse geometries (warning: no hits are produced with these coarse geometries and they unuseful
278 // for reconstruction !):
279 //
280 //
281 //AliITSvPPRcoarseasymm *ITS = new AliITSvPPRcoarseasymm("ITS","New ITS PPR coarse version with asymmetric services");
35be7bcf 282 //ITS->SetRails(0); // 1 --> rails in ; 0 --> rails out
d6478a5d 283 //ITS->SetSupportMaterial(0); // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon
284 //
285 //AliITS *ITS = new AliITSvPPRcoarsesymm("ITS","New ITS PPR coarse version with symmetric services");
35be7bcf 286 //ITS->SetRails(0); // 1 --> rails in ; 0 --> rails out
d6478a5d 287 //ITS->SetSupportMaterial(0); // 0 --> Copper ; 1 --> Aluminum ; 2 --> Carbon
288 //
289 //
290 //
291 // Geant3 <-> EUCLID conversion
292 // ============================
293 //
294 // SetEUCLID is a flag to output (=1) or not to output (=0) both geometry and
295 // media to two ASCII files (called by default ITSgeometry.euc and
296 // ITSgeometry.tme) in a format understandable to the CAD system EUCLID.
297 // The default (=0) means that you dont want to use this facility.
298 //
88cb7938 299 ITS->SetEUCLID(0);
35be7bcf 300 }
682a4a95 301
302 if (iTPC)
303 {
304 //============================ TPC parameters ================================
305 // --- This allows the user to specify sectors for the SLOW (TPC geometry 2)
306 // --- Simulator. SecAL (SecAU) <0 means that ALL lower (upper)
307 // --- sectors are specified, any value other than that requires at least one
308 // --- sector (lower or upper)to be specified!
309 // --- Reminder: sectors 1-24 are lower sectors (1-12 -> z>0, 13-24 -> z<0)
310 // --- sectors 25-72 are the upper ones (25-48 -> z>0, 49-72 -> z<0)
311 // --- SecLows - number of lower sectors specified (up to 6)
312 // --- SecUps - number of upper sectors specified (up to 12)
313 // --- Sens - sensitive strips for the Slow Simulator !!!
314 // --- This does NOT work if all S or L-sectors are specified, i.e.
315 // --- if SecAL or SecAU < 0
316 //
317 //
318 //-----------------------------------------------------------------------------
319
320 // gROOT->LoadMacro("SetTPCParam.C");
321 // AliTPCParam *param = SetTPCParam();
322 AliTPC *TPC = new AliTPCv2("TPC", "Default");
323
324 // All sectors included
682a4a95 325 TPC->SetSecAU(-1);
88cb7938 326 TPC->SetSecAL(-1);
682a4a95 327 }
328
35be7bcf 329
330 if (iTOF) {
331 if (geo == kHoles) {
682a4a95 332 //=================== TOF parameters ============================
35be7bcf 333 AliTOF *TOF = new AliTOFv2FHoles("TOF", "TOF with Holes");
334 } else {
335 AliTOF *TOF = new AliTOFv4T0("TOF", "normal TOF");
336 }
682a4a95 337 }
338
35be7bcf 339
682a4a95 340 if (iRICH)
341 {
342 //=================== RICH parameters ===========================
b4f90c20 343 AliRICH *RICH = new AliRICHv1("RICH", "normal RICH");
682a4a95 344
345 }
346
347
348 if (iZDC)
349 {
350 //=================== ZDC parameters ============================
351
2423e0d9 352 AliZDC *ZDC = new AliZDCv2("ZDC", "normal ZDC");
682a4a95 353 }
354
682a4a95 355 if (iTRD)
356 {
357 //=================== TRD parameters ============================
358
359 AliTRD *TRD = new AliTRDv1("TRD", "TRD slow simulator");
360
361 // Select the gas mixture (0: 97% Xe + 3% isobutane, 1: 90% Xe + 10% CO2)
362 TRD->SetGasMix(1);
35be7bcf 363 if (geo == kHoles) {
364 // With hole in front of PHOS
365 TRD->SetPHOShole();
366 // With hole in front of RICH
367 TRD->SetRICHhole();
368 }
369 // Switch on TR
370 AliTRDsim *TRDsim = TRD->CreateTR();
682a4a95 371 }
372
373 if (iFMD)
374 {
375 //=================== FMD parameters ============================
35be7bcf 376 AliFMD *FMD = new AliFMDv1("FMD", "normal FMD");
f6d3338b 377 }
682a4a95 378
379 if (iMUON)
380 {
381 //=================== MUON parameters ===========================
382
383 AliMUON *MUON = new AliMUONv1("MUON", "default");
384 }
385 //=================== PHOS parameters ===========================
386
387 if (iPHOS)
388 {
35be7bcf 389 AliPHOS *PHOS = new AliPHOSv1("PHOS", "IHEP");
682a4a95 390 }
391
392
393 if (iPMD)
394 {
395 //=================== PMD parameters ============================
682a4a95 396 AliPMD *PMD = new AliPMDv1("PMD", "normal PMD");
35be7bcf 397 }
682a4a95 398
35be7bcf 399 if (iSTART)
400 {
401 //=================== START parameters ============================
402 AliSTART *START = new AliSTARTv1("START", "START Detector");
682a4a95 403 }
404
35be7bcf 405 if (iEMCAL)
9757d28c 406 {
407 //=================== EMCAL parameters ============================
de78d77f 408 AliEMCAL *EMCAL = new AliEMCALv1("EMCAL", "G56_2_55_19_104_14");
9757d28c 409 }
410
35be7bcf 411 if (iCRT)
682a4a95 412 {
35be7bcf 413 //=================== CRT parameters ============================
414 AliCRT *CRT = new AliCRTv0("CRT", "normal ACORDE");
682a4a95 415 }
416
35be7bcf 417 if (iVZERO)
418 {
419 //=================== CRT parameters ============================
420 AliVZERO *VZERO = new AliVZEROv2("VZERO", "normal VZERO");
421 }
682a4a95 422
de78d77f 423 cout << "End of Config.C" << endl;
424
682a4a95 425}
81bf125a 426
427Float_t EtaToTheta(Float_t arg){
428 return (180./TMath::Pi())*2.*atan(exp(-arg));
429}