#include <stdexcept>
#include "globals.hh"
#include "G4UImanager.hh"
#include "G4UIsession.hh"
#include "G4TransportationManager.hh"
#include "G4VisExecutive.hh"
#include "G4UIExecutive.hh"
#include "G4HumanPhantomConstruction.hh"
#include "G4HumanPhantomPhysicsList.hh"
#include "G4HumanPhantomActionInitialization.hh"
#include "G4RunManager.hh"
Go to the source code of this file.
|
int | main (int argc, char **argv) |
|
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 50 of file phantom.cc.
52 #ifdef G4MULTITHREADED 53 G4MTRunManager* runManager =
new G4MTRunManager;
54 runManager->SetNumberOfThreads(4);
56 G4RunManager* runManager =
new G4RunManager;
60 G4HumanPhantomConstruction* userPhantom =
new G4HumanPhantomConstruction();
61 runManager->SetUserInitialization(userPhantom);
63 runManager->SetUserInitialization(
new G4HumanPhantomPhysicsList);
65 G4VisManager* visManager =
new G4VisExecutive;
66 visManager->Initialize();
68 G4HumanPhantomActionInitialization* actions =
new G4HumanPhantomActionInitialization();
69 runManager->SetUserInitialization(actions);
71 G4UImanager* UImanager = G4UImanager::GetUIpointer();
76 G4cout <<
" UI session starts ..." << G4endl;
77 G4UIExecutive* ui =
new G4UIExecutive(argc, argv);
78 UImanager->ApplyCommand(
"/control/execute default.mac");
85 G4String command =
"/control/execute ";
87 UImanager -> ApplyCommand(command+fileName);