LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
field06.cc File Reference

Main program of the field/field06 example. More...

#include <unistd.h>
#include "G4Types.hh"
#include "F06PhysicsList.hh"
#include "G4Transportation.hh"
#include "F06DetectorConstruction.hh"
#include "F06ActionInitialization.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "G4UIcommand.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)
 

Detailed Description

Main program of the field/field06 example.

Definition in file field06.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 75 of file field06.cc.

References PrintUsage(), and session.

76 {
77  // Evaluate arguments
78  //
79  if ( argc > 9 ) {
80  PrintUsage();
81  return 1;
82  }
83 
84  G4String macro;
86 #ifdef G4MULTITHREADED
87  G4int nThreads = 0;
88 #endif
89 
90  G4long randomSeed = 1234;
91  for ( G4int i=1; i<argc; i=i+2 ) {
92  if ( G4String(argv[i]) == "-m" ) macro = argv[i+1];
93  else if ( G4String(argv[i]) == "-u" ) session = argv[i+1];
94  else if ( G4String(argv[i]) == "-r" ) randomSeed = atoi(argv[i+1]);
95 #ifdef G4MULTITHREADED
96  else if ( G4String(argv[i]) == "-t" ) {
97  nThreads = G4UIcommand::ConvertToInt(argv[i+1]);
98  }
99 #endif
100  else {
101  PrintUsage();
102  return 1;
103  }
104  }
105 
106  // Instantiate G4UIExecutive for interactive mode
107  G4UIExecutive* ui = nullptr;
108  if ( macro.size() == 0 ) {
109  ui = new G4UIExecutive(argc, argv, session);
110  }
111 
112  // Choose the Random engine
113  //
114  G4Random::setTheEngine(new CLHEP::RanecuEngine);
115 
116  // Construct the default run manager
117  //
118 #ifdef G4MULTITHREADED
119  G4MTRunManager * runManager = new G4MTRunManager;
120  if ( nThreads > 0 ) runManager->SetNumberOfThreads(nThreads);
121 #else
122  G4RunManager * runManager = new G4RunManager;
123 #endif
124 
125  // Seed the random number generator manually
126  G4Random::setTheSeed(randomSeed);
127 
128  // Set mandatory initialization classes
129  //
130  // Detector construction
131  runManager->SetUserInitialization(new F06DetectorConstruction());
132  // Physics list
133  runManager->SetUserInitialization(new F06PhysicsList());
134 
135  // Ensure that Transportation considers gravity fields.
136  G4Transportation::EnableGravity(true);
137 
138  // User action initialization
139  runManager->SetUserInitialization(new F06ActionInitialization());
140 
141  // Initialize visualization
142  //
143  G4VisManager* visManager = new G4VisExecutive;
144  // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance.
145  // G4VisManager* visManager = new G4VisExecutive("Quiet");
146  visManager->Initialize();
147 
148  // Get the pointer to the User Interface manager
149  //
150  G4UImanager* UImanager = G4UImanager::GetUIpointer();
151 
152  if ( !ui ) {
153  // batch mode
154  G4String command = "/control/execute ";
155  UImanager->ApplyCommand(command+macro);
156  }
157  else
158  {
159  UImanager->ApplyCommand("/control/execute init_vis.mac");
160  if (ui->IsGUI())
161  UImanager->ApplyCommand("/control/execute gui.mac");
162  ui->SessionStart();
163  delete ui;
164  }
165 
166  // Job termination
167  // Free the store: user actions, physics_list and detector_description are
168  // owned and deleted by the run manager, so they should not
169  // be deleted in the main() program !
170 
171  delete visManager;
172  delete runManager;
173 
174  return 0;
175 }
static G4UIterminal * session
void PrintUsage()