// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // $Id: electronScattering2.cc 108546 2018-02-16 09:51:30Z gcosmo $ // /// \file medical/electronScattering2/electronScattering2.cc /// \brief Main program of the medical/electronScattering2 example #ifdef G4MULTITHREADED #include "G4MTRunManager.hh" #else #include "G4RunManager.hh" #endif #include "Randomize.hh" #ifdef G4VIS_USE #include "G4VisExecutive.hh" #endif #include "G4UImanager.hh" #ifdef G4UI_USE #include "G4UIExecutive.hh" #endif #include "ElectronBenchmarkDetector.hh" #include "PhysicsList.hh" #include "ElectronActionInitialization.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... int main(int argc,char** argv) { // Parse the arguments G4String outputFile = "output.csv"; G4String startingSeed = "1"; G4String macroFile = "None"; if (argc > 1) macroFile = argv[1]; if (argc > 2) startingSeed = argv[2]; if (argc > 3) outputFile = argv[3]; G4cout << "Starting run with" << G4endl; G4cout << "Macro File : " << macroFile << G4endl; G4cout << "Starting Seed : " << startingSeed << G4endl; G4cout << "Output File : " << outputFile << G4endl; // Instantiate the run manager #ifdef G4MULTITHREADED G4MTRunManager* runManager = new G4MTRunManager; #else G4RunManager* runManager = new G4RunManager; #endif // Instantiate the random engine G4Random::setTheEngine(new CLHEP::MTwistEngine); // Convert the starting seed to integer and feed it to the random engine unsigned startingSeedInt; std::istringstream is(startingSeed); is >> startingSeedInt; G4Random::setTheSeed(startingSeedInt); // Instantiate the geometry runManager->SetUserInitialization(new ElectronBenchmarkDetector); // Instantiate the physics list (in turn calls one of the choices of // physics list) runManager->SetUserInitialization(new PhysicsList); // set user action classes runManager->SetUserInitialization( new ElectronActionInitialization(outputFile)); if (argc == 1) { // Since no macro was specified, instantiate an interactive session // (exact session type depends on user preference expressed in // environment variables). // // Instantiate the visualization System #ifdef G4VIS_USE G4VisManager* visManager = new G4VisExecutive; visManager->Initialize(); #endif #ifdef G4UI_USE G4UIExecutive* ui = new G4UIExecutive(argc, argv); ui->SessionStart(); delete ui; #endif #ifdef G4VIS_USE delete visManager; #endif } else { // A macro was specified. Execute it. G4UImanager* UImanager = G4UImanager::GetUIpointer(); G4String command = "/control/execute "; UImanager->ApplyCommand(command+macroFile); } delete runManager; return 0; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......