]> git.uio.no Git - u/mrichter/AliRoot.git/blame - macros/g4Config.C
Adding class to refit the tracks
[u/mrichter/AliRoot.git] / macros / g4Config.C
CommitLineData
1fccbbe0 1// $Id$
2//
3// Configuration macro for running aliroot with Geant4.
4// All AliRoot specifics are defined in g4ConfigCommon.C
5//
6// In order to run aliroot with Geant4, you have to Initialize
7// AliRun with this g4Config.C
8//
9// aliroot
10// root [0] gAlice->Init("g4Config.C");
11// root [1] gAlice->Run();
12//
13// You can also start from a mini GUI - g4menu.C.
14// See description in this macro.
e14b4d5a 15//
16// By I. Hrivnacova, IPN Orsay
1fccbbe0 17
18
19void Config()
20{
e14b4d5a 21 cout << "Running g4Config.C ... " << endl;
22
9ac91a91 23 // AliRoot setup
24 //
e14b4d5a 25 gROOT->LoadMacro("$ALICE_ROOT/macros/g4ConfigCommon.C");
9ac91a91 26 ConfigCommon();
1fccbbe0 27
28 // Load Geant4 + Geant4 VMC libraries
29 //
30 if (gClassTable->GetID("TGeant4") == -1) {
31 // Load Geant4 libraries
32 if (!gInterpreter->IsLoaded("$ALICE/geant4_vmc/examples/macro/g4libs.C")) {
33 gROOT->LoadMacro("$ALICE/geant4_vmc/examples/macro/g4libs.C");
34 gInterpreter->ProcessLine("g4libs()");
35 }
36 }
37
38 // Create Geant4 VMC
39 //
9ac91a91 40 TGeant4 *geant4 = 0;
1fccbbe0 41 if (!gMC) {
1fccbbe0 42 TG4RunConfiguration* runConfiguration
e14b4d5a 43 = new TG4RunConfiguration("geomRoot",
44 "emStandard+optical",
45 "specialCuts+specialControls+stackPopper");
46// = new TG4RunConfiguration("geomRootToGeant4",
47// "emStandard+optical",
48// "specialCuts+specialControls+stackPopper",
49// true);
9ac91a91 50
1fccbbe0 51
9ac91a91 52 geant4 = new TGeant4("TGeant4", "The Geant4 Monte Carlo", runConfiguration);
1fccbbe0 53 cout << "Geant4 has been created." << endl;
9ac91a91 54 } else {
1fccbbe0 55 cout << "Monte Carlo has been already created." << endl;
9ac91a91 56 }
1fccbbe0 57
9ac91a91 58 //
59 // Set External decayer
60 TVirtualMCDecayer *decayer = new AliDecayerPythia();
7354fb71 61
9ac91a91 62 decayer->SetForceDecay(kAll);
63 decayer->Init();
64 gMC->SetExternalDecayer(decayer);
65
66 //=======================================================================
67 // ************* STEERING parameters FOR ALICE SIMULATION **************
68 // --- Specify event type to be tracked through the ALICE setup
69 // --- All positions are in cm, angles in degrees, and P and E in GeV
1fccbbe0 70
9ac91a91 71 gMC->SetProcess("DCAY",1);
72 gMC->SetProcess("PAIR",1);
73 gMC->SetProcess("COMP",1);
74 gMC->SetProcess("PHOT",1);
75 gMC->SetProcess("PFIS",0);
76 gMC->SetProcess("DRAY",0);
77 gMC->SetProcess("ANNI",1);
78 gMC->SetProcess("BREM",1);
79 gMC->SetProcess("MUNU",1);
80 gMC->SetProcess("CKOV",1);
81 gMC->SetProcess("HADR",1);
82 gMC->SetProcess("LOSS",2);
83 gMC->SetProcess("MULS",1);
84 //gMC->SetProcess("RAYL",1);
1fccbbe0 85
9ac91a91 86 Float_t cut = 1.e-3; // 1MeV cut by default
87 Float_t tofmax = 1.e10;
88
89 gMC->SetCut("CUTGAM", cut);
90 gMC->SetCut("CUTELE", cut);
91 gMC->SetCut("CUTNEU", cut);
92 gMC->SetCut("CUTHAD", cut);
93 gMC->SetCut("CUTMUO", cut);
94 gMC->SetCut("BCUTE", cut);
95 gMC->SetCut("BCUTM", cut);
96 gMC->SetCut("DCUTE", cut);
97 gMC->SetCut("DCUTM", cut);
98 gMC->SetCut("PPCUTM", cut);
99 gMC->SetCut("TOFMAX", tofmax);
100
101 // Set apply cuts
102 geant4->ProcessGeantCommand("/run/particle/applyCuts");
e14b4d5a 103 // geant4->ProcessGeantCommand("/mcVerbose/geometryManager 2");
104 geant4->ProcessGeantCommand("/mcVerbose/composedPhysicsList 2");
9ac91a91 105 geant4->ProcessGeantCommand("/mcDet/volNameSeparator !");
106 geant4->ProcessGeantCommand("/mcControl/g3Defaults");
107 geant4->ProcessGeantCommand("/mcPhysics/setStackPopperSelection e+ e- pi+ pi- kaon+ kaon- gamma");
e14b4d5a 108 // geant4->ProcessGeantCommand("/tracking/verbose 1");
109
110 cout << "Running g4Config.C finished ... " << endl;
1fccbbe0 111}