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 /// \file exoticphysics/monopole/monopole.cc 26 /// \file exoticphysics/monopole/monopole.cc 27 /// \brief Main program of the exoticphysics/m 27 /// \brief Main program of the exoticphysics/monopole example 28 // 28 // 29 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 32 33 #include "ActionInitialization.hh" << 33 #include "G4Types.hh" 34 #include "DetectorConstruction.hh" << 35 34 36 #include "G4MonopolePhysics.hh" << 37 #include "G4PhysListFactory.hh" << 38 #include "G4RunManagerFactory.hh" 35 #include "G4RunManagerFactory.hh" 39 #include "G4Types.hh" << 36 40 #include "G4UIExecutive.hh" << 41 #include "G4UImanager.hh" 37 #include "G4UImanager.hh" 42 #include "G4VModularPhysicsList.hh" << 43 #include "G4VisExecutive.hh" << 44 #include "Randomize.hh" 38 #include "Randomize.hh" >> 39 >> 40 #include "G4VisExecutive.hh" >> 41 #include "G4UIExecutive.hh" >> 42 >> 43 #include "DetectorConstruction.hh" >> 44 #include "G4MonopolePhysics.hh" >> 45 #include "G4PhysListFactory.hh" >> 46 #include "G4VModularPhysicsList.hh" >> 47 #include "ActionInitialization.hh" >> 48 45 #include "globals.hh" 49 #include "globals.hh" 46 50 47 //....oooOO0OOooo........oooOO0OOooo........oo 51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 48 52 49 namespace << 53 namespace { 50 { << 54 void PrintUsage() { 51 void PrintUsage() << 55 G4cerr 52 { << 56 << " Usage: " << G4endl 53 G4cerr << " Usage: " << G4endl << " monopole << 57 << " monopole [-m macro ] [-s setupMonopole] [-t nThreads]" << G4endl 54 << G4endl << " Note: " << G4endl << 58 << " Note: " << G4endl 55 << " -s should be followed by a co << 59 << " -s should be followed by a composed string, eg. \'1 0 100 GeV\'" << G4endl 56 << " -t option is for multi-thread << 60 << " -t option is for multi-threaded mode." << G4endl >> 61 << G4endl; >> 62 } 57 } 63 } 58 } // namespace << 59 64 60 //....oooOO0OOooo........oooOO0OOooo........oo 65 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 61 66 62 int main(int argc, char** argv) << 67 int main(int argc,char** argv) 63 { 68 { 64 // Evaluate arguments 69 // Evaluate arguments 65 // 70 // 66 if (argc > 7) { << 71 if ( argc > 7 ) { 67 PrintUsage(); 72 PrintUsage(); 68 return 1; 73 return 1; 69 } 74 } 70 75 71 G4String macro; 76 G4String macro; 72 G4String setupMonopole; 77 G4String setupMonopole; 73 G4int nThreads = 1; 78 G4int nThreads = 1; 74 for (G4int i = 1; i < argc; i = i + 2) { << 79 for ( G4int i=1; i<argc; i=i+2 ) { 75 if (G4String(argv[i]) == "-m") << 80 if ( G4String(argv[i]) == "-m" ) macro = argv[i+1]; 76 macro = argv[i + 1]; << 81 else if ( G4String(argv[i]) == "-s" ) setupMonopole = argv[i+1]; 77 else if (G4String(argv[i]) == "-s") << 82 else if ( G4String(argv[i]) == "-t" ) { 78 setupMonopole = argv[i + 1]; << 83 nThreads = G4UIcommand::ConvertToInt(argv[i+1]); 79 else if (G4String(argv[i]) == "-t") { << 80 nThreads = G4UIcommand::ConvertToInt(arg << 81 } 84 } 82 else { 85 else { 83 PrintUsage(); 86 PrintUsage(); 84 return 1; 87 return 1; 85 } 88 } 86 } 89 } 87 90 88 // Construct the default run manager 91 // Construct the default run manager 89 auto* runManager = G4RunManagerFactory::Crea 92 auto* runManager = G4RunManagerFactory::CreateRunManager(); 90 if (nThreads > 0) { << 93 if ( nThreads > 0 ) { 91 runManager->SetNumberOfThreads(nThreads); 94 runManager->SetNumberOfThreads(nThreads); 92 } 95 } 93 G4cout << "===== Example is started with " < << 96 G4cout << "===== Example is started with " 94 << " threads =====" << G4endl; << 97 << runManager->GetNumberOfThreads() << " threads =====" << G4endl; 95 98 96 // Instantiate G4UIExecutive if interactive 99 // Instantiate G4UIExecutive if interactive 97 G4UIExecutive* ui = nullptr; 100 G4UIExecutive* ui = nullptr; 98 if (macro.empty()) { << 101 if ( macro.empty() ) { 99 ui = new G4UIExecutive(argc, argv); 102 ui = new G4UIExecutive(argc, argv); 100 } 103 } 101 104 102 // get the pointer to the User Interface man << 105 //get the pointer to the User Interface manager 103 G4UImanager* UImanager = G4UImanager::GetUIp 106 G4UImanager* UImanager = G4UImanager::GetUIpointer(); 104 107 105 // create physicsList << 108 //create physicsList 106 // Physics List is defined via environment << 109 // Physics List is defined via environment variable PHYSLIST 107 G4PhysListFactory factory; 110 G4PhysListFactory factory; 108 G4VModularPhysicsList* phys = factory.GetRef 111 G4VModularPhysicsList* phys = factory.GetReferencePhysList("FTFP_BERT"); 109 112 110 // monopole physics is added 113 // monopole physics is added 111 G4MonopolePhysics* theMonopole = new G4Monop << 114 G4MonopolePhysics * theMonopole = new G4MonopolePhysics(); 112 115 113 // Setup monopole 116 // Setup monopole 114 if (setupMonopole.size()) { << 117 if ( setupMonopole.size() ) { 115 UImanager->ApplyCommand("/control/verbose 118 UImanager->ApplyCommand("/control/verbose 1"); 116 UImanager->ApplyCommand("/monopole/setup " 119 UImanager->ApplyCommand("/monopole/setup " + setupMonopole); 117 } 120 } 118 121 119 // regsiter monopole physics 122 // regsiter monopole physics 120 phys->RegisterPhysics(theMonopole); 123 phys->RegisterPhysics(theMonopole); 121 124 122 runManager->SetUserInitialization(phys); 125 runManager->SetUserInitialization(phys); 123 126 124 // visualization manager 127 // visualization manager 125 G4VisManager* visManager = nullptr; 128 G4VisManager* visManager = nullptr; 126 129 127 // set detector construction 130 // set detector construction 128 DetectorConstruction* det = new DetectorCons 131 DetectorConstruction* det = new DetectorConstruction(); 129 runManager->SetUserInitialization(det); 132 runManager->SetUserInitialization(det); 130 133 131 // set user action classes 134 // set user action classes 132 runManager->SetUserInitialization(new Action 135 runManager->SetUserInitialization(new ActionInitialization(det)); 133 136 134 // Process macro or start UI session 137 // Process macro or start UI session 135 // 138 // 136 if (macro.size()) { << 139 if ( macro.size() ) { 137 // batch mode 140 // batch mode 138 G4String command = "/control/execute "; 141 G4String command = "/control/execute "; 139 UImanager->ApplyCommand(command + macro); << 142 UImanager->ApplyCommand(command+macro); 140 } 143 } 141 else { << 144 else { 142 // interactive mode : define UI session 145 // interactive mode : define UI session 143 visManager = new G4VisExecutive(); 146 visManager = new G4VisExecutive(); 144 visManager->Initialize(); 147 visManager->Initialize(); 145 UImanager->ApplyCommand("/control/execute 148 UImanager->ApplyCommand("/control/execute init_vis.mac"); 146 ui->SessionStart(); 149 ui->SessionStart(); 147 delete ui; 150 delete ui; 148 } 151 } 149 152 150 delete visManager; 153 delete visManager; 151 154 152 // job termination 155 // job termination 153 delete runManager; 156 delete runManager; 154 157 155 return 0; 158 return 0; 156 } 159 } 157 160 158 //....oooOO0OOooo........oooOO0OOooo........oo 161 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 159 162