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