Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
exampleB1.cc File Reference

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"
Include dependency graph for exampleB1.cc:

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the B1 example.

Definition in file exampleB1.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 50 of file exampleB1.cc.

51 {
52  // Detect interactive mode (if no arguments) and define UI session
53  //
54  G4UIExecutive* ui = 0;
55  if ( argc == 1 ) {
56  ui = new G4UIExecutive(argc, argv);
57  }
58 
59  // Choose the Random engine
60  G4Random::setTheEngine(new CLHEP::RanecuEngine);
61 
62  // Construct the default run manager
63  //
64 #ifdef G4MULTITHREADED
65  G4MTRunManager* runManager = new G4MTRunManager;
66 #else
67  G4RunManager* runManager = new G4RunManager;
68 #endif
69 
70  // Set mandatory initialization classes
71  //
72  // Detector construction
74 
75  // Physics list
76  G4VModularPhysicsList* physicsList = new QBBC;
77  physicsList->SetVerboseLevel(1);
78  runManager->SetUserInitialization(physicsList);
79 
80  // User action initialization
82 
83  // Initialize visualization
84  //
85  G4VisManager* visManager = new G4VisExecutive;
86  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
87  // G4VisManager* visManager = new G4VisExecutive("Quiet");
88  visManager->Initialize();
89 
90  // Get the pointer to the User Interface manager
92 
93  // Process macro or start UI session
94  //
95  if ( ! ui ) {
96  // batch mode
97  G4String command = "/control/execute ";
98  G4String fileName = argv[1];
99  UImanager->ApplyCommand(command+fileName);
100  }
101  else {
102  // interactive mode
103  UImanager->ApplyCommand("/control/execute init_vis.mac");
104  ui->SessionStart();
105  delete ui;
106  }
107 
108  // Job termination
109  // Free the store: user actions, physics_list and detector_description are
110  // owned and deleted by the run manager, so they should not be deleted
111  // in the main() program !
112 
113  delete visManager;
114  delete runManager;
115 }
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
Detector construction class to define materials and geometry.
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:59
void SetVerboseLevel(G4int value)
void Initialize()
Action initialization class.
Definition: QBBC.hh:44
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:447

Here is the call graph for this function: