Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // 23 // >> 24 // $Id: GammaRayTel.cc,v 1.13 2005/06/03 13:26:15 flongo Exp $ >> 25 // GEANT4 tag $Name: geant4-07-01 $ >> 26 // >> 27 // 27 // ------------------------------------------- 28 // ------------------------------------------------------------ 28 // GEANT 4 main program 29 // GEANT 4 main program 29 // CERN Geneva Switzerland 30 // CERN Geneva Switzerland 30 // 31 // 31 // 32 // 32 // ------------ GammaRayTel example main 33 // ------------ GammaRayTel example main program ------ 33 // by F.Longo, R.Giannitrapani & G.S 34 // by F.Longo, R.Giannitrapani & G.Santin (29 nov 2000) 34 // See README file for details on th << 35 // See README file for details on this example 35 // 20.11.01 G.Santin: new analysis management << 36 // 20.11.01 G.Santin: new analysis management, and some modification in the 36 // construction of some Ac 37 // construction of some Action's 37 // ******************************************* 38 // ************************************************************ 38 39 39 #include "G4Types.hh" << 40 #include "G4RunManager.hh" 40 #include "G4RunManagerFactory.hh" << 41 #include "G4UImanager.hh" 41 #include "G4UImanager.hh" >> 42 #include "G4UIterminal.hh" >> 43 #include "G4UItcsh.hh" >> 44 >> 45 #ifdef G4UI_USE_XM >> 46 #include "G4UIXm.hh" >> 47 #endif >> 48 >> 49 #ifdef G4VIS_USE 42 #include "G4VisExecutive.hh" 50 #include "G4VisExecutive.hh" 43 #include "G4UIExecutive.hh" << 51 #endif 44 52 45 #include "GammaRayTelActionInitializer.hh" << 46 #include "GammaRayTelAnalysis.hh" << 47 #include "GammaRayTelDetectorConstruction.hh" 53 #include "GammaRayTelDetectorConstruction.hh" 48 #include "GammaRayTelPhysicsList.hh" 54 #include "GammaRayTelPhysicsList.hh" >> 55 #include "GammaRayTelPrimaryGeneratorAction.hh" >> 56 #include "GammaRayTelRunAction.hh" >> 57 #include "GammaRayTelEventAction.hh" 49 58 50 // #include "QGSP_BIC.hh" << 59 #ifdef G4ANALYSIS_USE 51 #include "FTFP_BERT.hh" << 60 #include "GammaRayTelAnalysis.hh" >> 61 #endif 52 62 53 // This is the main function << 54 auto main(int argc, char **argv) -> int { << 55 // Construct the default run manager << 56 auto *runManager = G4RunManagerFactory::Cr << 57 constexpr auto NUMBER_OF_THREADS{4}; << 58 runManager->SetNumberOfThreads(NUMBER_OF_T << 59 << 60 // Set mandatory user initialization class << 61 auto *detector = new GammaRayTelDetectorCo << 62 runManager->SetUserInitialization(detector << 63 runManager->SetUserInitialization(new Gamm << 64 // runManager->SetUserInitialization(new Q << 65 // runManager->SetUserInitialization(new F << 66 << 67 // Initialize actions << 68 runManager->SetUserInitialization(new Gamm << 69 << 70 // Creation of the analysis manager << 71 auto *analysis = GammaRayTelAnalysis::getI << 72 << 73 // Set visualization and user interface << 74 // Visualization manager << 75 G4VisManager *visManager = new G4VisExecut << 76 visManager->Initialize(); << 77 << 78 // Initialize G4 kernel << 79 // runManager->Initialize(); << 80 << 81 // Get the pointer to the UI manager << 82 auto *uiManager = G4UImanager::GetUIpointe << 83 << 84 if (argc == 1) { // Define UI session for << 85 auto *ui = new G4UIExecutive(argc, arg << 86 G4cout << " UI session starts ..." << << 87 uiManager->ApplyCommand("/control/exec << 88 ui->SessionStart(); << 89 delete ui; << 90 } else { // batch mode << 91 G4String command = "/control/execute " << 92 G4String fileName = argv[1]; << 93 uiManager->ApplyCommand(command + file << 94 } << 95 63 96 // Job termination << 64 /* This global file is used to store relevant data for 97 delete visManager; << 65 analysis with external tools */ 98 delete analysis; << 66 std::ofstream outFile; 99 delete runManager; << 67 >> 68 // This is the main function >> 69 int main(int argc, char** argv) >> 70 { >> 71 // Construct the default run manager >> 72 G4RunManager* runManager = new G4RunManager; >> 73 >> 74 // Set mandatory user initialization classes >> 75 GammaRayTelDetectorConstruction* detector = >> 76 new GammaRayTelDetectorConstruction; >> 77 runManager->SetUserInitialization(detector); >> 78 runManager->SetUserInitialization(new GammaRayTelPhysicsList); >> 79 >> 80 // Set mandatory user action classes >> 81 runManager->SetUserAction(new GammaRayTelPrimaryGeneratorAction); >> 82 >> 83 >> 84 #ifdef G4ANALYSIS_USE >> 85 // Creation of the analysis manager >> 86 GammaRayTelAnalysis* analysis = GammaRayTelAnalysis::getInstance(); >> 87 #endif >> 88 >> 89 // Set optional user action classes >> 90 GammaRayTelEventAction* eventAction = new GammaRayTelEventAction(); >> 91 GammaRayTelRunAction* runAction = new GammaRayTelRunAction(); >> 92 runManager->SetUserAction(eventAction); >> 93 runManager->SetUserAction(runAction); >> 94 >> 95 // Set visualization and user interface >> 96 // Initialization of the User Interface Session >> 97 G4UIsession* session=0; >> 98 #ifdef G4UI_USE_XM >> 99 // Create a XMotif user interface >> 100 session = new G4UIXm(argc,argv); >> 101 #else >> 102 #ifdef G4UI_USE_TCSH >> 103 session = new G4UIterminal(new G4UItcsh); >> 104 #else >> 105 // Create the standard user interface >> 106 session = new G4UIterminal(); >> 107 #endif >> 108 #endif >> 109 >> 110 #ifdef G4VIS_USE >> 111 // Visualization manager >> 112 G4VisManager* visManager = new G4VisExecutive; >> 113 visManager->Initialize(); >> 114 #endif >> 115 >> 116 // Initialize G4 kernel >> 117 runManager->Initialize(); >> 118 >> 119 // Get the pointer to the UI manager >> 120 G4UImanager* UI = G4UImanager::GetUIpointer(); >> 121 >> 122 if (session) >> 123 { >> 124 /* prerunGammaRayTel.mac is loaded by default >> 125 unless a macro file is passed as the argument >> 126 of the executable */ >> 127 >> 128 if(argc>1) >> 129 { >> 130 G4String command = "/control/execute "; >> 131 for (int i=2; i<=argc; i++) >> 132 { >> 133 G4String macroFileName = argv[i-1]; >> 134 UI->ApplyCommand(command+macroFileName); >> 135 } >> 136 } >> 137 else >> 138 { >> 139 UI->ApplyCommand("/control/execute prerunGammaRayTel.mac"); >> 140 session->SessionStart(); >> 141 } >> 142 delete session; >> 143 } 100 144 101 return 0; << 145 // Job termination >> 146 #ifdef G4VIS_USE >> 147 delete visManager; >> 148 #endif >> 149 #ifdef G4ANALYSIS_USE >> 150 delete analysis; >> 151 #endif >> 152 delete runManager; >> 153 return 0; 102 } 154 } >> 155 >> 156 >> 157 >> 158 >> 159 >> 160 >> 161 >> 162 >> 163 >> 164 103 165