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

Configuration macro for Geant4 VirtualMC for Example02. More...

Go to the source code of this file.

Functions

void Config ()
 

Detailed Description

Configuration macro for Geant4 VirtualMC for Example02.

For geometry defined with VMC and selected G4Root navigation

Definition in file g4tgeoConfigOld.C.

Function Documentation

◆ Config()

void Config ( )

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

Definition at line 15 of file g4tgeoConfigOld.C.

16{
17/// The configuration function for Geant4 VMC for Example02
18/// called during MC application initialization.
19/// For geometry defined with VMC and selected Geant4 native navigation
20
21 // RunConfiguration for Geant4
22 TG4RunConfiguration* runConfiguration
23 = new TG4RunConfiguration("geomVMCtoRoot", "FTFP_BERT");
24
25 // TGeant4
26 TGeant4* geant4
27 = new TGeant4("TGeant4", "The Geant4 Monte Carlo", runConfiguration);
28
29 cout << "Geant4 has been created." << endl;
30
31 // Customise Geant4 setting
32 // (verbose level, global range cut, ..)
33 geant4->ProcessGeantMacro("g4config.in");
34}