Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Functions
exampleB4a.cc File Reference

Main program of the B4a example. More...

#include "B4DetectorConstruction.hh"
#include "B4aActionInitialization.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "G4UIcommand.hh"
#include "FTFP_BERT.hh"
#include "Randomize.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the B4a example.

Definition in file exampleB4a.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 67 of file exampleB4a.cc.

References G4UImanager::ApplyCommand(), G4UIcommand::ConvertToInt(), G4UImanager::GetUIpointer(), G4RunManager::Initialize(), G4VisManager::Initialize(), G4UIExecutive::IsGUI(), G4UIExecutive::SessionStart(), G4MTRunManager::SetNumberOfThreads(), and G4RunManager::SetUserInitialization().

68 {
69  // Evaluate arguments
70  //
71  if ( argc > 7 ) {
72  PrintUsage();
73  return 1;
74  }
75 
76  G4String macro;
77  G4String session;
78 #ifdef G4MULTITHREADED
79  G4int nThreads = 0;
80 #endif
81  for ( G4int i=1; i<argc; i=i+2 ) {
82  if ( G4String(argv[i]) == "-m" ) macro = argv[i+1];
83  else if ( G4String(argv[i]) == "-u" ) session = argv[i+1];
84 #ifdef G4MULTITHREADED
85  else if ( G4String(argv[i]) == "-t" ) {
86  nThreads = G4UIcommand::ConvertToInt(argv[i+1]);
87  }
88 #endif
89  else {
90  PrintUsage();
91  return 1;
92  }
93  }
94 
95  // Choose the Random engine
96  //
97  G4Random::setTheEngine(new CLHEP::RanecuEngine);
98 
99  // Construct the default run manager
100  //
101 #ifdef G4MULTITHREADED
102  G4MTRunManager * runManager = new G4MTRunManager;
103  if ( nThreads > 0 ) {
104  runManager->SetNumberOfThreads(nThreads);
105  }
106 #else
107  G4RunManager * runManager = new G4RunManager;
108 #endif
109 
110  // Set mandatory initialization classes
111  //
112  B4DetectorConstruction* detConstruction = new B4DetectorConstruction();
113  runManager->SetUserInitialization(detConstruction);
114 
115  G4VModularPhysicsList* physicsList = new FTFP_BERT;
116  runManager->SetUserInitialization(physicsList);
117 
118  B4aActionInitialization* actionInitialization
119  = new B4aActionInitialization(detConstruction);
120  runManager->SetUserInitialization(actionInitialization);
121 
122  // Initialize G4 kernel
123  //
124  runManager->Initialize();
125 
126 #ifdef G4VIS_USE
127  // Initialize visualization
128  G4VisManager* visManager = new G4VisExecutive;
129  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
130  // G4VisManager* visManager = new G4VisExecutive("Quiet");
131  visManager->Initialize();
132 #endif
133 
134  // Get the pointer to the User Interface manager
135  G4UImanager* UImanager = G4UImanager::GetUIpointer();
136 
137  if ( macro.size() ) {
138  // batch mode
139  G4String command = "/control/execute ";
140  UImanager->ApplyCommand(command+macro);
141  }
142  else {
143  // interactive mode : define UI session
144 #ifdef G4UI_USE
145  G4UIExecutive* ui = new G4UIExecutive(argc, argv, session);
146 #ifdef G4VIS_USE
147  UImanager->ApplyCommand("/control/execute init_vis.mac");
148 #else
149  UImanager->ApplyCommand("/control/execute init.mac");
150 #endif
151  if (ui->IsGUI())
152  UImanager->ApplyCommand("/control/execute gui.mac");
153  ui->SessionStart();
154  delete ui;
155 #endif
156  }
157 
158  // Job termination
159  // Free the store: user actions, physics_list and detector_description are
160  // owned and deleted by the run manager, so they should not be deleted
161  // in the main() program !
162 
163 #ifdef G4VIS_USE
164  delete visManager;
165 #endif
166  delete runManager;
167 
168  return 0;
169 }
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
void SetNumberOfThreads(G4int n)
int G4int
Definition: G4Types.hh:78
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
static G4int ConvertToInt(const char *st)
Definition: G4UIcommand.cc:421
void Initialize()
TFTFP_BERT< G4VModularPhysicsList > FTFP_BERT
Definition: FTFP_BERT.hh:63
virtual void Initialize()
G4bool IsGUI() const
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419