Main program of the medical/dna/wvalue example.
More...
#include "G4Types.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "G4UIExecutive.hh"
#include "G4VisExecutive.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 medical/dna/wvalue example.
Definition in file wvalue.cc.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 49 of file wvalue.cc.
52 remove (
"wvalue.txt");
55 G4UIExecutive* ui = 0;
57 ui =
new G4UIExecutive(argc, argv);
62 #ifdef G4MULTITHREADED 63 G4MTRunManager* runManager =
new G4MTRunManager;
64 G4int nThreads = G4Threading::G4GetNumberOfCores();
65 if (argc==3) nThreads = G4UIcommand::ConvertToInt(argv[2]);
66 runManager->SetNumberOfThreads(nThreads);
69 G4VSteppingVerbose::SetInstance(
new SteppingVerbose);
70 G4RunManager* runManager =
new G4RunManager;
75 runManager->SetUserInitialization(det);
78 runManager->SetUserInitialization(phys);
80 runManager->SetUserInitialization(
new ActionInitialization());
83 G4VisManager* visManager =
new G4VisExecutive;
84 visManager->Initialize();
87 G4UImanager* UI = G4UImanager::GetUIpointer();
91 G4String command =
"/control/execute ";
93 UI->ApplyCommand(command+fileName);
TConfigurablePhysicsList< ModularPhysicsList > PhysicsList