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 exampleGB05.cc 27 /// \file exampleGB05.cc 28 /// \brief Main program of example GB05 28 /// \brief Main program of example GB05 29 29 30 #include "FTFP_BERT.hh" << 30 #include "G4Types.hh" >> 31 >> 32 #ifdef G4MULTITHREADED >> 33 #include "G4MTRunManager.hh" >> 34 #else >> 35 #include "G4RunManager.hh" >> 36 #endif 31 #include "GB05ActionInitialization.hh" 37 #include "GB05ActionInitialization.hh" >> 38 >> 39 #include "G4UImanager.hh" >> 40 32 #include "GB05DetectorConstruction.hh" 41 #include "GB05DetectorConstruction.hh" 33 #include "GB05PrimaryGeneratorAction.hh" 42 #include "GB05PrimaryGeneratorAction.hh" 34 43 >> 44 #include "FTFP_BERT.hh" 35 #include "G4GenericBiasingPhysics.hh" 45 #include "G4GenericBiasingPhysics.hh" 36 #include "G4RunManagerFactory.hh" << 46 37 #include "G4Types.hh" << 38 #include "G4UIExecutive.hh" << 39 #include "G4UImanager.hh" << 40 #include "G4VisExecutive.hh" 47 #include "G4VisExecutive.hh" >> 48 #include "G4UIExecutive.hh" >> 49 41 50 42 //....oooOO0OOooo........oooOO0OOooo........oo 51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 43 52 44 namespace << 53 namespace { 45 { << 54 void PrintUsage() { 46 void PrintUsage() << 55 G4cerr << " Usage: " << G4endl; 47 { << 56 G4cerr << " ./exampleGB05 [-m macro ] " 48 G4cerr << " Usage: " << G4endl; << 57 << " [-b biasing {'on','off'}]" 49 G4cerr << " ./exampleGB05 [-m macro ] " << 58 << "\n or\n ./exampleGB05 [macro.mac]" 50 << " [-b biasing {'on','off'}]" << 59 << G4endl; 51 << "\n or\n ./exampleGB05 [macro.mac] << 60 } 52 } 61 } 53 } // namespace << 54 62 55 //....oooOO0OOooo........oooOO0OOooo........oo 63 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 56 64 57 int main(int argc, char** argv) << 65 >> 66 int main(int argc,char** argv) 58 { 67 { 59 // Evaluate arguments 68 // Evaluate arguments 60 // 69 // 61 if (argc > 5) { << 70 if ( argc > 5 ) { 62 PrintUsage(); 71 PrintUsage(); 63 return 1; 72 return 1; 64 } 73 } 65 74 66 G4String macro(""); 75 G4String macro(""); 67 G4String onOffBiasing(""); 76 G4String onOffBiasing(""); 68 if (argc == 2) << 77 if ( argc == 2 ) macro = argv[1]; 69 macro = argv[1]; << 78 else 70 else { << 79 { 71 for (G4int i = 1; i < argc; i = i + 2) { << 80 for ( G4int i=1; i<argc; i=i+2 ) 72 if (G4String(argv[i]) == "-m") << 81 { 73 macro = argv[i + 1]; << 82 if ( G4String(argv[i]) == "-m" ) macro = argv[i+1]; 74 else if (G4String(argv[i]) == "-b") << 83 else if ( G4String(argv[i]) == "-b" ) onOffBiasing = argv[i+1]; 75 onOffBiasing = argv[i + 1]; << 84 else 76 else { << 85 { 77 PrintUsage(); << 86 PrintUsage(); 78 return 1; << 87 return 1; 79 } << 88 } >> 89 } 80 } 90 } 81 } << 82 91 83 if (onOffBiasing == "") onOffBiasing = "on"; << 92 if ( onOffBiasing == "" ) onOffBiasing = "on"; 84 93 85 // Instantiate G4UIExecutive if interactive 94 // Instantiate G4UIExecutive if interactive mode 86 G4UIExecutive* ui = nullptr; 95 G4UIExecutive* ui = nullptr; 87 if (macro == "") { << 96 if ( macro == "" ) { 88 ui = new G4UIExecutive(argc, argv); 97 ui = new G4UIExecutive(argc, argv); 89 } 98 } 90 99 91 // -- Construct the run manager : MT or sequ 100 // -- Construct the run manager : MT or sequential one 92 auto* runManager = G4RunManagerFactory::Crea << 101 #ifdef G4MULTITHREADED >> 102 G4MTRunManager * runManager = new G4MTRunManager; >> 103 G4cout << " ********** Run Manager constructed in MT mode ************ " >> 104 << G4endl; >> 105 // -- Choose 4 threads: 93 runManager->SetNumberOfThreads(4); 106 runManager->SetNumberOfThreads(4); >> 107 #else >> 108 G4RunManager * runManager = new G4RunManager; >> 109 G4cout << " ********** Run Manager constructed in sequential mode ************ " >> 110 << G4endl; >> 111 #endif >> 112 94 113 95 // -- Set mandatory initialization classes 114 // -- Set mandatory initialization classes 96 GB05DetectorConstruction* detector = new GB0 115 GB05DetectorConstruction* detector = new GB05DetectorConstruction(); 97 runManager->SetUserInitialization(detector); 116 runManager->SetUserInitialization(detector); 98 // -- Select a physics list: 117 // -- Select a physics list: 99 FTFP_BERT* physicsList = new FTFP_BERT; 118 FTFP_BERT* physicsList = new FTFP_BERT; 100 // -- and augment it with biasing facilities 119 // -- and augment it with biasing facilities: 101 G4GenericBiasingPhysics* biasingPhysics = ne 120 G4GenericBiasingPhysics* biasingPhysics = new G4GenericBiasingPhysics(); 102 biasingPhysics->BeVerbose(); 121 biasingPhysics->BeVerbose(); 103 if (onOffBiasing == "on") { << 122 if ( onOffBiasing == "on" ) 104 biasingPhysics->Bias("neutron"); << 123 { 105 physicsList->RegisterPhysics(biasingPhysic << 124 biasingPhysics->Bias("neutron"); 106 G4cout << " ************************* << 125 physicsList->RegisterPhysics(biasingPhysics); 107 G4cout << " ********** processes are << 126 G4cout << " ********************************************************* " 108 G4cout << " ************************* << 127 << G4endl; 109 } << 128 G4cout << " ********** processes are wrapped for biasing ************ " 110 else { << 129 << G4endl; 111 G4cout << " ************************* << 130 G4cout << " ********************************************************* " 112 G4cout << " ********** processes are << 131 << G4endl; 113 G4cout << " ************************* << 132 } 114 } << 133 else >> 134 { >> 135 G4cout << " ************************************************* " << G4endl; >> 136 G4cout << " ********** processes are not wrapped ************ " << G4endl; >> 137 G4cout << " ************************************************* " << G4endl; >> 138 } 115 runManager->SetUserInitialization(physicsLis 139 runManager->SetUserInitialization(physicsList); 116 // -- Action initialization: 140 // -- Action initialization: 117 runManager->SetUserInitialization(new GB05Ac 141 runManager->SetUserInitialization(new GB05ActionInitialization); 118 142 119 // Initialize G4 kernel 143 // Initialize G4 kernel 120 runManager->Initialize(); 144 runManager->Initialize(); 121 145 122 // Initialize visualization 146 // Initialize visualization 123 G4VisManager* visManager = new G4VisExecutiv 147 G4VisManager* visManager = new G4VisExecutive; 124 // G4VisExecutive can take a verbosity argum 148 // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance. 125 visManager->Initialize(); 149 visManager->Initialize(); 126 150 127 // Get the pointer to the User Interface man 151 // Get the pointer to the User Interface manager 128 G4UImanager* UImanager = G4UImanager::GetUIp 152 G4UImanager* UImanager = G4UImanager::GetUIpointer(); 129 153 130 if (!ui) // batch mode << 154 if ( !ui ) // batch mode 131 { << 155 { 132 G4String command = "/control/execute "; << 156 G4String command = "/control/execute "; 133 UImanager->ApplyCommand(command + macro); << 157 UImanager->ApplyCommand(command+macro); 134 } << 158 } 135 else { // interactive mode : define UI sess << 159 else 136 UImanager->ApplyCommand("/control/execute << 160 { // interactive mode : define UI session 137 // if (ui->IsGUI()) << 161 UImanager->ApplyCommand("/control/execute vis.mac"); 138 // UImanager->ApplyCommand("/ << 162 // if (ui->IsGUI()) 139 ui->SessionStart(); << 163 // UImanager->ApplyCommand("/control/execute gui.mac"); 140 delete ui; << 164 ui->SessionStart(); 141 } << 165 delete ui; >> 166 } 142 167 143 delete visManager; 168 delete visManager; 144 delete runManager; 169 delete runManager; 145 170 146 return 0; 171 return 0; 147 } 172 } 148 173 149 //....oooOO0OOooo........oooOO0OOooo........oo 174 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo..... 150 175