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 // 26 // >> 27 // $Id: XrayFluoSimulation.cc 27 // 28 // 28 // Author: Elena Guardincerri << 29 // Author: Elena Guardincerri 29 // 30 // 30 // History: 31 // History: 31 // ----------- 32 // ----------- 32 // 28 Nov 2001 Elena Guardincerri Created 33 // 28 Nov 2001 Elena Guardincerri Created 33 // 24 Ago 2002 Splitted in a separet class Al 34 // 24 Ago 2002 Splitted in a separet class Alfonso Mantero 34 // 18 Jan 2011 adapted to new deexcitation des << 35 // 35 // 36 // ------------------------------------------- 36 // ------------------------------------------------------------------- 37 << 37 #include "G4RunManager.hh" 38 #include "G4Types.hh" << 39 #include "G4RunManagerFactory.hh" << 40 #include "G4UImanager.hh" 38 #include "G4UImanager.hh" >> 39 #include "G4UIterminal.hh" >> 40 #include "G4UItcsh.hh" >> 41 #ifdef G4UI_USE_XM >> 42 #include "G4UIXm.hh" >> 43 #endif 41 #include "Randomize.hh" 44 #include "Randomize.hh" >> 45 #ifdef G4VIS_USE 42 #include "G4VisExecutive.hh" 46 #include "G4VisExecutive.hh" 43 #include "G4UIExecutive.hh" << 47 #endif 44 #include "XrayFluoDetectorConstruction.hh" 48 #include "XrayFluoDetectorConstruction.hh" 45 #include "XrayFluoPlaneDetectorConstruction.hh 49 #include "XrayFluoPlaneDetectorConstruction.hh" 46 #include "XrayFluoMercuryDetectorConstruction. 50 #include "XrayFluoMercuryDetectorConstruction.hh" 47 #include "XrayFluoPhysicsList.hh" 51 #include "XrayFluoPhysicsList.hh" >> 52 #include "XrayFluoPrimaryGeneratorAction.hh" >> 53 #include "XrayFluoPlanePrimaryGeneratorAction.hh" >> 54 #include "XrayFluoMercuryPrimaryGeneratorAction.hh" >> 55 #include "XrayFluoRunAction.hh" >> 56 #include "XrayFluoEventAction.hh" >> 57 #include "XrayFluoSteppingAction.hh" >> 58 #include "XrayFluoSteppingVerbose.hh" 48 #include "XrayFluoSimulation.hh" 59 #include "XrayFluoSimulation.hh" 49 << 60 #ifdef G4ANALYSIS_USE 50 #include "XrayFluoActionInitializer.hh" << 51 #include "XrayFluoAnalysisManager.hh" 61 #include "XrayFluoAnalysisManager.hh" >> 62 #endif >> 63 using namespace CLHEP; >> 64 >> 65 XrayFluoSimulation::XrayFluoSimulation(G4int seed):dir(seed) >> 66 >> 67 { } >> 68 >> 69 XrayFluoSimulation::~XrayFluoSimulation() >> 70 >> 71 { } 52 72 53 void XrayFluoSimulation::RunSimulation(int arg 73 void XrayFluoSimulation::RunSimulation(int argc,char* argv[]) 54 { 74 { 55 auto* runManager = G4RunManagerFactory::Crea << 75 56 G4int nThreads = 4; << 76 // choose the Random engine 57 runManager->SetNumberOfThreads(nThreads); << 77 CLHEP::HepRandom::setTheEngine(new CLHEP::RanecuEngine); >> 78 CLHEP::HepRandom::setTheSeed(dir); >> 79 >> 80 //XrayFluo Verbose output class >> 81 G4VSteppingVerbose::SetInstance(new XrayFluoSteppingVerbose); >> 82 >> 83 // Construct the default run manager >> 84 G4RunManager * runManager = new G4RunManager; >> 85 >> 86 // set mandatory initialization >> 87 >> 88 XrayFluoPhysicsList* xrayList = 0; 58 89 59 // chosing Geometry setup 90 // chosing Geometry setup 60 G4int geometryNumber = 0; << 91 >> 92 G4int geometryNumber; 61 93 62 if (argc == 3){ 94 if (argc == 3){ 63 geometryNumber = atoi(argv[2]); 95 geometryNumber = atoi(argv[2]); 64 96 65 } 97 } 66 while ( (geometryNumber < 1) || (geometryNum << 98 while ( (geometryNumber != 1) && (geometryNumber !=2) && (geometryNumber !=3) && (geometryNumber !=4)) { 67 G4cout << "Please Select Simulation Geomet 99 G4cout << "Please Select Simulation Geometrical Set-Up: "<< G4endl; 68 G4cout << "1 - Test Beam" << G4endl; 100 G4cout << "1 - Test Beam" << G4endl; 69 G4cout << "2 - Infinite Plane" << G4endl; 101 G4cout << "2 - Infinite Plane" << G4endl; 70 G4cout << "3 - Planet and Sun"<< G4endl; 102 G4cout << "3 - Planet and Sun"<< G4endl; 71 G4cout << "4 - Phase-Space Production"<< G 103 G4cout << "4 - Phase-Space Production"<< G4endl; 72 104 >> 105 73 G4cin >> geometryNumber; 106 G4cin >> geometryNumber; 74 } 107 } 75 108 76 // set analysis to have the messenger runnin << 109 XrayFluoDetectorConstruction* testBeamDetector = 0; 77 XrayFluoAnalysisManager* analysis = << 110 XrayFluoPlaneDetectorConstruction* planeDetector = 0; 78 XrayFluoAnalysisManager::getInstance(); << 111 XrayFluoMercuryDetectorConstruction* mercuryDetector = 0; >> 112 79 113 80 // set mandatory initialization << 81 114 82 //Initialize geometry << 83 if (geometryNumber == 1 || geometryNumber == 115 if (geometryNumber == 1 || geometryNumber == 4) { 84 XrayFluoDetectorConstruction* testBeamDete << 116 testBeamDetector = XrayFluoDetectorConstruction::GetInstance(); 85 = XrayFluoDetectorConstruction::GetInsta << 86 if (geometryNumber == 4) { 117 if (geometryNumber == 4) { 87 testBeamDetector->PhaseSpaceOn(); 118 testBeamDetector->PhaseSpaceOn(); 88 analysis->PhaseSpaceOn(); << 89 } 119 } 90 runManager->SetUserInitialization(testBeam 120 runManager->SetUserInitialization(testBeamDetector); >> 121 xrayList = new XrayFluoPhysicsList(testBeamDetector); 91 } 122 } 92 else if (geometryNumber == 2) { 123 else if (geometryNumber == 2) { 93 XrayFluoPlaneDetectorConstruction* << 124 planeDetector = XrayFluoPlaneDetectorConstruction::GetInstance(); 94 planeDetector = XrayFluoPlaneDetectorCon << 95 runManager->SetUserInitialization(planeDet 125 runManager->SetUserInitialization(planeDetector); >> 126 xrayList = new XrayFluoPhysicsList(planeDetector); 96 } 127 } 97 else if (geometryNumber == 3) { 128 else if (geometryNumber == 3) { 98 XrayFluoMercuryDetectorConstruction* mercu << 129 mercuryDetector = XrayFluoMercuryDetectorConstruction::GetInstance(); 99 XrayFluoMercuryDetectorConstruction::Get << 100 runManager->SetUserInitialization(mercuryD 130 runManager->SetUserInitialization(mercuryDetector); >> 131 xrayList = new XrayFluoPhysicsList(mercuryDetector); 101 } 132 } 102 133 103 134 104 //Initialize physics << 105 runManager->SetUserInitialization(new Xray << 106 135 107 //Initialize actions << 136 runManager->SetUserInitialization(xrayList); 108 runManager->SetUserInitialization << 137 109 (new XrayFluoActionInitializer(geometryNum << 138 G4UIsession* session=0; >> 139 >> 140 if (argc==1) // Define UI session for interactive mode. >> 141 { >> 142 // G4UIterminal is a (dumb) terminal. >> 143 #ifdef G4UI_USE_XM >> 144 session = new G4UIXm(argc,&argv[1]); >> 145 #else >> 146 #ifdef G4UI_USE_TCSH >> 147 session = new G4UIterminal(new G4UItcsh); >> 148 #else >> 149 session = new G4UIterminal(); >> 150 #endif >> 151 #endif >> 152 } >> 153 110 154 >> 155 >> 156 #ifdef G4VIS_USE 111 //visualization manager 157 //visualization manager 112 G4VisManager* visManager = new G4VisExecutiv 158 G4VisManager* visManager = new G4VisExecutive; 113 visManager->Initialize(); 159 visManager->Initialize(); >> 160 #endif 114 161 115 // get the pointer to the User Interface man << 162 #ifdef G4ANALYSIS_USE 116 G4UImanager* UImanager = G4UImanager::GetUIp << 163 // set analysis to have the messenger running... >> 164 XrayFluoAnalysisManager* analysis = XrayFluoAnalysisManager::getInstance(); >> 165 #endif >> 166 XrayFluoEventAction* eventAction = 0; >> 167 XrayFluoRunAction* runAction = new XrayFluoRunAction(); >> 168 XrayFluoSteppingAction* stepAction = new XrayFluoSteppingAction(); >> 169 >> 170 >> 171 //Selecting the PrimaryGenerator depending upon Geometry setup selected >> 172 >> 173 if (geometryNumber == 1 || geometryNumber == 4) { >> 174 if (geometryNumber == 4) { >> 175 #ifdef G4ANALYSIS_USE >> 176 analysis->PhaseSpaceOn(); >> 177 analysis->CreatePersistency(); >> 178 #endif >> 179 } >> 180 eventAction = new XrayFluoEventAction(testBeamDetector); >> 181 runManager->SetUserAction(new XrayFluoPrimaryGeneratorAction(testBeamDetector)); >> 182 } 117 183 118 if (argc == 1) // Define UI session for in << 184 else if (geometryNumber == 2) { >> 185 eventAction = new XrayFluoEventAction(planeDetector); >> 186 runManager->SetUserAction(new XrayFluoPlanePrimaryGeneratorAction(planeDetector)); >> 187 } >> 188 >> 189 else if (geometryNumber == 3) { >> 190 stepAction->SetMercuryFlag(true); >> 191 eventAction = new XrayFluoEventAction(mercuryDetector); >> 192 runManager->SetUserAction(new XrayFluoMercuryPrimaryGeneratorAction(mercuryDetector)); >> 193 } >> 194 >> 195 runManager->SetUserAction(eventAction); >> 196 runManager->SetUserAction(runAction); >> 197 runManager->SetUserAction(stepAction); >> 198 >> 199 //Initialize G4 kernel >> 200 runManager->Initialize(); >> 201 >> 202 // get the pointer to the User Interface manager >> 203 G4UImanager* UI = G4UImanager::GetUIpointer(); >> 204 >> 205 if (session) // Define UI session for interactive mode. 119 { 206 { 120 UImanager->ApplyCommand("/control/execut << 207 // G4UIterminal is a (dumb) terminal. 121 UImanager->ApplyCommand("/control/execut << 208 UI->ApplyCommand("/control/execute initInter.mac"); 122 G4UIExecutive* ui = new G4UIExecutive(ar << 209 #ifdef G4UI_USE_XM 123 ui->SessionStart(); << 210 // Customize the G4UIXm menubar with a macro file : 124 delete ui; << 211 UI->ApplyCommand("/control/execute gui.mac"); >> 212 #endif >> 213 session->SessionStart(); >> 214 delete session; 125 } 215 } 126 else // Batch mode 216 else // Batch mode 127 { << 217 { 128 G4String command = "/control/execute "; 218 G4String command = "/control/execute "; 129 G4String fileName = argv[1]; 219 G4String fileName = argv[1]; 130 UImanager->ApplyCommand(command+fileName << 220 UI->ApplyCommand(command+fileName); 131 } 221 } 132 << 222 133 // job termination 223 // job termination >> 224 >> 225 #ifdef G4VIS_USE 134 delete visManager; 226 delete visManager; 135 G4cout << "visManager deleted"<< G4endl; 227 G4cout << "visManager deleted"<< G4endl; >> 228 #endif 136 229 >> 230 // if (testBeamDetector) delete testBeamDetector; >> 231 // if (planeDetector) delete planeDetector; >> 232 // if (mercuryDetector) delete mercuryDetector; >> 233 >> 234 137 delete runManager; 235 delete runManager; >> 236 >> 237 >> 238 138 } 239 } 139 240