31 #include "B4cDetectorConstruction.hh" 32 #include "B4cActionInitialization.hh" 34 #ifdef G4MULTITHREADED 35 #include "G4MTRunManager.hh" 37 #include "G4RunManager.hh" 40 #include "G4UImanager.hh" 41 #include "G4UIcommand.hh" 42 #include "FTFP_BERT.hh" 44 #include "Randomize.hh" 46 #include "G4VisExecutive.hh" 47 #include "G4UIExecutive.hh" 53 G4cerr <<
" Usage: " << G4endl;
54 G4cerr <<
" exampleB4c [-m macro ] [-u UIsession] [-t nThreads]" << G4endl;
55 G4cerr <<
" note: -t option is available only for multi-threaded mode." 62 int main(
int argc,
char** argv)
73 #ifdef G4MULTITHREADED 76 for ( G4int i=1; i<argc; i=i+2 ) {
77 if (
G4String(argv[i]) ==
"-m" ) macro = argv[i+1];
78 else if (
G4String(argv[i]) ==
"-u" ) session = argv[i+1];
79 #ifdef G4MULTITHREADED 80 else if (
G4String(argv[i]) ==
"-t" ) {
81 nThreads = G4UIcommand::ConvertToInt(argv[i+1]);
92 G4UIExecutive* ui = 0;
93 if ( ! macro.size() ) {
94 ui =
new G4UIExecutive(argc, argv, session);
99 G4Random::setTheEngine(
new CLHEP::RanecuEngine);
103 #ifdef G4MULTITHREADED 104 G4MTRunManager * runManager =
new G4MTRunManager;
105 if ( nThreads > 0 ) {
106 runManager->SetNumberOfThreads(nThreads);
109 G4RunManager * runManager =
new G4RunManager;
114 auto detConstruction =
new B4cDetectorConstruction();
115 runManager->SetUserInitialization(detConstruction);
117 auto physicsList =
new FTFP_BERT;
118 runManager->SetUserInitialization(physicsList);
120 auto actionInitialization =
new B4cActionInitialization();
121 runManager->SetUserInitialization(actionInitialization);
124 auto visManager =
new G4VisExecutive;
127 visManager->Initialize();
130 auto UImanager = G4UImanager::GetUIpointer();
134 if ( macro.size() ) {
136 G4String command =
"/control/execute ";
137 UImanager->ApplyCommand(command+macro);
141 UImanager->ApplyCommand(
"/control/execute init_vis.mac");
143 UImanager->ApplyCommand(
"/control/execute gui.mac");
static G4UIterminal * session
int main(int argc, char **argv)