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