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 // 26 // 27 /// \file field/field06/field06.cc 27 /// \file field/field06/field06.cc 28 /// \brief Main program of the field/field06 e 28 /// \brief Main program of the field/field06 example 29 // 29 // >> 30 // >> 31 // >> 32 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 34 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 35 33 #ifndef WIN32 36 #ifndef WIN32 34 # include <unistd.h> << 37 #include <unistd.h> 35 #endif 38 #endif 36 39 37 #include "F06ActionInitialization.hh" << 40 #include "G4Types.hh" 38 #include "F06DetectorConstruction.hh" << 41 39 #include "F06PhysicsList.hh" 42 #include "F06PhysicsList.hh" >> 43 #include "G4Transportation.hh" >> 44 >> 45 #include "F06DetectorConstruction.hh" >> 46 #include "F06ActionInitialization.hh" 40 47 41 #include "G4RunManagerFactory.hh" 48 #include "G4RunManagerFactory.hh" 42 #include "G4Transportation.hh" << 49 43 #include "G4Types.hh" << 44 #include "G4UIExecutive.hh" << 45 #include "G4UIcommand.hh" << 46 #include "G4UImanager.hh" 50 #include "G4UImanager.hh" 47 #include "G4VisExecutive.hh" << 51 #include "G4UIcommand.hh" >> 52 48 #include "Randomize.hh" 53 #include "Randomize.hh" 49 54 >> 55 #include "G4VisExecutive.hh" >> 56 #include "G4UIExecutive.hh" >> 57 50 //....oooOO0OOooo........oooOO0OOooo........oo 58 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 51 namespace << 59 namespace { 52 { << 60 void PrintUsage() { 53 void PrintUsage() << 61 G4cerr << " Usage: " << G4endl; 54 { << 62 G4cerr << " field06 [-m macro ] [-u UIsession] [-t nThreads] [-r randomSeed] " 55 G4cerr << " Usage: " << G4endl; << 63 << G4endl; 56 G4cerr << " field06 [-m macro ] [-u UIsessio << 64 G4cerr << " note: -t option is available only for multi-threaded mode." 57 G4cerr << " note: -t option is available o << 65 << G4endl; >> 66 } 58 } 67 } 59 } // namespace << 60 68 61 //....oooOO0OOooo........oooOO0OOooo........oo 69 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 62 70 63 int main(int argc, char** argv) << 71 int main(int argc,char** argv) 64 { 72 { 65 // Evaluate arguments 73 // Evaluate arguments 66 // 74 // 67 if (argc > 9) { << 75 if ( argc > 9 ) { 68 PrintUsage(); 76 PrintUsage(); 69 return 1; 77 return 1; 70 } 78 } 71 79 72 G4String macro; 80 G4String macro; 73 G4String session; 81 G4String session; 74 G4int nThreads = 0; 82 G4int nThreads = 0; 75 83 76 G4long randomSeed = 1234; 84 G4long randomSeed = 1234; 77 for (G4int i = 1; i < argc; i = i + 2) { << 85 for ( G4int i=1; i<argc; i=i+2 ) { 78 if (G4String(argv[i]) == "-m") << 86 if ( G4String(argv[i]) == "-m" ) macro = argv[i+1]; 79 macro = argv[i + 1]; << 87 else if ( G4String(argv[i]) == "-u" ) session = argv[i+1]; 80 else if (G4String(argv[i]) == "-u") << 88 else if ( G4String(argv[i]) == "-r" ) randomSeed = atoi(argv[i+1]); 81 session = argv[i + 1]; << 89 else if ( G4String(argv[i]) == "-t" ) { 82 else if (G4String(argv[i]) == "-r") << 90 nThreads = G4UIcommand::ConvertToInt(argv[i+1]); 83 randomSeed = atoi(argv[i + 1]); << 84 else if (G4String(argv[i]) == "-t") { << 85 nThreads = G4UIcommand::ConvertToInt(arg << 86 } 91 } 87 else { 92 else { 88 PrintUsage(); 93 PrintUsage(); 89 return 1; 94 return 1; 90 } 95 } 91 } 96 } 92 97 93 // Instantiate G4UIExecutive for interactive 98 // Instantiate G4UIExecutive for interactive mode 94 G4UIExecutive* ui = nullptr; 99 G4UIExecutive* ui = nullptr; 95 if (macro.size() == 0) { << 100 if ( macro.size() == 0 ) { 96 ui = new G4UIExecutive(argc, argv, session 101 ui = new G4UIExecutive(argc, argv, session); 97 } 102 } 98 103 >> 104 // Choose the Random engine >> 105 // >> 106 G4Random::setTheEngine(new CLHEP::RanecuEngine); >> 107 99 // Construct the default run manager 108 // Construct the default run manager 100 // 109 // 101 auto* runManager = G4RunManagerFactory::Crea 110 auto* runManager = G4RunManagerFactory::CreateRunManager(); 102 if (nThreads > 0) runManager->SetNumberOfThr << 111 if ( nThreads > 0 ) runManager->SetNumberOfThreads(nThreads); 103 112 104 // Seed the random number generator manually 113 // Seed the random number generator manually 105 G4Random::setTheSeed(randomSeed); 114 G4Random::setTheSeed(randomSeed); 106 115 107 // Set mandatory initialization classes 116 // Set mandatory initialization classes 108 // 117 // 109 // Detector construction 118 // Detector construction 110 runManager->SetUserInitialization(new F06Det 119 runManager->SetUserInitialization(new F06DetectorConstruction()); 111 // Physics list 120 // Physics list 112 runManager->SetUserInitialization(new F06Phy 121 runManager->SetUserInitialization(new F06PhysicsList()); 113 122 114 // Ensure that Transportation considers grav 123 // Ensure that Transportation considers gravity fields. 115 G4Transportation::EnableGravity(true); 124 G4Transportation::EnableGravity(true); 116 125 117 // User action initialization 126 // User action initialization 118 runManager->SetUserInitialization(new F06Act 127 runManager->SetUserInitialization(new F06ActionInitialization()); 119 128 120 // Initialize visualization 129 // Initialize visualization 121 // 130 // 122 G4VisManager* visManager = new G4VisExecutiv 131 G4VisManager* visManager = new G4VisExecutive; 123 // G4VisExecutive can take a verbosity argum 132 // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance. 124 // G4VisManager* visManager = new G4VisExecu 133 // G4VisManager* visManager = new G4VisExecutive("Quiet"); 125 visManager->Initialize(); 134 visManager->Initialize(); 126 135 127 // Get the pointer to the User Interface man 136 // Get the pointer to the User Interface manager 128 // 137 // 129 G4UImanager* UImanager = G4UImanager::GetUIp 138 G4UImanager* UImanager = G4UImanager::GetUIpointer(); 130 139 131 if (!ui) { << 140 if ( !ui ) { 132 // batch mode << 141 // batch mode 133 G4String command = "/control/execute "; << 142 G4String command = "/control/execute "; 134 UImanager->ApplyCommand(command + macro); << 143 UImanager->ApplyCommand(command+macro); 135 } 144 } 136 else { << 145 else 137 UImanager->ApplyCommand("/control/execute << 146 { 138 if (ui->IsGUI()) UImanager->ApplyCommand(" << 147 UImanager->ApplyCommand("/control/execute init_vis.mac"); 139 ui->SessionStart(); << 148 if (ui->IsGUI()) 140 delete ui; << 149 UImanager->ApplyCommand("/control/execute gui.mac"); >> 150 ui->SessionStart(); >> 151 delete ui; 141 } 152 } 142 153 143 // Job termination 154 // Job termination 144 // Free the store: user actions, physics_lis 155 // Free the store: user actions, physics_list and detector_description are 145 // owned and deleted by the 156 // owned and deleted by the run manager, so they should not 146 // be deleted in the main() 157 // be deleted in the main() program ! 147 158 148 delete visManager; 159 delete visManager; 149 delete runManager; 160 delete runManager; 150 161 151 return 0; 162 return 0; 152 } 163 } 153 164 154 //....oooOO0OOooo........oooOO0OOooo........oo 165 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 155 166