LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
electronScattering2.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 //
29 #include "G4Types.hh"
30 
31 #ifdef G4MULTITHREADED
32 #include "G4MTRunManager.hh"
33 #else
34 #include "G4RunManager.hh"
35 #endif
36 
37 #include "G4UImanager.hh"
38 #include "Randomize.hh"
39 
40 #include "G4UIExecutive.hh"
41 #include "G4VisExecutive.hh"
42 
43 #include "ElectronBenchmarkDetector.hh"
44 #include "PhysicsList.hh"
45 #include "ElectronActionInitialization.hh"
46 
47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
48 
49 int main(int argc,char** argv) {
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 }
118 
119 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
int main(int argc, char **argv)