Main program of the analysis/AnaEx01 example.
More...
#include "DetectorConstruction.hh"
#include "ActionInitialization.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "FTFP_BERT.hh"
#include "G4VisExecutive.hh"
#include "G4UIExecutive.hh"
Go to the source code of this file.
|
| int | main (int argc, char **argv) |
| |
Main program of the analysis/AnaEx01 example.
Definition in file AnaEx01.cc.
| int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 53 of file AnaEx01.cc.
57 G4UIExecutive* ui = 0;
59 ui =
new G4UIExecutive(argc, argv);
64 #ifdef G4MULTITHREADED 66 G4MTRunManager * runManager =
new G4MTRunManager;
67 runManager->SetNumberOfThreads(nThreads);
69 G4RunManager * runManager =
new G4RunManager;
75 runManager->SetUserInitialization(detector);
76 runManager->SetUserInitialization(
new FTFP_BERT);
77 runManager->SetUserInitialization(
new ActionInitialization(detector));
81 G4VisManager* visManager =
new G4VisExecutive;
82 visManager->Initialize();
86 G4UImanager* UImanager = G4UImanager::GetUIpointer();
90 G4String command =
"/control/execute ";
92 UImanager->ApplyCommand(command+fileName);
96 UImanager->ApplyCommand(
"/control/execute init_vis.mac");