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