Main program of the medical/electronScattering2 example.
More...
#include "G4Types.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "Randomize.hh"
#include "G4UIExecutive.hh"
#include "G4VisExecutive.hh"
#include "ElectronBenchmarkDetector.hh"
#include "PhysicsList.hh"
#include "ElectronActionInitialization.hh"
Go to the source code of this file.
|
int | main (int argc, char **argv) |
|
Main program of the medical/electronScattering2 example.
Definition in file electronScattering2.cc.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 49 of file electronScattering2.cc.
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);