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 // This example is provided by the Geant4-DNA 26 // This example is provided by the Geant4-DNA collaboration 27 // Any report or published results obtained us 27 // Any report or published results obtained using the Geant4-DNA software 28 // shall cite the following Geant4-DNA collabo 28 // shall cite the following Geant4-DNA collaboration publication: 29 // Med. Phys. 37 (2010) 4692-4708 29 // Med. Phys. 37 (2010) 4692-4708 30 // J. Comput. Phys. 274 (2014) 841-882 30 // J. Comput. Phys. 274 (2014) 841-882 31 // The Geant4-DNA web site is available at htt 31 // The Geant4-DNA web site is available at http://geant4-dna.org 32 // 32 // >> 33 // $Id$ 33 // 34 // 34 /// \file chem3.cc 35 /// \file chem3.cc 35 /// \brief Chem3 example 36 /// \brief Chem3 example 36 37 37 #include "ActionInitialization.hh" << 38 #include "DetectorConstruction.hh" 38 #include "DetectorConstruction.hh" 39 #include "PhysicsList.hh" 39 #include "PhysicsList.hh" >> 40 #include "ActionInitialization.hh" >> 41 >> 42 #ifdef G4MULTITHREADED >> 43 #include "G4MTRunManager.hh" >> 44 #else >> 45 #include "G4RunManager.hh" >> 46 #endif 40 47 41 #include "G4DNAChemistryManager.hh" 48 #include "G4DNAChemistryManager.hh" 42 #include "G4RunManagerFactory.hh" << 43 #include "G4UIExecutive.hh" << 44 #include "G4UImanager.hh" 49 #include "G4UImanager.hh" >> 50 #include "G4UIExecutive.hh" 45 #include "G4VisExecutive.hh" 51 #include "G4VisExecutive.hh" 46 #ifdef G4UI_USE_QT 52 #ifdef G4UI_USE_QT 47 # include "G4UIQt.hh" << 53 #include "G4UIQt.hh" 48 #endif 54 #endif 49 #include "CommandLineParser.hh" 55 #include "CommandLineParser.hh" 50 56 51 //....oooOO0OOooo........oooOO0OOooo........oo 57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 52 58 53 /* 59 /* 54 * WARNING : Geant4 was initially not intended 60 * WARNING : Geant4 was initially not intended for this kind of application 55 * This code is delivered as a prototype 61 * This code is delivered as a prototype 56 * We will be happy to hear from you, do not h 62 * We will be happy to hear from you, do not hesitate to send your feedback and 57 * communicate on the difficulties you may enc 63 * communicate on the difficulties you may encounter 58 * The user interface may change in the next r 64 * The user interface may change in the next releases since a reiteration of the 59 * code has started 65 * code has started 60 */ 66 */ 61 67 62 using namespace G4DNAPARSER; 68 using namespace G4DNAPARSER; 63 CommandLineParser* parser(0); 69 CommandLineParser* parser(0); 64 70 65 void Parse(int& argc, char** argv); 71 void Parse(int& argc, char** argv); 66 72 67 int main(int argc, char** argv) 73 int main(int argc, char** argv) 68 { 74 { 69 ////////// 75 ////////// 70 // Parse options given in commandLine 76 // Parse options given in commandLine 71 // 77 // 72 Parse(argc, argv); 78 Parse(argc, argv); 73 79 74 ////////// 80 ////////// 75 // Construct the run manager according to wh 81 // Construct the run manager according to whether MT is activated or not 76 // 82 // 77 Command* commandLine(0); 83 Command* commandLine(0); 78 84 79 auto* runManager = G4RunManagerFactory::Crea << 85 #ifdef G4MULTITHREADED 80 << 86 G4RunManager* runManager(0); 81 if ((commandLine = parser->GetCommandIfActiv << 87 if ((commandLine = parser->GetCommandIfActive("-mt"))) >> 88 { >> 89 runManager = new G4MTRunManager; 82 int nThreads = 2; 90 int nThreads = 2; 83 const G4String& option = commandLine->GetO 91 const G4String& option = commandLine->GetOption(); 84 if (option == "") { << 92 if(option == "") >> 93 { 85 nThreads = G4UIcommand::ConvertToInt(com 94 nThreads = G4UIcommand::ConvertToInt(commandLine->GetDefaultOption()); 86 } 95 } 87 else if (option == "NMAX") { << 96 else if(option == "NMAX") 88 nThreads = G4Threading::G4GetNumberOfCor << 97 { >> 98 nThreads = G4Threading::G4GetNumberOfCores(); 89 } 99 } 90 else { << 100 else >> 101 { 91 nThreads = G4UIcommand::ConvertToInt(opt 102 nThreads = G4UIcommand::ConvertToInt(option); 92 } 103 } 93 104 94 runManager->SetNumberOfThreads(nThreads); << 105 G4cout << "===== Chem3 is started with " >> 106 << ((G4MTRunManager*) runManager)->GetNumberOfThreads() >> 107 << " threads =====" << G4endl; 95 108 96 G4cout << "===== Chem3 is started with " < << 109 ((G4MTRunManager*) runManager)->SetNumberOfThreads(nThreads); 97 << " threads =====" << G4endl; << 98 } 110 } >> 111 else >> 112 { >> 113 runManager = new G4RunManager(); >> 114 } >> 115 #else >> 116 G4RunManager* runManager = new G4RunManager(); >> 117 #endif 99 118 100 ////////// 119 ////////// 101 // Set mandatory user initialization classes 120 // Set mandatory user initialization classes 102 // 121 // 103 DetectorConstruction* detector = new Detecto 122 DetectorConstruction* detector = new DetectorConstruction; 104 runManager->SetUserInitialization(new Physic 123 runManager->SetUserInitialization(new PhysicsList); 105 runManager->SetUserInitialization(detector); 124 runManager->SetUserInitialization(detector); 106 runManager->SetUserInitialization(new Action 125 runManager->SetUserInitialization(new ActionInitialization()); 107 126 108 // Initialize G4 kernel 127 // Initialize G4 kernel 109 runManager->Initialize(); 128 runManager->Initialize(); 110 129 111 // Initialize visualization 130 // Initialize visualization 112 G4VisManager* visManager = new G4VisExecutiv 131 G4VisManager* visManager = new G4VisExecutive; 113 // G4VisExecutive can take a verbosity argum 132 // G4VisExecutive can take a verbosity argument - see /vis/verbose guidance. 114 // G4VisManager* visManager = new G4VisExecu 133 // G4VisManager* visManager = new G4VisExecutive("Quiet"); 115 visManager->Initialize(); 134 visManager->Initialize(); 116 135 117 // Get the pointer to the User Interface man 136 // Get the pointer to the User Interface manager 118 G4UImanager* UImanager = G4UImanager::GetUIp 137 G4UImanager* UImanager = G4UImanager::GetUIpointer(); 119 G4UIExecutive* ui(0); 138 G4UIExecutive* ui(0); 120 139 121 // interactive mode : define UI session 140 // interactive mode : define UI session 122 if ((commandLine = parser->GetCommandIfActiv << 141 if ((commandLine = parser->GetCommandIfActive("-gui"))) >> 142 { 123 ui = new G4UIExecutive(argc, argv, command 143 ui = new G4UIExecutive(argc, argv, commandLine->GetOption()); 124 144 125 if (parser->GetCommandIfActive("-novis") = 145 if (parser->GetCommandIfActive("-novis") == 0) 126 // visualization is used by default 146 // visualization is used by default 127 { 147 { 128 if ((commandLine = parser->GetCommandIfA 148 if ((commandLine = parser->GetCommandIfActive("-vis"))) 129 // select a visualization driver if need 149 // select a visualization driver if needed (e.g. HepFile) 130 { 150 { 131 UImanager->ApplyCommand(G4String("/vis << 151 UImanager->ApplyCommand( >> 152 G4String("/vis/open ") + commandLine->GetOption()); 132 } 153 } 133 else 154 else 134 // by default OGL is used 155 // by default OGL is used 135 { 156 { 136 UImanager->ApplyCommand("/vis/open OGL 157 UImanager->ApplyCommand("/vis/open OGL 800x600-0+0"); 137 } 158 } 138 UImanager->ApplyCommand("/control/execut 159 UImanager->ApplyCommand("/control/execute vis.mac"); 139 } 160 } 140 161 141 if (ui->IsGUI()) UImanager->ApplyCommand(" 162 if (ui->IsGUI()) UImanager->ApplyCommand("/control/execute gui.mac"); 142 } 163 } 143 else 164 else 144 // to be use visualization file (= store the 165 // to be use visualization file (= store the visualization into 145 // an external file: 166 // an external file: 146 // ASCIITree ; DAWNFILE ; HepRepFile ; VRML 167 // ASCIITree ; DAWNFILE ; HepRepFile ; VRML(1,2)FILE ; gMocrenFile ... 147 { 168 { 148 if ((commandLine = parser->GetCommandIfAct << 169 if ((commandLine = parser->GetCommandIfActive("-vis"))) 149 UImanager->ApplyCommand(G4String("/vis/o << 170 { >> 171 UImanager->ApplyCommand( >> 172 G4String("/vis/open ") + commandLine->GetOption()); 150 UImanager->ApplyCommand("/control/execut 173 UImanager->ApplyCommand("/control/execute vis.mac"); 151 } 174 } 152 } 175 } 153 176 154 if ((commandLine = parser->GetCommandIfActiv << 177 if ((commandLine = parser->GetCommandIfActive("-mac"))) >> 178 { 155 G4String command = "/control/execute "; 179 G4String command = "/control/execute "; 156 UImanager->ApplyCommand(command + commandL 180 UImanager->ApplyCommand(command + commandLine->GetOption()); 157 } 181 } 158 else { << 182 else >> 183 { 159 UImanager->ApplyCommand("/control/execute 184 UImanager->ApplyCommand("/control/execute beam.in"); 160 } 185 } 161 186 162 if ((commandLine = parser->GetCommandIfActiv << 187 if ((commandLine = parser->GetCommandIfActive("-gui"))) >> 188 { 163 #ifdef G4UI_USE_QT 189 #ifdef G4UI_USE_QT 164 G4UIQt* UIQt = static_cast<G4UIQt*>(UImana << 190 G4UIQt* UIQt = static_cast<G4UIQt*> (UImanager->GetG4UIWindow()); 165 if (UIQt) { << 191 if ( UIQt) { 166 UIQt->AddViewerTabFromFile("README", "RE << 192 UIQt->AddViewerTabFromFile("README", "README from "+ G4String(argv[0])); 167 } 193 } 168 #endif 194 #endif 169 ui->SessionStart(); 195 ui->SessionStart(); 170 delete ui; 196 delete ui; 171 } 197 } 172 198 173 // Job termination 199 // Job termination 174 // Free the store: user actions, physics_lis 200 // Free the store: user actions, physics_list and detector_description are 175 // owned and deleted by the run manager, so 201 // owned and deleted by the run manager, so they should not be deleted 176 // in the main() program ! 202 // in the main() program ! 177 203 178 delete visManager; 204 delete visManager; 179 delete runManager; 205 delete runManager; 180 206 181 CommandLineParser::DeleteInstance(); 207 CommandLineParser::DeleteInstance(); 182 208 183 return 0; 209 return 0; 184 } 210 } 185 211 186 void Parse(int& argc, char** argv) 212 void Parse(int& argc, char** argv) 187 { 213 { 188 ////////// 214 ////////// 189 // Parse options given in commandLine 215 // Parse options given in commandLine 190 // 216 // 191 parser = CommandLineParser::GetParser(); 217 parser = CommandLineParser::GetParser(); 192 218 193 parser->AddCommand("-gui", Command::OptionNo << 219 parser->AddCommand( 194 "Select geant4 UI or just << 220 "-gui", Command::OptionNotCompulsory, 195 << 221 "Select geant4 UI or just launch a geant4 terminal session", "qt"); 196 parser->AddCommand("-mac", Command::WithOpti << 222 197 << 223 parser->AddCommand("-mac", Command::WithOption, "Give a mac file to execute", 198 // You cann your own command, as for instanc << 224 "macFile.mac"); 199 // parser->AddCommand("-seed", << 225 200 // Command::WithOption, << 226 // You cann your own command, as for instance: 201 // "Give a seed value in << 227 // parser->AddCommand("-seed", 202 // it is then up to you to manage this optio << 228 // Command::WithOption, >> 229 // "Give a seed value in argument to be tested", "seed"); >> 230 // it is then up to you to manage this option 203 231 >> 232 #ifdef G4MULTITHREADED 204 parser->AddCommand("-mt", Command::OptionNot 233 parser->AddCommand("-mt", Command::OptionNotCompulsory, 205 "Launch in MT mode if ava << 234 "Launch in MT mode (events computed in parallel," 206 " NOT RECOMMENDED WITH CH << 235 " NOT RECOMMANDED WITH CHEMISTRY)", 207 "2"); 236 "2"); >> 237 #endif 208 238 209 parser->AddCommand("-chemOFF", Command::With << 239 parser->AddCommand("-chemOFF", Command::WithoutOption, >> 240 "Deactivate chemistry"); 210 241 211 parser->AddCommand("-vis", Command::WithOpti << 242 parser->AddCommand("-vis", Command::WithOption, 212 "OGL 600x600-0+0"); << 243 "Select a visualization driver", "OGL 600x600-0+0"); 213 244 214 parser->AddCommand("-novis", Command::Withou << 245 parser->AddCommand("-novis", Command::WithoutOption, >> 246 "Deactivate visualization when using GUI"); 215 247 216 ////////// 248 ////////// 217 // If -h or --help is given in option : prin 249 // If -h or --help is given in option : print help and exit 218 // 250 // 219 if (parser->Parse(argc, argv) != 0) // help << 251 if (parser->Parse(argc, argv) != 0) // help is being printed 220 { 252 { 221 // if you are using ROOT, create a TApplic 253 // if you are using ROOT, create a TApplication in this condition in order 222 // to print the help from ROOT as well 254 // to print the help from ROOT as well 223 CommandLineParser::DeleteInstance(); 255 CommandLineParser::DeleteInstance(); 224 std::exit(0); 256 std::exit(0); 225 } 257 } 226 258 227 /////////// 259 /////////// 228 // Kill application if wrong argument in com 260 // Kill application if wrong argument in command line 229 // 261 // 230 if (parser->CheckIfNotHandledOptionsExists(a << 262 if (parser->CheckIfNotHandledOptionsExists(argc, argv)) >> 263 { 231 // if you are using ROOT, you should initi 264 // if you are using ROOT, you should initialise your TApplication 232 // before this condition 265 // before this condition 233 abort(); 266 abort(); 234 } 267 } 235 } 268 } 236 269