LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
exampleB2b.cc File Reference
#include "B2bDetectorConstruction.hh"
#include "B2ActionInitialization.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "FTFP_BERT.hh"
#include "G4StepLimiterPhysics.hh"
#include "Randomize.hh"
#include "G4VisExecutive.hh"
#include "G4UIExecutive.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 50 of file exampleB2b.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  // Optionally: choose a different Random engine...
60  // G4Random::setTheEngine(new CLHEP::MTwistEngine);
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  runManager->SetUserInitialization(new B2bDetectorConstruction());
73 
74  G4VModularPhysicsList* physicsList = new FTFP_BERT;
75  physicsList->RegisterPhysics(new G4StepLimiterPhysics());
76  runManager->SetUserInitialization(physicsList);
77 
78  // Set user action classes
79  runManager->SetUserInitialization(new B2ActionInitialization());
80 
81  // Initialize visualization
82  //
83  G4VisManager* visManager = new G4VisExecutive;
84  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
85  // G4VisManager* visManager = new G4VisExecutive("Quiet");
86  visManager->Initialize();
87 
88  // Get the pointer to the User Interface manager
89  G4UImanager* UImanager = G4UImanager::GetUIpointer();
90 
91  // Process macro or start UI session
92  //
93  if ( ! ui ) {
94  // barch mode
95  G4String command = "/control/execute ";
96  G4String fileName = argv[1];
97  UImanager->ApplyCommand(command+fileName);
98  }
99  else {
100  // interactive mode
101  UImanager->ApplyCommand("/control/execute init_vis.mac");
102  if (ui->IsGUI()) {
103  UImanager->ApplyCommand("/control/execute gui.mac");
104  }
105  ui->SessionStart();
106  delete ui;
107  }
108 
109  // Job termination
110  // Free the store: user actions, physics_list and detector_description are
111  // owned and deleted by the run manager, so they should not be deleted
112  // in the main() program !
113 
114  delete visManager;
115  delete runManager;
116 }