Main program of the B1 example.
More...
#include "B1DetectorConstruction.hh"
#include "B1ActionInitialization.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "QBBC.hh"
#include "G4VisExecutive.hh"
#include "G4UIExecutive.hh"
#include "Randomize.hh"
Go to the source code of this file.
|
int | main (int argc, char **argv) |
|
Main program of the B1 example.
Definition in file exampleB1.cc.
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 49 of file exampleB1.cc.
53 G4UIExecutive* ui = 0;
55 ui =
new G4UIExecutive(argc, argv);
63 #ifdef G4MULTITHREADED 64 G4MTRunManager* runManager =
new G4MTRunManager;
66 G4RunManager* runManager =
new G4RunManager;
72 runManager->SetUserInitialization(
new B1DetectorConstruction());
75 G4VModularPhysicsList* physicsList =
new QBBC;
76 physicsList->SetVerboseLevel(1);
77 runManager->SetUserInitialization(physicsList);
80 runManager->SetUserInitialization(
new B1ActionInitialization());
84 G4VisManager* visManager =
new G4VisExecutive;
87 visManager->Initialize();
90 G4UImanager* UImanager = G4UImanager::GetUIpointer();
96 G4String command =
"/control/execute ";
98 UImanager->ApplyCommand(command+fileName);
102 UImanager->ApplyCommand(
"/control/execute init_vis.mac");