Main program of the radioactivedecay/rdecay02 example.
More...
#include "G4Types.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "Randomize.hh"
#include "DetectorConstruction.hh"
#include "PhysicsList.hh"
#include "ActionInitialization.hh"
#include "SteppingVerbose.hh"
#include "G4UIExecutive.hh"
#include "G4VisExecutive.hh"
Go to the source code of this file.
|
int | main (int argc, char **argv) |
|
Main program of the radioactivedecay/rdecay02 example.
Definition in file rdecay02.cc.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 55 of file rdecay02.cc.
58 G4UIExecutive* ui = 0;
59 if (argc == 1) ui =
new G4UIExecutive(argc,argv);
62 G4Random::setTheEngine(
new CLHEP::RanecuEngine);
65 #ifdef G4MULTITHREADED 66 G4MTRunManager* runManager =
new G4MTRunManager;
67 G4int nThreads = G4Threading::G4GetNumberOfCores();
68 if (argc==3) nThreads = G4UIcommand::ConvertToInt(argv[2]);
69 runManager->SetNumberOfThreads(nThreads);
72 G4VSteppingVerbose::SetInstance(
new SteppingVerbose);
73 G4RunManager* runManager =
new G4RunManager;
78 runManager->SetUserInitialization(det);
81 runManager->SetUserInitialization(phys);
83 runManager->SetUserInitialization(
new ActionInitialization(det));
86 G4VisManager* visManager =
nullptr;
89 G4UImanager* UImanager = G4UImanager::GetUIpointer();
93 visManager =
new G4VisExecutive;
94 visManager->Initialize();
100 G4String command =
"/control/execute ";
102 UImanager->ApplyCommand(command+fileName);
TConfigurablePhysicsList< ModularPhysicsList > PhysicsList