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/field03/field03.cc 27 /// \file field/field03/field03.cc 28 /// \brief Main program of the field/field03 e 28 /// \brief Main program of the field/field03 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 #include "G4Types.hh" 36 #include "G4Types.hh" 34 37 35 #include "G4RunManagerFactory.hh" << 38 #ifdef G4MULTITHREADED >> 39 #include "G4MTRunManager.hh" >> 40 #else 36 #include "F03SteppingVerbose.hh" 41 #include "F03SteppingVerbose.hh" >> 42 #include "G4RunManager.hh" >> 43 #endif 37 44 38 #include "F03ActionInitialization.hh" << 39 #include "F03DetectorConstruction.hh" 45 #include "F03DetectorConstruction.hh" 40 #include "FTFP_BERT.hh" << 46 #include "F03ActionInitialization.hh" 41 47 42 #include "G4StepLimiterPhysics.hh" << 43 #include "G4UIExecutive.hh" << 44 #include "G4UImanager.hh" 48 #include "G4UImanager.hh" >> 49 #include "FTFP_BERT.hh" >> 50 #include "G4StepLimiterPhysics.hh" >> 51 #include "Randomize.hh" >> 52 45 #include "G4VisExecutive.hh" 53 #include "G4VisExecutive.hh" >> 54 #include "G4UIExecutive.hh" 46 55 47 //....oooOO0OOooo........oooOO0OOooo........oo 56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 48 57 49 int main(int argc, char** argv) << 58 int main(int argc,char** argv) 50 { 59 { 51 // Instantiate G4UIExecutive if there are no 60 // Instantiate G4UIExecutive if there are no arguments (interactive mode) 52 // << 53 G4UIExecutive* ui = nullptr; 61 G4UIExecutive* ui = nullptr; 54 if (argc == 1) { << 62 if ( argc == 1 ) { 55 ui = new G4UIExecutive(argc, argv); 63 ui = new G4UIExecutive(argc, argv); 56 } 64 } 57 65 58 // Setting the application-specific Stepping << 66 // Choose the Random engine 59 // 67 // 60 auto verbosity = new F03SteppingVerbose; << 68 G4Random::setTheEngine(new CLHEP::RanecuEngine); 61 69 62 // Construct the default run manager 70 // Construct the default run manager 63 // 71 // 64 auto runManager = G4RunManagerFactory::Creat << 72 #ifdef G4MULTITHREADED >> 73 G4MTRunManager * runManager = new G4MTRunManager; >> 74 #else >> 75 G4VSteppingVerbose::SetInstance(new F03SteppingVerbose); >> 76 G4RunManager * runManager = new G4RunManager; >> 77 #endif 65 78 66 // Set mandatory initialization classes 79 // Set mandatory initialization classes 67 // 80 // 68 // Detector construction 81 // Detector construction 69 auto detector = new F03DetectorConstruction( << 82 F03DetectorConstruction* detector = new F03DetectorConstruction(); 70 runManager->SetUserInitialization(detector); 83 runManager->SetUserInitialization(detector); 71 // Physics list 84 // Physics list 72 G4VModularPhysicsList* physicsList = new FTF 85 G4VModularPhysicsList* physicsList = new FTFP_BERT; 73 physicsList->RegisterPhysics(new G4StepLimit 86 physicsList->RegisterPhysics(new G4StepLimiterPhysics()); 74 runManager->SetUserInitialization(physicsLis 87 runManager->SetUserInitialization(physicsList); 75 // User action initialization 88 // User action initialization 76 runManager->SetUserInitialization(new F03Act 89 runManager->SetUserInitialization(new F03ActionInitialization(detector)); 77 90 78 // Initialize G4 kernel 91 // Initialize G4 kernel 79 // 92 // 80 runManager->Initialize(); 93 runManager->Initialize(); 81 94 82 // Initialize visualization 95 // Initialize visualization 83 // 96 // 84 G4VisManager* visManager = new G4VisExecutiv 97 G4VisManager* visManager = new G4VisExecutive; 85 // G4VisExecutive can take a verbosity argum 98 // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance. 86 // G4VisManager* visManager = new G4VisExecu 99 // G4VisManager* visManager = new G4VisExecutive("Quiet"); 87 visManager->Initialize(); 100 visManager->Initialize(); 88 101 89 // Get the pointer to the User Interface man 102 // Get the pointer to the User Interface manager 90 // 103 // 91 G4UImanager* UImanager = G4UImanager::GetUIp 104 G4UImanager* UImanager = G4UImanager::GetUIpointer(); 92 105 93 if (!ui) // batch mode << 106 if (!ui) // batch mode 94 { << 107 { 95 G4String command = "/control/execute "; << 108 G4String command = "/control/execute "; 96 G4String fileName = argv[1]; << 109 G4String fileName = argv[1]; 97 UImanager->ApplyCommand(command + fileName << 110 UImanager->ApplyCommand(command+fileName); 98 } << 111 } 99 else { << 112 else 100 UImanager->ApplyCommand("/control/execute << 113 { 101 if (ui->IsGUI()) UImanager->ApplyCommand(" << 114 UImanager->ApplyCommand("/control/execute init_vis.mac"); 102 ui->SessionStart(); << 115 if (ui->IsGUI()) 103 delete ui; << 116 UImanager->ApplyCommand("/control/execute gui.mac"); 104 } << 117 ui->SessionStart(); >> 118 delete ui; >> 119 } 105 120 106 // Job termination 121 // Job termination 107 // Free the store: user actions, physics_lis 122 // Free the store: user actions, physics_list and detector_description are 108 // owned and deleted by the 123 // owned and deleted by the run manager, so they should not 109 // be deleted in the main() 124 // be deleted in the main() program ! 110 125 111 delete verbosity; << 112 delete visManager; 126 delete visManager; 113 delete runManager; 127 delete runManager; 114 128 115 return 0; 129 return 0; 116 } 130 } 117 131 118 //....oooOO0OOooo........oooOO0OOooo........oo 132 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 119 133