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 runAndEvent/RE04/RE04.cc 26 /// \file runAndEvent/RE04/RE04.cc 27 /// \brief Main program of the runAndEvent/RE0 27 /// \brief Main program of the runAndEvent/RE04 example 28 // 28 // >> 29 // $Id: $ 29 // 30 // 30 #include "FTFP_BERT.hh" << 31 #ifdef G4MULTITHREADED >> 32 #include "G4MTRunManager.hh" >> 33 #else >> 34 #include "G4RunManager.hh" >> 35 #endif >> 36 #include "G4ScoringManager.hh" >> 37 #include "G4UImanager.hh" >> 38 >> 39 #ifdef G4VIS_USE >> 40 #include "G4VisExecutive.hh" >> 41 #endif >> 42 >> 43 #ifdef G4UI_USE >> 44 #include "G4UIExecutive.hh" >> 45 #endif >> 46 31 #include "RE04ActionInitialization.hh" 47 #include "RE04ActionInitialization.hh" 32 #include "RE04DetectorConstruction.hh" 48 #include "RE04DetectorConstruction.hh" 33 #include "RE04ParallelWorldConstruction.hh" 49 #include "RE04ParallelWorldConstruction.hh" 34 50 >> 51 #include "FTFP_BERT.hh" 35 #include "G4ParallelWorldPhysics.hh" 52 #include "G4ParallelWorldPhysics.hh" 36 #include "G4RunManagerFactory.hh" << 37 #include "G4ScoringManager.hh" << 38 #include "G4Types.hh" << 39 #include "G4UIExecutive.hh" << 40 #include "G4UImanager.hh" << 41 #include "G4VisExecutive.hh" << 42 53 43 int main(int argc, char** argv) << 54 int main(int argc,char** argv) 44 { 55 { 45 // Instantiate G4UIExecutive if there are no << 56 // Construct the run manager 46 G4UIExecutive* ui = nullptr; << 57 // 47 if (argc == 1) { << 58 #ifdef G4MULTITHREADED 48 ui = new G4UIExecutive(argc, argv); << 59 G4MTRunManager * runManager = new G4MTRunManager; 49 } << 60 //runManager->SetNumberOfThreads(4); 50 << 61 #else 51 // Construct the run manager << 62 G4RunManager * runManager = new G4RunManager; 52 auto* runManager = G4RunManagerFactory::Crea << 63 #endif 53 << 64 54 G4ScoringManager::GetScoringManager(); << 65 G4ScoringManager::GetScoringManager(); 55 << 66 56 G4String paraWorldName = "ParallelWorld"; << 67 G4String paraWorldName = "ParallelWorld"; 57 << 68 58 // Set mandatory initialization classes << 69 // Set mandatory initialization classes 59 // << 70 // 60 RE04DetectorConstruction* realWorld = new RE << 71 RE04DetectorConstruction* realWorld = new RE04DetectorConstruction; 61 RE04ParallelWorldConstruction* parallelWorld << 72 RE04ParallelWorldConstruction* parallelWorld 62 realWorld->RegisterParallelWorld(parallelWor << 73 = new RE04ParallelWorldConstruction(paraWorldName); 63 runManager->SetUserInitialization(realWorld) << 74 realWorld->RegisterParallelWorld(parallelWorld); 64 // << 75 runManager->SetUserInitialization(realWorld); 65 G4VModularPhysicsList* physicsList = new FTF << 76 // 66 physicsList->RegisterPhysics(new G4ParallelW << 77 G4VModularPhysicsList* physicsList = new FTFP_BERT; 67 runManager->SetUserInitialization(physicsLis << 78 physicsList->RegisterPhysics 68 << 79 (new G4ParallelWorldPhysics(paraWorldName,true)); 69 // Set user action classes << 80 runManager->SetUserInitialization(physicsList); 70 // << 81 71 runManager->SetUserInitialization(new RE04Ac << 82 // Set user action classes 72 << 83 // 73 // Visualization manager << 84 runManager->SetUserInitialization(new RE04ActionInitialization); 74 // << 85 75 G4VisManager* visManager = new G4VisExecutiv << 86 #ifdef G4VIS_USE 76 visManager->Initialize(); << 87 // Visualization manager 77 << 88 // 78 // Initialize G4 kernel << 89 G4VisManager* visManager = new G4VisExecutive; 79 // << 90 visManager->Initialize(); 80 runManager->Initialize(); << 91 #endif 81 << 92 82 // Get the pointer to the User Interface man << 93 // Initialize G4 kernel 83 // << 94 // 84 G4UImanager* pUImanager = G4UImanager::GetUI << 95 runManager->Initialize(); 85 << 96 86 if (ui) // Define UI session for interactiv << 97 // Get the pointer to the User Interface manager 87 { << 98 // 88 pUImanager->ApplyCommand("/control/execute << 99 G4UImanager* pUImanager = G4UImanager::GetUIpointer(); 89 ui->SessionStart(); << 100 90 delete ui; << 101 if (argc==1) // Define UI session for interactive mode 91 } << 102 { 92 else // Batch mode << 103 #ifdef G4UI_USE 93 { << 104 G4UIExecutive * ui = new G4UIExecutive(argc,argv); 94 G4String command = "/control/execute "; << 105 #ifdef G4VIS_USE 95 G4String fileName = argv[1]; << 106 pUImanager->ApplyCommand("/control/execute vis.mac"); 96 pUImanager->ApplyCommand(command + fileNam << 107 #endif 97 } << 108 ui->SessionStart(); 98 << 109 delete ui; 99 delete visManager; << 110 #endif 100 delete runManager; << 111 } >> 112 else // Batch mode >> 113 { >> 114 G4String command = "/control/execute "; >> 115 G4String fileName = argv[1]; >> 116 pUImanager->ApplyCommand(command+fileName); >> 117 } >> 118 >> 119 #ifdef G4VIS_USE >> 120 delete visManager; >> 121 #endif >> 122 delete runManager; 101 123 102 return 0; << 124 return 0; 103 } 125 } 104 126