Go to the source code of this file.
◆ Config()
The configuration function for Geant4 VMC for Example03 called during MC application initialization. For geometry defined with Root and G4Root navigation
Definition at line 17 of file g4tgeoConfig6.C.
18{
19
20
21
22
23
26
27
28 TGeant4* geant4
29 = new TGeant4("TGeant4", "The Geant4 Monte Carlo", runConfiguration);
30
31 cout << "Geant4 has been created." << endl;
32
33
34
35 geant4->ProcessGeantMacro("g4config.in");
36
37
38 geant4->ProcessGeantCommand("/tracking/verbose 1");
39
40
41 geant4->ProcessGeantCommand("/mcVerbose/biasingConfigurationManager 3");
42 geant4->ProcessGeantCommand("/mcPhysics/biasing/setModel inclxx");
43 geant4->ProcessGeantCommand("/mcPhysics/biasing/setRegions Lead");
44 geant4->ProcessGeantCommand("/mcPhysics/biasing/setParticles proton neutron pi+ pi-");
45}