VMC Examples Version 6.6
Loading...
Searching...
No Matches
g4Config.C File Reference

Configuration macro for Geant4 VMC for Monopole example. More...

Go to the source code of this file.

Functions

void Config ()
 

Detailed Description

Configuration macro for Geant4 VMC for Monopole example.

For geometry defined with Root and selected Geant4 native navigation

Definition in file g4Config.C.

Function Documentation

◆ Config()

void Config ( )

The configuration function for Geant4 VMC for Monopole example called during MC application initialization. For geometry defined with Root and selected Geant4 native navigation

Definition at line 16 of file g4Config.C.

17{
18/// The configuration function for Geant4 VMC for Monopole example
19/// called during MC application initialization.
20/// For geometry defined with Root and selected Geant4 native navigation
21
22 // RunConfiguration for Geant4
23 Bool_t specialStacking = false;
24 Bool_t mtApplication = false;
25 TG4RunConfiguration* runConfiguration
26 = new TG4RunConfiguration("geomRootToGeant4", "FTFP_BERT+monopole", "stepLimiter",
27 specialStacking, mtApplication);
28
29 // Define monopole properties
30 // (uncomment the lines below to change the defaults)
31 // runConfiguration->SetParameter("monopoleMass", 100.);
32 // runConfiguration->SetParameter("monopoleElCharge", 0.);
33 // runConfiguration->SetParameter("monopoleMagCharge", 1.);
34
35 // TGeant4
36 TGeant4* geant4
37 = new TGeant4("TGeant4", "The Geant4 Monte Carlo", runConfiguration);
38
39 cout << "Geant4 has been created." << endl;
40
41 // Customise Geant4 setting
42 // (verbose level, global range cut, ..)
43 geant4->ProcessGeantMacro("g4config.in");
44}