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