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 OpNovice/OpNovice.cc 26 /// \file OpNovice/OpNovice.cc 27 /// \brief Main program of the OpNovice exampl 27 /// \brief Main program of the OpNovice example 28 // 28 // 29 // 29 // 30 // 30 // 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 33 // 33 // 34 // Description: Test of Continuous Process G4C 34 // Description: Test of Continuous Process G4Cerenkov 35 // and RestDiscrete Process G4Sci 35 // and RestDiscrete Process G4Scintillation 36 // -- Generation Cerenkov Photons 36 // -- Generation Cerenkov Photons -- 37 // -- Generation Scintillation Ph 37 // -- Generation Scintillation Photons -- 38 // -- Transport of optical Photon 38 // -- Transport of optical Photons -- 39 // Version: 5.0 39 // Version: 5.0 40 // Created: 1996-04-30 40 // Created: 1996-04-30 41 // Author: Juliet Armstrong 41 // Author: Juliet Armstrong 42 // 42 // 43 //....oooOO0OOooo........oooOO0OOooo........oo 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 44 44 45 #include "OpNoviceDetectorConstruction.hh" 45 #include "OpNoviceDetectorConstruction.hh" 46 #ifdef GEANT4_USE_GDML 46 #ifdef GEANT4_USE_GDML 47 # include "OpNoviceGDMLDetectorConstruction.h 47 # include "OpNoviceGDMLDetectorConstruction.hh" 48 #endif 48 #endif 49 #include "FTFP_BERT.hh" << 50 #include "OpNoviceActionInitialization.hh" 49 #include "OpNoviceActionInitialization.hh" 51 << 50 #include "FTFP_BERT.hh" 52 #include "G4EmStandardPhysics_option4.hh" 51 #include "G4EmStandardPhysics_option4.hh" 53 #include "G4OpticalPhysics.hh" 52 #include "G4OpticalPhysics.hh" 54 #include "G4RunManagerFactory.hh" 53 #include "G4RunManagerFactory.hh" 55 #include "G4Types.hh" 54 #include "G4Types.hh" 56 #include "G4UIExecutive.hh" 55 #include "G4UIExecutive.hh" 57 #include "G4UImanager.hh" 56 #include "G4UImanager.hh" 58 #include "G4VisExecutive.hh" 57 #include "G4VisExecutive.hh" 59 58 60 //....oooOO0OOooo........oooOO0OOooo........oo 59 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 61 namespace 60 namespace 62 { 61 { 63 void PrintUsage() << 62 void PrintUsage() 64 { << 63 { 65 G4cerr << " Usage: " << G4endl; << 64 G4cerr << " Usage: " << G4endl; 66 #ifdef GEANT4_USE_GDML 65 #ifdef GEANT4_USE_GDML 67 G4cerr << " OpNovice [-g gdmlfile] [-m macro << 66 G4cerr << " OpNovice [-g gdmlfile] [-m macro ] [-u UIsession] [-t " 68 "nThreads] [-r seed] " << 67 "nThreads] [-r seed] " 69 << G4endl; << 68 << G4endl; 70 #else 69 #else 71 G4cerr << " OpNovice [-m macro ] [-u UIsess << 70 G4cerr << " OpNovice [-m macro ] [-u UIsession] [-t nThreads] [-r seed] " >> 71 << G4endl; 72 #endif 72 #endif 73 G4cerr << " note: -t option is available o << 73 G4cerr << " note: -t option is available only for multi-threaded mode." 74 } << 74 << G4endl; >> 75 } 75 } // namespace 76 } // namespace 76 77 77 //....oooOO0OOooo........oooOO0OOooo........oo 78 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 78 79 79 int main(int argc, char** argv) 80 int main(int argc, char** argv) 80 { 81 { 81 // Evaluate arguments 82 // Evaluate arguments 82 // 83 // 83 if (argc > 9) { << 84 if(argc > 9) >> 85 { 84 PrintUsage(); 86 PrintUsage(); 85 return 1; 87 return 1; 86 } 88 } 87 G4String gdmlfile; << 89 G4String gdmlfile = ""; 88 G4String macro; 90 G4String macro; 89 G4String session; 91 G4String session; 90 #ifdef G4MULTITHREADED 92 #ifdef G4MULTITHREADED 91 G4int nThreads = 0; 93 G4int nThreads = 0; 92 #endif 94 #endif 93 95 94 G4long myseed = 345354; 96 G4long myseed = 345354; 95 for (G4int i = 1; i < argc; i = i + 2) { << 97 for(G4int i = 1; i < argc; i = i + 2) 96 if (G4String(argv[i]) == "-g") << 98 { >> 99 if(G4String(argv[i]) == "-g") 97 gdmlfile = argv[i + 1]; 100 gdmlfile = argv[i + 1]; 98 else if (G4String(argv[i]) == "-m") << 101 else if(G4String(argv[i]) == "-m") 99 macro = argv[i + 1]; 102 macro = argv[i + 1]; 100 else if (G4String(argv[i]) == "-u") << 103 else if(G4String(argv[i]) == "-u") 101 session = argv[i + 1]; 104 session = argv[i + 1]; 102 else if (G4String(argv[i]) == "-r") << 105 else if(G4String(argv[i]) == "-r") 103 myseed = atoi(argv[i + 1]); 106 myseed = atoi(argv[i + 1]); 104 #ifdef G4MULTITHREADED 107 #ifdef G4MULTITHREADED 105 else if (G4String(argv[i]) == "-t") { << 108 else if(G4String(argv[i]) == "-t") >> 109 { 106 nThreads = G4UIcommand::ConvertToInt(arg 110 nThreads = G4UIcommand::ConvertToInt(argv[i + 1]); 107 } 111 } 108 #endif 112 #endif 109 else { << 113 else >> 114 { 110 PrintUsage(); 115 PrintUsage(); 111 return 1; 116 return 1; 112 } 117 } 113 } 118 } 114 119 115 // Instantiate G4UIExecutive if interactive 120 // Instantiate G4UIExecutive if interactive mode 116 G4UIExecutive* ui = nullptr; 121 G4UIExecutive* ui = nullptr; 117 if (macro.size() == 0) { << 122 if(macro.size() == 0) >> 123 { 118 ui = new G4UIExecutive(argc, argv); 124 ui = new G4UIExecutive(argc, argv); 119 } 125 } 120 126 121 // Construct the default run manager 127 // Construct the default run manager 122 auto runManager = G4RunManagerFactory::Creat 128 auto runManager = G4RunManagerFactory::CreateRunManager(); 123 #ifdef G4MULTITHREADED 129 #ifdef G4MULTITHREADED 124 if (nThreads > 0) runManager->SetNumberOfThr << 130 if(nThreads > 0) >> 131 runManager->SetNumberOfThreads(nThreads); 125 #endif 132 #endif 126 133 127 // Seed the random number generator manually 134 // Seed the random number generator manually 128 G4Random::setTheSeed(myseed); 135 G4Random::setTheSeed(myseed); 129 136 130 // Set mandatory initialization classes 137 // Set mandatory initialization classes 131 // 138 // 132 // Detector construction 139 // Detector construction 133 if (gdmlfile != "") { << 140 if(gdmlfile != "") >> 141 { 134 #ifdef GEANT4_USE_GDML 142 #ifdef GEANT4_USE_GDML 135 runManager->SetUserInitialization(new OpNo << 143 runManager->SetUserInitialization( >> 144 new OpNoviceGDMLDetectorConstruction(gdmlfile)); 136 #else 145 #else 137 G4cout << "Error! Input gdml file specifie 146 G4cout << "Error! Input gdml file specified, but Geant4 wasn't" << G4endl 138 << "built with gdml support." << G4 147 << "built with gdml support." << G4endl; 139 return 1; 148 return 1; 140 #endif 149 #endif 141 } 150 } 142 else { << 151 else >> 152 { 143 runManager->SetUserInitialization(new OpNo 153 runManager->SetUserInitialization(new OpNoviceDetectorConstruction()); 144 } 154 } 145 // Physics list 155 // Physics list 146 G4VModularPhysicsList* physicsList = new FTF 156 G4VModularPhysicsList* physicsList = new FTFP_BERT; 147 physicsList->ReplacePhysics(new G4EmStandard 157 physicsList->ReplacePhysics(new G4EmStandardPhysics_option4()); 148 auto opticalPhysics = new G4OpticalPhysics() << 158 G4OpticalPhysics* opticalPhysics = new G4OpticalPhysics(); 149 physicsList->RegisterPhysics(opticalPhysics) 159 physicsList->RegisterPhysics(opticalPhysics); 150 runManager->SetUserInitialization(physicsLis 160 runManager->SetUserInitialization(physicsList); 151 161 152 runManager->SetUserInitialization(new OpNovi 162 runManager->SetUserInitialization(new OpNoviceActionInitialization()); 153 163 154 G4VisManager* visManager = new G4VisExecutiv 164 G4VisManager* visManager = new G4VisExecutive("Quiet"); 155 visManager->Initialize(); 165 visManager->Initialize(); 156 166 157 G4UImanager* UImanager = G4UImanager::GetUIp 167 G4UImanager* UImanager = G4UImanager::GetUIpointer(); 158 168 159 if (macro.size()) { << 169 if(macro.size()) >> 170 { 160 G4String command = "/control/execute "; 171 G4String command = "/control/execute "; 161 UImanager->ApplyCommand(command + macro); 172 UImanager->ApplyCommand(command + macro); 162 } 173 } 163 else // Define UI session for interactive m 174 else // Define UI session for interactive mode 164 { 175 { 165 UImanager->ApplyCommand("/control/execute 176 UImanager->ApplyCommand("/control/execute vis.mac"); 166 if (ui->IsGUI()) UImanager->ApplyCommand(" << 177 if(ui->IsGUI()) >> 178 UImanager->ApplyCommand("/control/execute gui.mac"); 167 ui->SessionStart(); 179 ui->SessionStart(); 168 delete ui; 180 delete ui; 169 } 181 } 170 182 171 delete visManager; 183 delete visManager; 172 delete runManager; 184 delete runManager; 173 185 174 return 0; 186 return 0; 175 } 187 } 176 188 177 //....oooOO0OOooo........oooOO0OOooo........oo 189 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 178 190