Implementation of the slowing example.
More...
#include "G4Types.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "G4UIExecutive.hh"
#include "G4VisExecutive.hh"
#include "ActionInitialization.hh"
#include "DetectorConstruction.hh"
#include "PhysicsList.hh"
Go to the source code of this file.
|
int | main (int argc, char **argv) |
|
Implementation of the slowing example.
Definition in file slowing.cc.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 53 of file slowing.cc.
56 G4UIExecutive* ui = 0;
58 ui =
new G4UIExecutive(argc, argv);
62 #ifdef G4MULTITHREADED 63 G4MTRunManager* runManager =
new G4MTRunManager;
64 G4int nThreads = std::min(G4Threading::G4GetNumberOfCores(),4);
65 if (argc==3) nThreads = G4UIcommand::ConvertToInt(argv[2]);
66 runManager->SetNumberOfThreads(nThreads);
67 G4cout <<
"===== slowing is started with " 68 << runManager->GetNumberOfThreads() <<
" threads =====" << G4endl;
70 G4RunManager* runManager =
new G4RunManager;
79 runManager->SetUserInitialization(
new ActionInitialization());
82 G4VisManager* visManager =
new G4VisExecutive;
83 visManager->Initialize();
86 G4UImanager* UI = G4UImanager::GetUIpointer();
90 G4String command =
"/control/execute ";
92 UI->ApplyCommand(command+fileName);