Main program of the electromagnetic/TestEm3 example.
More...
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "Randomize.hh"
#include "DetectorConstruction.hh"
#include "PhysicsList.hh"
#include "ActionInitialization.hh"
#include "SteppingVerbose.hh"
Go to the source code of this file.
|
int | main (int argc, char **argv) |
|
Main program of the electromagnetic/TestEm3 example.
Definition in file TestEm3.cc.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 58 of file TestEm3.cc.
61 G4Random::setTheEngine(
new CLHEP::RanecuEngine);
62 G4VSteppingVerbose::SetInstance(
new SteppingVerbose);
65 #ifdef G4MULTITHREADED 66 G4MTRunManager* runManager =
new G4MTRunManager;
71 nThreads = G4Threading::G4GetNumberOfCores();
73 nThreads = G4UIcommand::ConvertToInt(argv[2]);
78 if (nThreads > 0) { runManager->SetNumberOfThreads(nThreads); }
79 G4cout <<
"===== TestEm3 is started with " 80 << runManager->GetNumberOfThreads() <<
" threads =====" << G4endl;
82 G4RunManager* runManager =
new G4RunManager;
87 runManager->SetUserInitialization(detector);
91 runManager->SetUserInitialization(
new ActionInitialization(detector));
94 G4UImanager* UI = G4UImanager::GetUIpointer();
98 G4String command =
"/control/execute ";
100 UI->ApplyCommand(command+fileName);
105 G4VisManager* visManager =
new G4VisExecutive;
106 visManager->Initialize();
110 G4UIExecutive * ui =
new G4UIExecutive(argc,argv);