31 #ifdef G4MULTITHREADED 32 #include "G4MTRunManager.hh" 34 #include "G4RunManager.hh" 37 #include "G4UImanager.hh" 38 #include "Randomize.hh" 40 #include "G4UIExecutive.hh" 41 #include "G4VisExecutive.hh" 43 #include "ElectronBenchmarkDetector.hh" 45 #include "ElectronActionInitialization.hh" 49 int main(
int argc,
char** argv) {
52 G4UIExecutive* ui =
nullptr;
53 if (argc == 1) ui =
new G4UIExecutive(argc,argv);
59 if (argc > 1) macroFile = argv[1];
60 if (argc > 2) startingSeed = argv[2];
61 if (argc > 3) outputFile = argv[3];
62 G4cout <<
"Starting run with" << G4endl;
63 G4cout <<
"Macro File : " << macroFile << G4endl;
64 G4cout <<
"Starting Seed : " << startingSeed << G4endl;
65 G4cout <<
"Output File : " << outputFile << G4endl;
68 #ifdef G4MULTITHREADED 69 G4MTRunManager* runManager =
new G4MTRunManager;
71 G4RunManager* runManager =
new G4RunManager;
75 G4Random::setTheEngine(
new CLHEP::MTwistEngine);
78 unsigned startingSeedInt;
79 std::istringstream is(startingSeed);
80 is >> startingSeedInt;
81 G4Random::setTheSeed(startingSeedInt);
84 runManager->SetUserInitialization(
new ElectronBenchmarkDetector);
91 runManager->SetUserInitialization(
92 new ElectronActionInitialization(outputFile));
95 G4VisManager* visManager =
nullptr;
98 G4UImanager* UImanager = G4UImanager::GetUIpointer();
102 visManager =
new G4VisExecutive;
103 visManager->Initialize();
109 G4String command =
"/control/execute ";
111 UImanager->ApplyCommand(command+fileName);
int main(int argc, char **argv)