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

Main program of the medical/electronScattering2 example. More...

#include "G4Types.hh"
#include "G4RunManager.hh"
#include "G4UImanager.hh"
#include "Randomize.hh"
#include "G4UIExecutive.hh"
#include "G4VisExecutive.hh"
#include "ElectronBenchmarkDetector.hh"
#include "PhysicsList.hh"
#include "ElectronActionInitialization.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Main program of the medical/electronScattering2 example.

Definition in file electronScattering2.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 49 of file electronScattering2.cc.

49  {
50 
51  //detect interactive mode (if no arguments) and define UI session
52  G4UIExecutive* ui = nullptr;
53  if (argc == 1) ui = new G4UIExecutive(argc,argv);
54 
55  // Parse the arguments
56  G4String outputFile = "output.csv";
57  G4String startingSeed = "1";
58  G4String macroFile = "None";
59  if (argc > 1) macroFile = argv[1];
60  if (argc > 2) startingSeed = argv[2];
61  if (argc > 3) outputFile = argv[3];
62  G4cout << "Starting run with" << G4endl;
63  G4cout << "Macro File : " << macroFile << G4endl;
64  G4cout << "Starting Seed : " << startingSeed << G4endl;
65  G4cout << "Output File : " << outputFile << G4endl;
66 
67  // Instantiate the run manager
68 #ifdef G4MULTITHREADED
69  G4MTRunManager* runManager = new G4MTRunManager;
70 #else
71  G4RunManager* runManager = new G4RunManager;
72 #endif
73 
74  // Instantiate the random engine
75  G4Random::setTheEngine(new CLHEP::MTwistEngine);
76 
77  // Convert the starting seed to integer and feed it to the random engine
78  unsigned startingSeedInt;
79  std::istringstream is(startingSeed);
80  is >> startingSeedInt;
81  G4Random::setTheSeed(startingSeedInt);
82 
83  // Instantiate the geometry
84  runManager->SetUserInitialization(new ElectronBenchmarkDetector);
85 
86  // Instantiate the physics list (in turn calls one of the choices of
87  // physics list)
88  runManager->SetUserInitialization(new PhysicsList);
89 
90  // set user action classes
91  runManager->SetUserInitialization(
92  new ElectronActionInitialization(outputFile));
93 
94  //initialize visualization
95  G4VisManager* visManager = nullptr;
96 
97  //get the pointer to the User Interface manager
98  G4UImanager* UImanager = G4UImanager::GetUIpointer();
99 
100  if (ui) {
101  //interactive mode
102  visManager = new G4VisExecutive;
103  visManager->Initialize();
104  ui->SessionStart();
105  delete ui;
106  }
107  else {
108  //batch mode
109  G4String command = "/control/execute ";
110  G4String fileName = argv[1];
111  UImanager->ApplyCommand(command+fileName);
112  }
113 
114  //job termination
115  delete visManager;
116  delete runManager;
117 }