31 #ifdef G4MULTITHREADED 32 #include "G4MTRunManager.hh" 34 #include "G4RunManager.hh" 37 #include "Randomize.hh" 38 #include "G4ScoringManager.hh" 41 #include "G4VisExecutive.hh" 44 #include "G4UImanager.hh" 46 #include "G4UIExecutive.hh" 49 #include "ElectronBenchmarkDetector.hh" 51 #include "ElectronActionInitialization.hh" 55 int main(
int argc,
char** argv) {
61 if (argc > 1) macroFile = argv[1];
62 if (argc > 2) startingSeed = argv[2];
63 if (argc > 3) outputFile = argv[3];
64 G4cout <<
"Starting run with" << G4endl;
65 G4cout <<
"Macro File : " << macroFile << G4endl;
66 G4cout <<
"Starting Seed : " << startingSeed << G4endl;
67 G4cout <<
"Output File : " << outputFile << G4endl;
70 #ifdef G4MULTITHREADED 71 G4MTRunManager* runManager =
new G4MTRunManager;
73 G4RunManager* runManager =
new G4RunManager;
77 G4Random::setTheEngine(
new CLHEP::MTwistEngine);
80 unsigned startingSeedInt;
81 std::istringstream is(startingSeed);
82 is >> startingSeedInt;
83 G4Random::setTheSeed(startingSeedInt);
86 G4ScoringManager::GetScoringManager();
89 runManager->SetUserInitialization(
new ElectronBenchmarkDetector);
96 runManager->SetUserInitialization(
97 new ElectronActionInitialization(outputFile));
107 G4VisManager* visManager =
new G4VisExecutive;
108 visManager->Initialize();
112 G4UIExecutive* ui =
new G4UIExecutive(argc, argv);
124 G4UImanager* UImanager = G4UImanager::GetUIpointer();
125 G4String command =
"/control/execute ";
126 UImanager->ApplyCommand(command+macroFile);
int main(int argc, char **argv)