]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/testMC/ConfigHPT1.C
The present commit corresponds to an important change in the way the
[u/mrichter/AliRoot.git] / TPC / testMC / ConfigHPT1.C
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"
19 #include "STEER/AliMagF.h"
20 #include "STRUCT/AliBODY.h"
21 #include "STRUCT/AliMAG.h"
22 #include "STRUCT/AliABSOv3.h"
23 #include "STRUCT/AliDIPOv3.h"
24 #include "STRUCT/AliHALLv3.h"
25 #include "STRUCT/AliFRAMEv2.h"
26 #include "STRUCT/AliSHILv3.h"
27 #include "STRUCT/AliPIPEv3.h"
28 #include "ITS/AliITSvPPRasymmFMD.h"
29 #include "TPC/AliTPCv2.h"
30 #include "TOF/AliTOFv6T0.h"
31 #include "HMPID/AliHMPIDv2.h"
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 "T0/AliT0v1.h"
39 #include "EMCAL/AliEMCALv2.h"
40 #include "ACORDE/AliACORDEv0.h"
41 #include "VZERO/AliVZEROv7.h"
42 #endif
43
44 Float_t EtaToTheta(Float_t arg);
45
46 void 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(0); // 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 #endif
60
61     new     TGeant3TGeo("C++ Interface to Geant3");
62
63     if(!AliCDBManager::Instance()->IsDefaultStorageSet()){
64       AliCDBManager::Instance()->SetDefaultStorage("local://$ALICE_ROOT");
65       AliCDBManager::Instance()->SetRun(0);
66     }
67
68     AliRunLoader* rl=0x0;
69
70     AliLog::Message(AliLog::kInfo, "Creating Run Loader", "Config.C", "Config.C", "Config()"," Config.C", __LINE__);
71
72     rl = AliRunLoader::Open("galice.root",
73                             AliConfig::GetDefaultEventFolderName(),
74                             "recreate");
75     if (rl == 0x0)
76       {
77         gAlice->Fatal("Config.C","Can not instatiate the Run Loader");
78         return;
79       }
80     rl->SetCompressionLevel(2);
81     rl->SetNumberOfEventsPerFile(3);
82     gAlice->SetRunLoader(rl);
83     // gAlice->SetGeometryFromFile("geometry.root");
84     // gAlice->SetGeometryFromCDB();
85
86     // Set the trigger configuration
87     gAlice->SetTriggerDescriptor("Pb-Pb");
88     cout<<"Trigger configuration is set to  Pb-Pb"<<endl;
89
90     //
91     // Set External decayer
92     TVirtualMCDecayer *decayer = new AliDecayerPythia();
93
94     decayer->SetForceDecay(kAll);
95     decayer->Init();
96     gMC->SetExternalDecayer(decayer);
97     //=======================================================================
98     // ************* STEERING parameters FOR ALICE SIMULATION **************
99     // --- Specify event type to be tracked through the ALICE setup
100     // --- All positions are in cm, angles in degrees, and P and E in GeV
101
102
103     gMC->SetProcess("DCAY",1);
104     gMC->SetProcess("PAIR",1);
105     gMC->SetProcess("COMP",1);
106     gMC->SetProcess("PHOT",1);
107     gMC->SetProcess("PFIS",0);
108     gMC->SetProcess("DRAY",0);
109     gMC->SetProcess("ANNI",1);
110     gMC->SetProcess("BREM",1);
111     gMC->SetProcess("MUNU",1);
112     gMC->SetProcess("CKOV",1);
113     gMC->SetProcess("HADR",1);
114     gMC->SetProcess("LOSS",2);
115     gMC->SetProcess("MULS",1);
116     gMC->SetProcess("RAYL",1);
117
118     Float_t cut = 1.e-3;        // 1MeV cut by default
119     Float_t tofmax = 1.e10;
120
121     gMC->SetCut("CUTGAM", cut);
122     gMC->SetCut("CUTELE", cut);
123     gMC->SetCut("CUTNEU", cut);
124     gMC->SetCut("CUTHAD", cut);
125     gMC->SetCut("CUTMUO", cut);
126     gMC->SetCut("BCUTE",  cut); 
127     gMC->SetCut("BCUTM",  cut); 
128     gMC->SetCut("DCUTE",  cut); 
129     gMC->SetCut("DCUTM",  cut); 
130     gMC->SetCut("PPCUTM", cut);
131     gMC->SetCut("TOFMAX", tofmax); 
132
133
134     int     nParticles = 100;
135     if (gSystem->Getenv("CONFIG_NPARTICLES"))
136     {
137         nParticles = atoi(gSystem->Getenv("CONFIG_NPARTICLES"));
138     }
139
140
141     AliGenCocktail *gener = new AliGenCocktail();
142     gener->SetPhiRange(0, 360);
143     // Set pseudorapidity range from -8 to 8.
144     Float_t thmin = EtaToTheta(1.2);   // theta min. <---> eta max
145     Float_t thmax = EtaToTheta(-1.2);  // theta max. <---> eta min 
146     gener->SetThetaRange(thmin,thmax);
147     gener->SetOrigin(0, 0, 0);  //vertex position
148     gener->SetSigma(0, 0, 0);   //Sigma in (X,Y,Z) (cm) on IP position
149
150     //    AliGenHIJINGpara *hijingparam = new AliGenHIJINGpara(nParticles);
151     //hijingparam->SetMomentumRange(0.2, 999);
152     //gener->AddGenerator(hijingparam,"HIJING PARAM",1);
153     //
154     //
155     Int_t nParticles2 =1;
156     // mu
157     AliGenBox *genboxMP = new AliGenBox(nParticles2);
158     genboxMP->SetPart(13);
159     genboxMP->SetPtRange(10, 100.00);
160  
161
162     gener->AddGenerator(genboxMP,"GENBOX",1);
163
164     gener->Init();
165
166
167
168     // 
169     // Activate this line if you want the vertex smearing to happen
170     // track by track
171     //
172     //gener->SetVertexSmear(perTrack); 
173     // Field (L3 0.4 T)
174     TGeoGlobalMagField::Instance()->SetField(new AliMagF("Maps","Maps", 2, 1., 1., 10., AliMagF::k5kG));
175
176     Int_t   iABSO  =  1;
177     Int_t   iDIPO  =  1;
178     Int_t   iFMD   =  0;
179     Int_t   iFRAME =  1;
180     Int_t   iHALL  =  1;
181     Int_t   iITS   =  1;
182     Int_t   iMAG   =  1;
183     Int_t   iMUON  =  0;
184     Int_t   iPHOS  =  0;
185     Int_t   iPIPE  =  1;
186     Int_t   iPMD   =  0;
187     Int_t   iHMPID  =  0;
188     Int_t   iSHIL  =  1;
189     Int_t   iT0 =  1;
190     Int_t   iTOF   =  1;
191     Int_t   iTPC   =  1;
192     Int_t   iTRD   =  1;
193     Int_t   iZDC   =  1;
194     Int_t   iEMCAL =  0;
195     Int_t   iACORDE   =  0;
196     Int_t   iVZERO =  0;
197     rl->CdGAFile();
198     //=================== Alice BODY parameters =============================
199     AliBODY *BODY = new AliBODY("BODY", "Alice envelop");
200
201     if (iMAG)
202     {
203         //=================== MAG parameters ============================
204         // --- Start with Magnet since detector layouts may be depending ---
205         // --- on the selected Magnet dimensions ---
206         AliMAG *MAG = new AliMAG("MAG", "Magnet");
207     }
208
209
210     if (iABSO)
211     {
212         //=================== ABSO parameters ============================
213         AliABSO *ABSO = new AliABSOv3("ABSO", "Muon Absorber");
214     }
215
216     if (iDIPO)
217     {
218         //=================== DIPO parameters ============================
219
220         AliDIPO *DIPO = new AliDIPOv3("DIPO", "Dipole version 3");
221     }
222
223     if (iHALL)
224     {
225         //=================== HALL parameters ============================
226
227         AliHALL *HALL = new AliHALLv3("HALL", "Alice Hall");
228     }
229
230
231     if (iFRAME)
232     {
233         //=================== FRAME parameters ============================
234
235         AliFRAMEv2 *FRAME = new AliFRAMEv2("FRAME", "Space Frame");
236     }
237
238     if (iSHIL)
239     {
240         //=================== SHIL parameters ============================
241
242         AliSHIL *SHIL = new AliSHILv3("SHIL", "Shielding Version 3");
243     }
244
245
246     if (iPIPE)
247     {
248         //=================== PIPE parameters ============================
249
250         AliPIPE *PIPE = new AliPIPEv3("PIPE", "Beam Pipe");
251     }
252  
253     if (iITS)
254     {
255         //=================== ITS parameters ============================
256         AliITSvPPRasymmFMD *ITS  = new AliITSvPPRasymmFMD("ITS",
257                            "ITS PPR detailed version with asymmetric services");
258     }
259
260     if (iTPC)
261     {
262         //============================ TPC parameters ===================
263         AliTPC *TPC = new AliTPCv2("TPC", "Default");
264     }
265
266
267     if (iTOF) {
268         //=================== TOF parameters ============================
269         AliTOF *TOF = new AliTOFv6T0("TOF", "normal TOF");
270     }
271
272
273     if (iHMPID)
274     {
275         //=================== HMPID parameters ===========================
276         AliHMPID *HMPID = new AliHMPIDv2("HMPID", "normal HMPID");
277
278     }
279
280
281     if (iZDC)
282     {
283         //=================== ZDC parameters ============================
284
285         AliZDC *ZDC = new AliZDCv2("ZDC", "normal ZDC");
286     }
287
288     if (iTRD)
289     {
290         //=================== TRD parameters ============================
291
292         AliTRD *TRD = new AliTRDv1("TRD", "TRD slow simulator");
293     }
294
295     if (iFMD)
296     {
297         //=================== FMD parameters ============================
298         AliFMD *FMD = new AliFMDv1("FMD", "normal FMD");
299    }
300
301     if (iMUON)
302     {
303         //=================== MUON parameters ===========================
304         // New MUONv1 version (geometry defined via builders)
305         AliMUON *MUON = new AliMUONv1("MUON", "default");
306     }
307     //=================== PHOS parameters ===========================
308
309     if (iPHOS)
310     {
311         AliPHOS *PHOS = new AliPHOSv1("PHOS", "IHEP");
312     }
313
314
315     if (iPMD)
316     {
317         //=================== PMD parameters ============================
318         AliPMD *PMD = new AliPMDv1("PMD", "normal PMD");
319     }
320
321     if (iT0)
322     {
323         //=================== T0 parameters ============================
324         AliT0 *T0 = new AliT0v1("T0", "T0 Detector");
325     }
326
327     if (iEMCAL)
328     {
329         //=================== EMCAL parameters ============================
330         AliEMCAL *EMCAL = new AliEMCALv2("EMCAL", "SHISH_77_TRD1_2X2_FINAL_110DEG");
331     }
332
333      if (iACORDE)
334     {
335         //=================== ACORDE parameters ============================
336         AliACORDE *ACORDE = new AliACORDEv0("ACORDE", "normal ACORDE");
337     }
338
339      if (iVZERO)
340     {
341         //=================== ACORDE parameters ============================
342         AliVZERO *VZERO = new AliVZEROv7("VZERO", "normal VZERO");
343     }
344
345      AliLog::Message(AliLog::kInfo, "End of Config", "Config.C", "Config.C", "Config()"," Config.C", __LINE__);
346
347 }
348
349 Float_t EtaToTheta(Float_t arg){
350   return (180./TMath::Pi())*2.*atan(exp(-arg));
351 }