Main program of the electromagnetic/TestEm8 example.
More...
#include "G4RunManager.hh"
#include "G4MTRunManager.hh"
#include "G4UImanager.hh"
#include "G4UIcommand.hh"
#include "Randomize.hh"
#include "DetectorConstruction.hh"
#include "PhysicsList.hh"
#include "ActionInitialization.hh"
Go to the source code of this file.
|
int | main (int argc, char **argv) |
|
Main program of the electromagnetic/TestEm8 example.
Definition in file TestEm8.cc.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 54 of file TestEm8.cc.
57 CLHEP::HepRandom::setTheEngine(
new CLHEP::RanecuEngine);
59 #ifdef G4MULTITHREADED 60 G4MTRunManager* runManager =
new G4MTRunManager;
65 nThreads = G4Threading::G4GetNumberOfCores();
67 nThreads = G4UIcommand::ConvertToInt(argv[2]);
72 if (nThreads > 0) { runManager->SetNumberOfThreads(nThreads); }
73 G4cout <<
"===== TestEm8 is started with " 74 << runManager->GetNumberOfThreads() <<
" threads =====" << G4endl;
76 G4RunManager* runManager =
new G4RunManager;
84 runManager->SetUserInitialization(
new ActionInitialization());
86 G4UImanager* UI = G4UImanager::GetUIpointer();
90 G4String command =
"/control/execute ";
92 UI->ApplyCommand(command+fileName);
98 G4VisManager* visManager =
new G4VisExecutive;
99 visManager->Initialize();
103 G4UIExecutive * ui =
new G4UIExecutive(argc,argv);