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

Main program of the B2a example. More...

#include "B2aDetectorConstruction.hh"
#include "B2ActionInitialization.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "FTFP_BERT.hh"
#include "G4StepLimiterPhysics.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 B2a example.

Definition in file exampleB2a.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 56 of file exampleB2a.cc.

References G4UImanager::ApplyCommand(), G4UImanager::GetUIpointer(), G4RunManager::Initialize(), G4VisManager::Initialize(), G4UIExecutive::IsGUI(), G4VModularPhysicsList::RegisterPhysics(), G4UIExecutive::SessionStart(), and G4RunManager::SetUserInitialization().

57 {
58  // Choose the Random engine
59 
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 
73 
74  G4VModularPhysicsList* physicsList = new FTFP_BERT;
75  physicsList->RegisterPhysics(new G4StepLimiterPhysics());
76  runManager->SetUserInitialization(physicsList);
77 
79 
80  // Initialize G4 kernel
81 
82  runManager->Initialize();
83 
84 #ifdef G4VIS_USE
85  // Initialize visualization
86  G4VisManager* visManager = new G4VisExecutive;
87  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
88  // G4VisManager* visManager = new G4VisExecutive("Quiet");
89  visManager->Initialize();
90 #endif
91 
92  // Get the pointer to the User Interface manager
94 
95  if (argc!=1) // batch mode
96  {
97  G4String command = "/control/execute ";
98  G4String fileName = argv[1];
99  UImanager->ApplyCommand(command+fileName);
100  }
101  else
102  { // interactive mode : define UI session
103 #ifdef G4UI_USE
104  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
105 #ifdef G4VIS_USE
106  UImanager->ApplyCommand("/control/execute init_vis.mac");
107 #else
108  UImanager->ApplyCommand("/control/execute init.mac");
109 #endif
110  if (ui->IsGUI())
111  UImanager->ApplyCommand("/control/execute gui.mac");
112  ui->SessionStart();
113  delete ui;
114 #endif
115  }
116 
117  // Job termination
118  // Free the store: user actions, physics_list and detector_description are
119  // owned and deleted by the run manager, so they should not be deleted
120  // in the main() program !
121 
122 #ifdef G4VIS_USE
123  delete visManager;
124 #endif
125  delete runManager;
126 
127  return 0;
128 }
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
void RegisterPhysics(G4VPhysicsConstructor *)
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
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