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