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

Main program of the analysis/B5 example. More...

#include "B5DetectorConstruction.hh"
#include "B5ActionInitialization.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "FTFP_BERT.hh"
#include "G4StepLimiterPhysics.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the analysis/B5 example.

Definition in file exampleB5.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 54 of file exampleB5.cc.

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

55 {
56  // Construct the default run manager
57  //
58 #ifdef G4MULTITHREADED
59  G4MTRunManager* runManager = new G4MTRunManager;
60 #else
61  G4RunManager* runManager = new G4RunManager;
62 #endif
63 
64  // Mandatory user initialization classes
66 
67  G4VModularPhysicsList* physicsList = new FTFP_BERT;
68  physicsList->RegisterPhysics(new G4StepLimiterPhysics());
69  runManager->SetUserInitialization(physicsList);
70 
71  // User action initialization
73 
74  // Initialize Geant4 kernel
75  runManager->Initialize();
76 
77 #ifdef G4VIS_USE
78  // Visualization manager construction
79  G4VisManager* visManager = new G4VisExecutive;
80  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
81  // G4VisManager* visManager = new G4VisExecutive("Quiet");
82  visManager->Initialize();
83 #endif
84 
85  // Get the pointer to the User Interface manager
87 
88  if (argc>1) {
89  // execute an argument macro file if exist
90  G4String command = "/control/execute ";
91  G4String fileName = argv[1];
92  UImanager->ApplyCommand(command+fileName);
93  }
94  else {
95  // start interactive session
96 #ifdef G4UI_USE
97  G4UIExecutive* ui = new G4UIExecutive(argc, argv);
98 #ifdef G4VIS_USE
99  UImanager->ApplyCommand("/control/execute init_vis.mac");
100 #else
101  UImanager->ApplyCommand("/control/execute init.mac");
102 #endif
103  if (ui->IsGUI())
104  UImanager->ApplyCommand("/control/execute gui.mac");
105  ui->SessionStart();
106  delete ui;
107 #endif
108  }
109 
110  // Job termination
111  // Free the store: user actions, physics_list and detector_description are
112  // owned and deleted by the run manager, so they should not be deleted
113  // in the main() program !
114 
115 #ifdef G4VIS_USE
116  delete visManager;
117 #endif
118  delete runManager;
119 
120  return 0;
121 }
virtual void SetUserInitialization(G4VUserDetectorConstruction *userInit)
void RegisterPhysics(G4VPhysicsConstructor *)
Detector construction.
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
void Initialize()
TFTFP_BERT< G4VModularPhysicsList > FTFP_BERT
Definition: FTFP_BERT.hh:63
Action initialization class.
virtual void Initialize()
G4bool IsGUI() const
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419