source: trunk/examples/advanced/xray_fluorescence/src/XrayFluoSimulation.cc@ 1304

Last change on this file since 1304 was 807, checked in by garnier, 17 years ago

update

File size: 7.4 KB
RevLine 
[807]1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// $Id: XrayFluoSimulation.cc
28//
29// Author: Elena Guardincerri
30//
31// History:
32// -----------
33// 28 Nov 2001 Elena Guardincerri Created
34// 24 Ago 2002 Splitted in a separet class Alfonso Mantero
35//
36// -------------------------------------------------------------------
37#include "G4RunManager.hh"
38#include "G4UImanager.hh"
39#include "G4UIterminal.hh"
40#include "G4UItcsh.hh"
41#ifdef G4UI_USE_XM
42#include "G4UIXm.hh"
43#endif
44#include "Randomize.hh"
45#ifdef G4VIS_USE
46#include "G4VisExecutive.hh"
47#endif
48#include "XrayFluoDetectorConstruction.hh"
49#include "XrayFluoPlaneDetectorConstruction.hh"
50#include "XrayFluoMercuryDetectorConstruction.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"
59#include "XrayFluoSimulation.hh"
60#ifdef G4ANALYSIS_USE
61#include "XrayFluoAnalysisManager.hh"
62#endif
63using namespace CLHEP;
64
65XrayFluoSimulation::XrayFluoSimulation(G4int seed):dir(seed)
66
67{ }
68
69XrayFluoSimulation::~XrayFluoSimulation()
70
71{ }
72
73void XrayFluoSimulation::RunSimulation(int argc,char* argv[])
74{
75
76 // choose the Random engine
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;
89
90 // chosing Geometry setup
91
92 G4int geometryNumber;
93
94 if (argc == 3){
95 geometryNumber = atoi(argv[2]);
96
97 }
98 while ( (geometryNumber != 1) && (geometryNumber !=2) && (geometryNumber !=3) && (geometryNumber !=4)) {
99 G4cout << "Please Select Simulation Geometrical Set-Up: "<< G4endl;
100 G4cout << "1 - Test Beam" << G4endl;
101 G4cout << "2 - Infinite Plane" << G4endl;
102 G4cout << "3 - Planet and Sun"<< G4endl;
103 G4cout << "4 - Phase-Space Production"<< G4endl;
104
105
106 G4cin >> geometryNumber;
107 }
108
109 XrayFluoDetectorConstruction* testBeamDetector = 0;
110 XrayFluoPlaneDetectorConstruction* planeDetector = 0;
111 XrayFluoMercuryDetectorConstruction* mercuryDetector = 0;
112
113
114
115 if (geometryNumber == 1 || geometryNumber == 4) {
116 testBeamDetector = XrayFluoDetectorConstruction::GetInstance();
117 if (geometryNumber == 4) {
118 testBeamDetector->PhaseSpaceOn();
119 }
120 runManager->SetUserInitialization(testBeamDetector);
121 xrayList = new XrayFluoPhysicsList(testBeamDetector);
122 }
123 else if (geometryNumber == 2) {
124 planeDetector = XrayFluoPlaneDetectorConstruction::GetInstance();
125 runManager->SetUserInitialization(planeDetector);
126 xrayList = new XrayFluoPhysicsList(planeDetector);
127 }
128 else if (geometryNumber == 3) {
129 mercuryDetector = XrayFluoMercuryDetectorConstruction::GetInstance();
130 runManager->SetUserInitialization(mercuryDetector);
131 xrayList = new XrayFluoPhysicsList(mercuryDetector);
132 }
133
134
135
136 runManager->SetUserInitialization(xrayList);
137
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
154
155
156#ifdef G4VIS_USE
157 //visualization manager
158 G4VisManager* visManager = new G4VisExecutive;
159 visManager->Initialize();
160#endif
161
162#ifdef G4ANALYSIS_USE
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 }
183
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.
206 {
207 // G4UIterminal is a (dumb) terminal.
208 UI->ApplyCommand("/control/execute initInter.mac");
209#ifdef G4UI_USE_XM
210 // Customize the G4UIXm menubar with a macro file :
211 UI->ApplyCommand("/control/execute gui.mac");
212#endif
213 session->SessionStart();
214 delete session;
215 }
216 else // Batch mode
217 {
218 G4String command = "/control/execute ";
219 G4String fileName = argv[1];
220 UI->ApplyCommand(command+fileName);
221 }
222
223 // job termination
224
225#ifdef G4VIS_USE
226 delete visManager;
227 G4cout << "visManager deleted"<< G4endl;
228#endif
229
230// if (testBeamDetector) delete testBeamDetector;
231// if (planeDetector) delete planeDetector;
232// if (mercuryDetector) delete mercuryDetector;
233
234
235 delete runManager;
236
237
238
239}
Note: See TracBrowser for help on using the repository browser.