Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // >> 26 // $Id: electronScattering2.cc 93734 2015-10-30 10:59:21Z gcosmo $ 26 // 27 // 27 /// \file medical/electronScattering2/electron 28 /// \file medical/electronScattering2/electronScattering2.cc 28 /// \brief Main program of the medical/electro 29 /// \brief Main program of the medical/electronScattering2 example 29 #include "ElectronActionInitialization.hh" << 30 #include "ElectronBenchmarkDetector.hh" << 31 #include "PhysicsList.hh" << 32 30 33 #include "G4RunManagerFactory.hh" << 31 #ifdef G4MULTITHREADED 34 #include "G4Types.hh" << 32 #include "G4MTRunManager.hh" 35 #include "G4UIExecutive.hh" << 33 #else 36 #include "G4UImanager.hh" << 34 #include "G4RunManager.hh" 37 #include "G4VisExecutive.hh" << 35 #endif >> 36 38 #include "Randomize.hh" 37 #include "Randomize.hh" >> 38 #include "G4ScoringManager.hh" >> 39 >> 40 #ifdef G4VIS_USE >> 41 #include "G4VisExecutive.hh" >> 42 #endif >> 43 >> 44 #include "G4UImanager.hh" >> 45 #ifdef G4UI_USE >> 46 #include "G4UIExecutive.hh" >> 47 #endif >> 48 >> 49 #include "ElectronBenchmarkDetector.hh" >> 50 #include "PhysicsList.hh" >> 51 #include "ElectronActionInitialization.hh" 39 52 40 //....oooOO0OOooo........oooOO0OOooo........oo 53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 41 54 42 int main(int argc, char** argv) << 55 int main(int argc,char** argv) { 43 { << 56 44 // detect interactive mode (if no arguments) << 57 // Parse the arguments 45 G4UIExecutive* ui = nullptr; << 58 G4String outputFile = "output.csv"; 46 if (argc == 1) ui = new G4UIExecutive(argc, << 59 G4String startingSeed = "1"; 47 << 60 G4String macroFile = "None"; 48 // Parse the arguments << 61 if (argc > 1) macroFile = argv[1]; 49 G4String outputFile = "output.csv"; << 62 if (argc > 2) startingSeed = argv[2]; 50 G4String startingSeed = "1"; << 63 if (argc > 3) outputFile = argv[3]; 51 G4String macroFile = "None"; << 64 G4cout << "Starting run with" << G4endl; 52 if (argc > 1) macroFile = argv[1]; << 65 G4cout << "Macro File : " << macroFile << G4endl; 53 if (argc > 2) startingSeed = argv[2]; << 66 G4cout << "Starting Seed : " << startingSeed << G4endl; 54 if (argc > 3) outputFile = argv[3]; << 67 G4cout << "Output File : " << outputFile << G4endl; 55 G4cout << "Starting run with" << G4endl; << 68 56 G4cout << "Macro File : " << macroFile << << 69 // Instantiate the run manager 57 G4cout << "Starting Seed : " << startingSeed << 70 #ifdef G4MULTITHREADED 58 G4cout << "Output File : " << outputFile < << 71 G4MTRunManager* runManager = new G4MTRunManager; 59 << 72 #else 60 // Instantiate the run manager << 73 G4RunManager* runManager = new G4RunManager; 61 auto* runManager = G4RunManagerFactory::Crea << 74 #endif 62 << 75 63 // Instantiate the random engine << 76 // Instantiate the random engine 64 G4Random::setTheEngine(new CLHEP::MTwistEngi << 77 G4Random::setTheEngine(new CLHEP::MTwistEngine); 65 << 78 66 // Convert the starting seed to integer and << 79 // Convert the starting seed to integer and feed it to the random engine 67 unsigned startingSeedInt; << 80 unsigned startingSeedInt; 68 std::istringstream is(startingSeed); << 81 std::istringstream is(startingSeed); 69 is >> startingSeedInt; << 82 is >> startingSeedInt; 70 G4Random::setTheSeed(startingSeedInt); << 83 G4Random::setTheSeed(startingSeedInt); 71 << 84 72 // Instantiate the geometry << 85 // Instantiate the scoring manager 73 runManager->SetUserInitialization(new Electr << 86 G4ScoringManager::GetScoringManager(); 74 << 87 75 // Instantiate the physics list (in turn cal << 88 // Instantiate the geometry 76 // physics list) << 89 runManager->SetUserInitialization(new ElectronBenchmarkDetector); 77 runManager->SetUserInitialization(new Physic << 90 78 << 91 // Instantiate the physics list (in turn calls one of the choices of 79 // set user action classes << 92 // physics list) 80 runManager->SetUserInitialization(new Electr << 93 runManager->SetUserInitialization(new PhysicsList); 81 << 94 82 // initialize visualization << 95 // set user action classes 83 G4VisManager* visManager = nullptr; << 96 runManager->SetUserInitialization( 84 << 97 new ElectronActionInitialization(outputFile)); 85 // get the pointer to the User Interface man << 98 86 G4UImanager* UImanager = G4UImanager::GetUIp << 99 if (argc == 1) 87 << 100 { 88 if (ui) { << 101 // Since no macro was specified, instantiate an interactive session 89 // interactive mode << 102 // (exact session type depends on user preference expressed in 90 visManager = new G4VisExecutive; << 103 // environment variables). 91 visManager->Initialize(); << 104 // 92 ui->SessionStart(); << 105 // Instantiate the visualization System 93 delete ui; << 106 #ifdef G4VIS_USE 94 } << 107 G4VisManager* visManager = new G4VisExecutive; 95 else { << 108 visManager->Initialize(); 96 // batch mode << 109 #endif 97 G4String command = "/control/execute "; << 110 98 G4String fileName = argv[1]; << 111 #ifdef G4UI_USE 99 UImanager->ApplyCommand(command + fileName << 112 G4UIExecutive* ui = new G4UIExecutive(argc, argv); 100 } << 113 ui->SessionStart(); 101 << 114 delete ui; 102 // job termination << 115 #endif 103 delete visManager; << 116 104 delete runManager; << 117 #ifdef G4VIS_USE >> 118 delete visManager; >> 119 #endif >> 120 } >> 121 else >> 122 { >> 123 // A macro was specified. Execute it. >> 124 G4UImanager* UImanager = G4UImanager::GetUIpointer(); >> 125 G4String command = "/control/execute "; >> 126 UImanager->ApplyCommand(command+macroFile); >> 127 } >> 128 >> 129 delete runManager; >> 130 >> 131 return 0; 105 } 132 } 106 133 107 //....oooOO0OOooo........oooOO0OOooo........oo 134 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 108 135