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 g3tog4/clGeometry/clGeometry.cc << 27 /// \brief Main program of the g3tog4/clGeomet << 28 // << 29 // << 30 // 26 // >> 27 // $Id: clGeometry.cc,v 1.9 2010-11-04 21:47:43 allison Exp $ >> 28 // GEANT4 tag $Name: geant4-09-04-patch-02 $ 31 // 29 // >> 30 // >> 31 >> 32 // controls whether drawing is to be Done or not >> 33 >> 34 #include <fstream> >> 35 #include <cmath> >> 36 #include "G4ios.hh" 32 37 33 // package includes 38 // package includes 34 #include "G3toG4ActionInitialization.hh" << 39 35 #include "G3toG4DetectorConstruction.hh" 40 #include "G3toG4DetectorConstruction.hh" >> 41 #include "G3toG4RunAction.hh" >> 42 #include "G3toG4PrimaryGeneratorAction.hh" >> 43 #include "G3toG4PhysicsList.hh" >> 44 #include "G3toG4EventAction.hh" >> 45 #include "G4LogicalVolume.hh" >> 46 #include "G3VolTable.hh" 36 47 37 // geant4 includes 48 // geant4 includes 38 #include "FTFP_BERT.hh" << 39 #include "G3VolTable.hh" << 40 49 41 #include "G4RunManagerFactory.hh" << 50 #include "G4RunManager.hh" 42 #include "G4UIExecutive.hh" << 43 #include "G4UImanager.hh" 51 #include "G4UImanager.hh" 44 #include "G4VisExecutive.hh" << 45 #include "G4ios.hh" << 46 << 47 //....oooOO0OOooo........oooOO0OOooo........oo << 48 52 49 namespace << 53 // visualization 50 { << 54 #ifdef G4VIS_USE 51 void PrintUsage() << 55 #include "G4VisExecutive.hh" 52 { << 56 #endif 53 G4cerr << " Usage: " << G4endl; << 54 G4cerr << "clGeometry <call_list_file> [-m m << 55 G4cerr << " note: -t option is relevant on << 56 } << 57 } // namespace << 58 57 59 //....oooOO0OOooo........oooOO0OOooo........oo << 58 // (G)UI >> 59 #ifdef G4UI_USE >> 60 #include "G4UIExecutive.hh" >> 61 #endif 60 62 61 int main(int argc, char** argv) 63 int main(int argc, char** argv) 62 { 64 { 63 // Evaluate arguments << 64 // << 65 G4cout << "argc " << argc << G4endl; << 66 if (argc < 2 || argc > 8) { << 67 PrintUsage(); << 68 return 1; << 69 } << 70 << 71 G4String inFile; 65 G4String inFile; 72 G4String macro = ""; << 66 G4String macroFile = ""; 73 G4String session; << 67 74 G4int nofThreads = 0; << 68 if (argc < 2) { 75 << 69 G4cerr << "clGeometry: Correct syntax: clGeometry <call_list_file> [ <macro_file> ]" 76 // First argument is mandatory << 70 << G4endl; 77 inFile = argv[1]; << 71 G4cerr << "If only one argument is specified, interactive mode will be " 78 G4cout << "Geometry data file: " << inFile < << 72 << "entered." << G4endl << "The second argument, if specified, is " 79 std::ifstream in(inFile); << 73 << "the name of the macro file (batch mode)." << G4endl; 80 if (!in) { << 74 81 G4cerr << "Cannot open input file \"" << i << 82 return EXIT_FAILURE; 75 return EXIT_FAILURE; 83 } 76 } 84 << 77 if (argc >= 2) { 85 // Optional arguments << 78 // Process the command line 86 for (G4int i = 2; i < argc; i = i + 2) { << 79 inFile = argv[1]; 87 G4cout << "evaluating " << argv[i] << G4en << 80 std::ifstream in(inFile); 88 if (G4String(argv[i]) == "-m") << 81 if (!in) { 89 macro = argv[i + 1]; << 82 G4cerr << "Cannot open input file \"" << inFile << "\"" << G4endl; 90 else if (G4String(argv[i]) == "-u") << 83 return EXIT_FAILURE; 91 session = argv[i + 1]; << 92 else if (G4String(argv[i]) == "-t") { << 93 nofThreads = G4UIcommand::ConvertToInt(a << 94 } 84 } 95 else { << 85 } 96 PrintUsage(); << 86 if (argc >= 3) { 97 return 1; << 87 macroFile = argv[2]; >> 88 std::ifstream mac(macroFile); >> 89 if (!mac) { >> 90 G4cout << "Cannot open macro file """ << macroFile << """" << G4endl; >> 91 return 2; 98 } 92 } 99 } 93 } 100 << 94 if (argc >= 4) { 101 // Detect interactive mode (if no macro prov << 95 G4cerr << "Too many command line arguments (" << argc <<")" << G4endl; 102 // << 96 return EXIT_FAILURE; 103 G4UIExecutive* ui = nullptr; << 104 if (!macro.size()) { << 105 ui = new G4UIExecutive(argc, argv, session << 106 } 97 } 107 << 98 108 // Construct the default run manager 99 // Construct the default run manager 109 auto* runManager = G4RunManagerFactory::Crea << 100 G4RunManager* RunManager = new G4RunManager; 110 if (nofThreads > 0) runManager->SetNumberOfT << 101 111 << 102 // set mandatory initialization classes 112 // Set mandatory initialization classes << 103 RunManager->SetUserInitialization(new G3toG4DetectorConstruction(inFile)); 113 // << 104 114 // Detector construction << 105 G3toG4PhysicsList* thePhysicsList = new G3toG4PhysicsList; 115 runManager->SetUserInitialization(new G3toG4 << 106 116 << 107 // set verbosity of PhysicsList 117 // Physics list << 108 thePhysicsList->SetVerboseLevel(2); 118 runManager->SetUserInitialization(new FTFP_B << 109 RunManager->SetUserInitialization(thePhysicsList); 119 << 110 120 // User action initialization << 111 //---------------- 121 runManager->SetUserInitialization(new G3toG4 << 112 // Visualization: 122 << 113 //---------------- 123 // Initialize visualization << 114 124 // << 115 #ifdef G4VIS_USE 125 auto visManager = new G4VisExecutive; << 116 G4VisManager* VisManager = new G4VisExecutive; 126 // G4VisExecutive can take a verbosity argum << 117 VisManager -> Initialize(); 127 // G4VisManager* visManager = new G4VisExecu << 118 #endif 128 visManager->Initialize(); << 119 129 << 120 // set user action classes 130 // Get the pointer to the User Interface man << 121 131 auto UImanager = G4UImanager::GetUIpointer() << 122 RunManager->SetUserAction(new G3toG4RunAction); 132 << 123 133 // Process macro or start UI session << 124 G3toG4EventAction* theEventAction = new G3toG4EventAction; 134 // << 125 theEventAction->SetDrawFlag("all"); 135 if (macro.size()) { << 126 RunManager->SetUserAction(theEventAction); 136 // batch mode << 127 137 G4String command = "/control/execute "; << 128 RunManager->SetUserAction(new G3toG4PrimaryGeneratorAction); 138 UImanager->ApplyCommand(command + macro); << 129 139 } << 130 // the pointer to the User Interface manager 140 else { << 131 G4UImanager* UImanager = G4UImanager::GetUIpointer(); 141 // interactive mode : define UI session << 132 142 UImanager->ApplyCommand("/control/execute << 133 // set some additional defaults and initial actions >> 134 >> 135 UImanager->ApplyCommand("/control/verbose 1"); >> 136 UImanager->ApplyCommand("/run/verbose 1"); >> 137 UImanager->ApplyCommand("/tracking/verbose 1"); >> 138 UImanager->ApplyCommand("/tracking/storeTrajectory 1"); >> 139 UImanager->ApplyCommand("/run/initialize"); >> 140 >> 141 G4bool batch_mode = macroFile != ""; >> 142 >> 143 if(!batch_mode) { >> 144 #ifdef G4UI_USE >> 145 G4UIExecutive* ui = new G4UIExecutive(argc, argv); >> 146 #ifdef G4VIS_USE >> 147 UImanager->ApplyCommand("/control/execute vis.mac"); >> 148 #endif 143 ui->SessionStart(); 149 ui->SessionStart(); 144 delete ui; 150 delete ui; >> 151 #endif >> 152 } else { >> 153 // Batch mode >> 154 G4String command = "/control/execute "; >> 155 UImanager->ApplyCommand(command+macroFile); 145 } 156 } 146 << 157 #ifdef G4VIS_USE 147 // Job termination << 158 delete VisManager; 148 // Free the store: user actions, physics_lis << 159 #endif 149 // owned and deleted by the run manager, so << 160 delete RunManager; 150 // in the main() program ! << 161 return EXIT_SUCCESS; 151 << 152 delete visManager; << 153 delete runManager; << 154 } 162 } 155 163