Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4OpticalParameters.hh
Go to the documentation of this file.
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//
28// GEANT4 Class header file
29//
30// File name: G4OpticalParameters
31//
32// Author: Daren Sawkey based on G4EmParameters
33//
34// Creation date: 14.07.2020
35//
36// Modifications:
37//
38//
39// Class Description:
40//
41// A utility static class, responsable for keeping parameters
42// for all optical physics processes and models.
43//
44// It is initialized by the master thread but can be updated
45// at any moment. Parameters may be used in run time or at
46// initialisation
47//
48// -------------------------------------------------------------------
49//
50
51#ifndef G4OpticalParameters_h
52#define G4OpticalParameters_h 1
53
54#include "globals.hh"
55#include "G4ios.hh"
56#include "G4ThreeVector.hh"
57#include "G4Threading.hh"
58#include <vector>
59#include <memory>
60
62class G4StateManager;
63
65{
66 kCerenkov, ///< Cerenkov process index
67 kScintillation, ///< Scintillation process index
68 kAbsorption, ///< Absorption process index
69 kRayleigh, ///< Rayleigh scattering process index
70 kMieHG, ///< Mie scattering process index
71 kBoundary, ///< Boundary process index
72 kWLS, ///< Wave Length Shifting process index
73 kWLS2, ///< Second Wave Length Shifting process index
74 kNoProcess ///< Number of processes, no selected process
75};
76
78{
79 kCerenkovDefault = 0, // default model
80 kScintillationDefault, // default model
81};
82
83/// Return the name for a given optical process index
85
86inline G4String G4OpticalProcessName(G4int processNumber)
87{
88 switch(processNumber)
89 {
90 case kCerenkov:
91 return "Cerenkov";
92 case kScintillation:
93 return "Scintillation";
94 case kAbsorption:
95 return "OpAbsorption";
96 case kRayleigh:
97 return "OpRayleigh";
98 case kMieHG:
99 return "OpMieHG";
100 case kBoundary:
101 return "OpBoundary";
102 case kWLS:
103 return "OpWLS";
104 case kWLS2:
105 return "OpWLS2";
106 default:
107 return "NoProcess";
108 }
109}
110
111class G4OpticalParameters
112{
113 public:
114 static G4OpticalParameters* Instance();
115
117
118 void SetDefaults();
119
120 // printing
121 void StreamInfo(std::ostream& os) const;
122 void Dump() const;
123 friend std::ostream& operator<<(std::ostream& os, const G4OpticalParameters&);
124
126 G4int GetVerboseLevel() const;
127
130
131 // Cerenkov
145 G4bool CerenkovGeneral() const;
146
147 // Scintillation
162
163 // WLS
164 void SetWLSTimeProfile(const G4String&);
168
169 // WLS2
170 void SetWLS2TimeProfile(const G4String&);
174
175 // boundary
180
181 // absorption
184
185 // rayleigh
188
189 // mie
192
193 // active volumes
194 const std::vector<std::pair<G4XRayModelType, const G4String> >&
195 ActiveVolumes() const;
196 void SetActiveVolume(const G4String& name, G4XRayModelType type);
197
198 private:
199 G4OpticalParameters();
200 void Initialise();
201 G4bool IsLocked() const;
202 void PrintWarning(G4ExceptionDescription& ed) const;
203
204 static G4OpticalParameters* theInstance;
205
206 G4OpticalParametersMessenger* theMessenger;
207 G4StateManager* fStateManager;
208
209 G4int verboseLevel;
210
211 // Whether to activate each process
212 std::map<G4String, G4bool> processActivation;
213
214 // cerenkov/////////////////
215 G4bool cerenkovStackPhotons;
216 G4bool cerenkovTrackSecondariesFirst;
217 G4bool cerenkovOffloadPhotons;
218 G4bool cerenkovGeneral;
219 G4int cerenkovVerboseLevel;
220 G4int cerenkovMaxPhotons;
221 G4double cerenkovMaxBetaChange;
222
223 // scintillation /////////////////
224
225 /// option to set a finite rise-time; Note: the G4Scintillation
226 /// process expects the user to have set the constant material
227 /// property SCINTILLATIONRISETIME{1,2,3}
228 G4bool scintFiniteRiseTime;
229
230 /// option to allow for the light yield to be a function of
231 /// particle type and deposited energy in case of non-linear
232 /// light emission in scintillators
233 G4bool scintByParticleType;
234
235 /// option to allow for G4ScintillationTrackInformation
236 /// to be attached to a scintillation photon's track
237 G4bool scintTrackInfo;
238
239 /// option to allow stacking of secondary scintillation photons
240 G4bool scintStackPhotons;
241
242 /// option to enable offloading of secondary scintillation photons
243 G4bool scintOffloadPhotons;
244
245 G4int scintVerboseLevel;
246 G4bool scintTrackSecondariesFirst;
247
248 ///////////////// WLS
249 G4String wlsTimeProfileName;
250 G4int wlsVerboseLevel;
251
252 ///////////////// WLS2
253 G4String wls2TimeProfileName;
254 G4int wls2VerboseLevel;
255
256 //////////////// absorption
257 G4int absorptionVerboseLevel;
258
259 //////////////// rayleigh
260 G4int rayleighVerboseLevel;
261
262 //////////////// mie
263 G4int mieVerboseLevel;
264
265 //////////////// boundary
266 /// G4OpBoundaryProcess to call InvokeSD method
267 G4bool boundaryInvokeSD;
268 G4int boundaryVerboseLevel;
269
270 //////////////// active volumes
271 std::vector<std::pair<G4XRayModelType, const G4String> > xrayVolumes;
272
273#ifdef G4MULTITHREADED
274 static G4Mutex opticalParametersMutex;
275#endif
276};
277
278//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
279
280#endif
std::ostringstream G4ExceptionDescription
G4OpticalProcessIndex
@ kWLS
Wave Length Shifting process index.
@ kScintillation
Scintillation process index.
@ kWLS2
Second Wave Length Shifting process index.
@ kRayleigh
Rayleigh scattering process index.
@ kAbsorption
Absorption process index.
@ kBoundary
Boundary process index.
@ kNoProcess
Number of processes, no selected process.
@ kCerenkov
Cerenkov process index.
@ kMieHG
Mie scattering process index.
@ kScintillationDefault
@ kCerenkovDefault
G4String G4OpticalProcessName(G4int)
Return the name for a given optical process index.
std::mutex G4Mutex
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
void SetActiveVolume(const G4String &name, G4XRayModelType type)
G4bool GetBoundaryInvokeSD() const
void SetScintByParticleType(G4bool)
void SetCerenkovMaxBetaChange(G4double)
void SetScintOffloadPhotons(G4bool)
G4bool GetScintOffloadPhotons() const
void SetCerenkovMaxPhotonsPerStep(G4int)
G4int GetCerenkovVerboseLevel() const
void SetScintTrackSecondariesFirst(G4bool)
G4int GetScintVerboseLevel() const
void StreamInfo(std::ostream &os) const
G4int GetAbsorptionVerboseLevel() const
G4bool GetScintStackPhotons() const
G4int GetBoundaryVerboseLevel() const
G4int GetRayleighVerboseLevel() const
G4int GetWLS2VerboseLevel() const
G4String GetWLS2TimeProfile() const
const std::vector< std::pair< G4XRayModelType, const G4String > > & ActiveVolumes() const
void SetWLS2TimeProfile(const G4String &)
G4int GetCerenkovMaxPhotonsPerStep() const
static G4OpticalParameters * Instance()
G4double GetCerenkovMaxBetaChange() const
friend std::ostream & operator<<(std::ostream &os, const G4OpticalParameters &)
void SetAbsorptionVerboseLevel(G4int)
G4bool GetProcessActivation(const G4String &) const
void SetCerenkovStackPhotons(G4bool)
void SetCerenkovTrackSecondariesFirst(G4bool)
G4bool GetCerenkovOffloadPhotons() const
void SetScintFiniteRiseTime(G4bool)
G4String GetWLSTimeProfile() const
G4bool GetScintByParticleType() const
void SetWLSTimeProfile(const G4String &)
G4bool GetScintFiniteRiseTime() const
G4bool GetScintTrackInfo() const
void SetCerenkovOffloadPhotons(G4bool)
G4bool GetCerenkovTrackSecondariesFirst() const
void SetProcessActivation(const G4String &, G4bool)
G4bool GetScintTrackSecondariesFirst() const
G4bool GetCerenkovStackPhotons() const