Main program of the medical/dna/wvalue 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 medical/dna/wvalue example.
Definition in file wvalue.cc.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 58 of file wvalue.cc.
61 remove (
"wvalue.txt");
64 G4Random::setTheEngine(
new CLHEP::RanecuEngine);
68 #ifdef G4MULTITHREADED 69 G4MTRunManager* runManager =
new G4MTRunManager;
70 G4int nThreads = G4Threading::G4GetNumberOfCores();
71 if (argc==3) nThreads = G4UIcommand::ConvertToInt(argv[2]);
72 runManager->SetNumberOfThreads(nThreads);
75 G4VSteppingVerbose::SetInstance(
new SteppingVerbose);
76 G4RunManager* runManager =
new G4RunManager;
81 runManager->SetUserInitialization(det);
84 runManager->SetUserInitialization(phys);
86 runManager->SetUserInitialization(
new ActionInitialization());
89 G4UImanager* UI = G4UImanager::GetUIpointer();
93 G4String command =
"/control/execute ";
95 UI->ApplyCommand(command+fileName);
101 G4VisManager* visManager =
new G4VisExecutive;
102 visManager->Initialize();
106 G4UIExecutive * ui =
new G4UIExecutive(argc,argv);
TConfigurablePhysicsList< ModularPhysicsList > PhysicsList