Main program of the electromagnetic/TestEm5 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/TestEm5 example.
Definition in file TestEm5.cc.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 59 of file TestEm5.cc.
References min.
62 G4Random::setTheEngine(
new CLHEP::RanecuEngine);
63 G4VSteppingVerbose::SetInstance(
new SteppingVerbose);
66 #ifdef G4MULTITHREADED 67 G4MTRunManager* runManager =
new G4MTRunManager;
68 G4int nThreads =
std::min(G4Threading::G4GetNumberOfCores(),4);
69 if (argc==3) nThreads = G4UIcommand::ConvertToInt(argv[2]);
70 runManager->SetNumberOfThreads(nThreads);
71 G4cout <<
"===== TestEm5 is started with " 72 << runManager->GetNumberOfThreads() <<
" threads =====" << G4endl;
74 G4RunManager* runManager =
new G4RunManager;
79 runManager->SetUserInitialization(detector);
80 runManager->SetUserInitialization(
new PhysicsList());
84 runManager->SetUserInitialization(
new ActionInitialization(detector));
87 G4UImanager* UI = G4UImanager::GetUIpointer();
91 G4String command =
"/control/execute ";
93 UI->ApplyCommand(command+fileName);
99 G4VisManager* visManager =
new G4VisExecutive;
100 visManager->Initialize();
104 G4UIExecutive * ui =
new G4UIExecutive(argc,argv);
TConfigurablePhysicsList< ModularPhysicsList > PhysicsList