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: G4OpBoundaryProcess.hh 73616 2013-09-02 10:18:24Z gcosmo $ 27 // 28 // 28 // << 29 // 29 ////////////////////////////////////////////// 30 //////////////////////////////////////////////////////////////////////// 30 // Optical Photon Boundary Process Class Defin 31 // Optical Photon Boundary Process Class Definition 31 ////////////////////////////////////////////// 32 //////////////////////////////////////////////////////////////////////// 32 // 33 // 33 // File: G4OpBoundaryProcess.hh 34 // File: G4OpBoundaryProcess.hh 34 // Description: Discrete Process -- reflection 35 // Description: Discrete Process -- reflection/refraction at 35 // optical in 36 // optical interfaces 36 // Version: 1.1 37 // Version: 1.1 37 // Created: 1997-06-18 38 // Created: 1997-06-18 38 // Modified: 2005-07-28 add G4ProcessType t 39 // Modified: 2005-07-28 add G4ProcessType to constructor 39 // 1999-10-29 add method and clas 40 // 1999-10-29 add method and class descriptors 40 // 1999-10-10 - Fill NewMomentum/ << 41 // 1999-10-10 - Fill NewMomentum/NewPolarization in 41 // DoAbsorption. The 42 // DoAbsorption. These members need to be 42 // filled since DoIt << 43 // filled since DoIt calls 43 // aParticleChange.S 44 // aParticleChange.SetMomentumChange etc. 44 // upon return (than 45 // upon return (thanks to: Clark McGrew) 45 // 2006-11-04 - add capability of 46 // 2006-11-04 - add capability of calculating the reflectivity 46 // off a metal surfa 47 // off a metal surface by way of a complex index 47 // of refraction - T 48 // of refraction - Thanks to Sehwook Lee and John 48 // Hauptman (Dept. o 49 // Hauptman (Dept. of Physics - Iowa State Univ.) 49 // 2009-11-10 - add capability of 50 // 2009-11-10 - add capability of simulating surface reflections 50 // with Look-Up-Tabl 51 // with Look-Up-Tables (LUT) containing measured 51 // optical reflectan 52 // optical reflectance for a variety of surface 52 // treatments - Than 53 // treatments - Thanks to Martin Janecek and 53 // William Moses (La 54 // William Moses (Lawrence Berkeley National Lab.) 54 // 2013-06-01 - add the capabilit 55 // 2013-06-01 - add the capability of simulating the transmission 55 // of a dichronic fi 56 // of a dichronic filter 56 // 2017-02-24 - add capability of << 57 // with Look-Up-Tabl << 58 // 57 // 59 // Author: Peter Gumplinger 58 // Author: Peter Gumplinger 60 // adopted from work by Werner Ke 59 // adopted from work by Werner Keil - April 2/96 >> 60 // mail: gum@triumf.ca 61 // 61 // 62 ////////////////////////////////////////////// 62 //////////////////////////////////////////////////////////////////////// 63 63 64 #ifndef G4OpBoundaryProcess_h 64 #ifndef G4OpBoundaryProcess_h 65 #define G4OpBoundaryProcess_h 1 65 #define G4OpBoundaryProcess_h 1 66 66 67 #include "G4OpticalPhoton.hh" << 67 ///////////// 68 #include "G4OpticalSurface.hh" << 68 // Includes >> 69 ///////////// >> 70 >> 71 #include "globals.hh" >> 72 #include "templates.hh" >> 73 #include "geomdefs.hh" >> 74 #include "Randomize.hh" >> 75 69 #include "G4RandomTools.hh" 76 #include "G4RandomTools.hh" >> 77 #include "G4RandomDirection.hh" >> 78 >> 79 #include "G4Step.hh" 70 #include "G4VDiscreteProcess.hh" 80 #include "G4VDiscreteProcess.hh" >> 81 #include "G4DynamicParticle.hh" >> 82 #include "G4Material.hh" >> 83 #include "G4LogicalBorderSurface.hh" >> 84 #include "G4LogicalSkinSurface.hh" >> 85 #include "G4OpticalSurface.hh" >> 86 #include "G4OpticalPhoton.hh" >> 87 #include "G4TransportationManager.hh" 71 88 72 enum G4OpBoundaryProcessStatus << 89 // Class Description: 73 { << 90 // Discrete Process -- reflection/refraction at optical interfaces. 74 Undefined, << 91 // Class inherits publicly from G4VDiscreteProcess. 75 Transmission, << 92 // Class Description - End: 76 FresnelRefraction, << 93 77 FresnelReflection, << 94 ///////////////////// 78 TotalInternalReflection, << 95 // Class Definition 79 LambertianReflection, << 96 ///////////////////// 80 LobeReflection, << 97 81 SpikeReflection, << 98 enum G4OpBoundaryProcessStatus { Undefined, 82 BackScattering, << 99 FresnelRefraction, FresnelReflection, 83 Absorption, << 100 TotalInternalReflection, 84 Detection, << 101 LambertianReflection, LobeReflection, 85 NotAtBoundary, << 102 SpikeReflection, BackScattering, 86 SameMaterial, << 103 Absorption, Detection, NotAtBoundary, 87 StepTooSmall, << 104 SameMaterial, StepTooSmall, NoRINDEX, 88 NoRINDEX, << 105 PolishedLumirrorAirReflection, 89 PolishedLumirrorAirReflection, << 106 PolishedLumirrorGlueReflection, 90 PolishedLumirrorGlueReflection, << 107 PolishedAirReflection, 91 PolishedAirReflection, << 108 PolishedTeflonAirReflection, 92 PolishedTeflonAirReflection, << 109 PolishedTiOAirReflection, 93 PolishedTiOAirReflection, << 110 PolishedTyvekAirReflection, 94 PolishedTyvekAirReflection, << 111 PolishedVM2000AirReflection, 95 PolishedVM2000AirReflection, << 112 PolishedVM2000GlueReflection, 96 PolishedVM2000GlueReflection, << 113 EtchedLumirrorAirReflection, 97 EtchedLumirrorAirReflection, << 114 EtchedLumirrorGlueReflection, 98 EtchedLumirrorGlueReflection, << 115 EtchedAirReflection, 99 EtchedAirReflection, << 116 EtchedTeflonAirReflection, 100 EtchedTeflonAirReflection, << 117 EtchedTiOAirReflection, 101 EtchedTiOAirReflection, << 118 EtchedTyvekAirReflection, 102 EtchedTyvekAirReflection, << 119 EtchedVM2000AirReflection, 103 EtchedVM2000AirReflection, << 120 EtchedVM2000GlueReflection, 104 EtchedVM2000GlueReflection, << 121 GroundLumirrorAirReflection, 105 GroundLumirrorAirReflection, << 122 GroundLumirrorGlueReflection, 106 GroundLumirrorGlueReflection, << 123 GroundAirReflection, 107 GroundAirReflection, << 124 GroundTeflonAirReflection, 108 GroundTeflonAirReflection, << 125 GroundTiOAirReflection, 109 GroundTiOAirReflection, << 126 GroundTyvekAirReflection, 110 GroundTyvekAirReflection, << 127 GroundVM2000AirReflection, 111 GroundVM2000AirReflection, << 128 GroundVM2000GlueReflection, 112 GroundVM2000GlueReflection, << 129 Dichroic }; 113 Dichroic, << 114 CoatedDielectricReflection, << 115 CoatedDielectricRefraction, << 116 CoatedDielectricFrustratedTransmission << 117 }; << 118 130 119 class G4OpBoundaryProcess : public G4VDiscrete 131 class G4OpBoundaryProcess : public G4VDiscreteProcess 120 { 132 { 121 public: << 122 explicit G4OpBoundaryProcess(const G4String& << 123 G4ProcessType t << 124 virtual ~G4OpBoundaryProcess(); << 125 133 126 virtual G4bool IsApplicable( << 134 public: 127 const G4ParticleDefinition& aParticleType) << 135 128 // Returns true -> 'is applicable' only for << 136 //////////////////////////////// >> 137 // Constructors and Destructor >> 138 //////////////////////////////// 129 139 130 virtual G4double GetMeanFreePath(const G4Tra << 140 G4OpBoundaryProcess(const G4String& processName = "OpBoundary", 131 G4ForceCond << 141 G4ProcessType type = fOptical); 132 // Returns infinity; i. e. the process does << 142 ~G4OpBoundaryProcess(); 133 // 'Forced' condition for the DoIt to be inv << 134 // at a boundary will any action be taken. << 135 143 136 G4VParticleChange* PostStepDoIt(const G4Trac << 144 private: 137 const G4Step << 138 // This is the method implementing boundary << 139 145 140 virtual G4OpBoundaryProcessStatus GetStatus( << 146 G4OpBoundaryProcess(const G4OpBoundaryProcess &right); 141 // Returns the current status. << 142 147 143 virtual void SetInvokeSD(G4bool); << 148 ////////////// 144 // Set flag for call to InvokeSD method. << 149 // Operators >> 150 ////////////// 145 151 146 virtual void PreparePhysicsTable(const G4Par << 152 G4OpBoundaryProcess& operator=(const G4OpBoundaryProcess &right); 147 153 148 virtual void Initialise(); << 154 public: 149 155 150 void SetVerboseLevel(G4int); << 156 //////////// >> 157 // Methods >> 158 //////////// 151 159 152 private: << 160 G4bool IsApplicable(const G4ParticleDefinition& aParticleType); 153 G4OpBoundaryProcess(const G4OpBoundaryProces << 161 // Returns true -> 'is applicable' only for an optical photon. 154 G4OpBoundaryProcess& operator=(const G4OpBou << 155 162 156 G4bool G4BooleanRand(const G4double prob) co << 163 G4double GetMeanFreePath(const G4Track& , >> 164 G4double , >> 165 G4ForceCondition* condition); >> 166 // Returns infinity; i. e. the process does not limit the step, >> 167 // but sets the 'Forced' condition for the DoIt to be invoked at >> 168 // every step. However, only at a boundary will any action be >> 169 // taken. 157 170 158 G4ThreeVector GetFacetNormal(const G4ThreeVe << 171 G4VParticleChange* PostStepDoIt(const G4Track& aTrack, 159 const G4ThreeVe << 172 const G4Step& aStep); >> 173 // This is the method implementing boundary processes. 160 174 161 void DielectricMetal(); << 175 G4OpBoundaryProcessStatus GetStatus() const; 162 void DielectricDielectric(); << 176 // Returns the current status. 163 177 164 void DielectricLUT(); << 178 private: 165 void DielectricLUTDAVIS(); << 166 179 167 void DielectricDichroic(); << 180 G4bool G4BooleanRand(const G4double prob) const; 168 void CoatedDielectricDielectric(); << 169 181 170 void ChooseReflection(); << 182 G4ThreeVector GetFacetNormal(const G4ThreeVector& Momentum, 171 void DoAbsorption(); << 183 const G4ThreeVector& Normal) const; 172 void DoReflection(); << 173 184 174 G4double GetIncidentAngle(); << 185 void DielectricMetal(); 175 // Returns the incident angle of optical pho << 186 void DielectricDielectric(); >> 187 void DielectricLUT(); >> 188 void DielectricDichroic(); 176 189 177 G4double GetReflectivity(G4double E1_perp, G << 190 void ChooseReflection(); 178 G4double incidentan << 191 void DoAbsorption(); 179 G4double ImaginaryR << 192 void DoReflection(); 180 // Returns the Reflectivity on a metallic su << 181 193 182 G4double GetReflectivityThroughThinLayer(G4d << 194 G4double GetIncidentAngle(); 183 G4d << 195 // Returns the incident angle of optical photon 184 G4d << 185 // Returns the Reflectivity on a coated surf << 186 196 187 void CalculateReflectivity(); << 197 G4double GetReflectivity(G4double E1_perp, >> 198 G4double E1_parl, >> 199 G4double incidentangle, >> 200 G4double RealRindex, >> 201 G4double ImaginaryRindex); >> 202 // Returns the Reflectivity on a metalic surface 188 203 189 void BoundaryProcessVerbose() const; << 204 void CalculateReflectivity(void); 190 205 191 // Invoke SD for post step point if the phot << 206 void BoundaryProcessVerbose(void) const; 192 G4bool InvokeSD(const G4Step* step); << 193 207 194 G4ThreeVector fOldMomentum; << 208 // Invoke SD for post step point if the photon is 'detected' 195 G4ThreeVector fOldPolarization; << 209 G4bool InvokeSD(const G4Step* step); 196 210 197 G4ThreeVector fNewMomentum; << 211 private: 198 G4ThreeVector fNewPolarization; << 199 212 200 G4ThreeVector fGlobalNormal; << 213 G4double thePhotonMomentum; 201 G4ThreeVector fFacetNormal; << 202 214 203 const G4Material* fMaterial1; << 215 G4ThreeVector OldMomentum; 204 const G4Material* fMaterial2; << 216 G4ThreeVector OldPolarization; 205 217 206 G4OpticalSurface* fOpticalSurface; << 218 G4ThreeVector NewMomentum; >> 219 G4ThreeVector NewPolarization; 207 220 208 G4MaterialPropertyVector* fRealRIndexMPV; << 221 G4ThreeVector theGlobalNormal; 209 G4MaterialPropertyVector* fImagRIndexMPV; << 222 G4ThreeVector theFacetNormal; 210 G4Physics2DVector* fDichroicVector; << 211 223 212 G4double fPhotonMomentum; << 224 G4Material* Material1; 213 G4double fRindex1; << 225 G4Material* Material2; 214 G4double fRindex2; << 215 226 216 G4double fSint1; << 227 G4OpticalSurface* OpticalSurface; 217 228 218 G4double fReflectivity; << 229 G4MaterialPropertyVector* PropertyPointer; 219 G4double fEfficiency; << 230 G4MaterialPropertyVector* PropertyPointer1; 220 G4double fTransmittance; << 231 G4MaterialPropertyVector* PropertyPointer2; 221 G4double fSurfaceRoughness; << 222 232 223 G4double fProb_sl, fProb_ss, fProb_bs; << 233 G4double Rindex1; 224 G4double fCarTolerance; << 234 G4double Rindex2; 225 235 226 // Used by CoatedDielectricDielectric() << 236 G4double cost1, cost2, sint1, sint2; 227 G4double fCoatedRindex, fCoatedThickness; << 228 237 229 G4OpBoundaryProcessStatus fStatus; << 238 G4OpBoundaryProcessStatus theStatus; 230 G4OpticalSurfaceModel fModel; << 231 G4OpticalSurfaceFinish fFinish; << 232 239 233 G4int f_iTE, f_iTM; << 240 G4OpticalSurfaceModel theModel; 234 241 235 G4int fNumSmallStepWarnings = 0; // number o << 242 G4OpticalSurfaceFinish theFinish; 236 G4int fNumBdryTypeWarnings = 0; // number o << 237 243 238 size_t idx_dichroicX = 0; << 244 G4double theReflectivity; 239 size_t idx_dichroicY = 0; << 245 G4double theEfficiency; 240 size_t idx_rindex1 = 0; << 246 G4double theTransmittance; 241 size_t idx_rindex_surface = 0; << 247 G4double prob_sl, prob_ss, prob_bs; 242 size_t idx_reflect = 0; << 243 size_t idx_eff = 0; << 244 size_t idx_trans = 0; << 245 size_t idx_lobe = 0; << 246 size_t idx_spike = 0; << 247 size_t idx_back = 0; << 248 size_t idx_rindex2 = 0; << 249 size_t idx_groupvel = 0; << 250 size_t idx_rrindex = 0; << 251 size_t idx_irindex = 0; << 252 size_t idx_coatedrindex = 0; << 253 248 254 // Used by CoatedDielectricDielectric() << 249 G4int iTE, iTM; 255 G4bool fCoatedFrustratedTransmission = true; << 256 250 257 G4bool fInvokeSD; << 251 G4double kCarTolerance; >> 252 >> 253 size_t idx, idy; >> 254 G4Physics2DVector* DichroicVector; 258 }; 255 }; 259 256 260 //////////////////// 257 //////////////////// 261 // Inline methods 258 // Inline methods 262 //////////////////// 259 //////////////////// 263 260 264 inline G4bool G4OpBoundaryProcess::G4BooleanRa << 261 inline >> 262 G4bool G4OpBoundaryProcess::G4BooleanRand(const G4double prob) const 265 { 263 { 266 // Returns a random boolean variable with th << 264 /* Returns a random boolean variable with the specified probability */ >> 265 267 return (G4UniformRand() < prob); 266 return (G4UniformRand() < prob); 268 } 267 } 269 268 270 inline G4bool G4OpBoundaryProcess::IsApplicabl << 269 inline 271 const G4ParticleDefinition& aParticleType) << 270 G4bool G4OpBoundaryProcess::IsApplicable(const G4ParticleDefinition& >> 271 aParticleType) 272 { 272 { 273 return (&aParticleType == G4OpticalPhoton::O << 273 return ( &aParticleType == G4OpticalPhoton::OpticalPhoton() ); 274 } 274 } 275 275 276 inline G4OpBoundaryProcessStatus G4OpBoundaryP << 276 inline >> 277 G4OpBoundaryProcessStatus G4OpBoundaryProcess::GetStatus() const 277 { 278 { 278 return fStatus; << 279 return theStatus; 279 } 280 } 280 281 281 inline void G4OpBoundaryProcess::ChooseReflect << 282 inline >> 283 void G4OpBoundaryProcess::ChooseReflection() 282 { 284 { 283 G4double rand = G4UniformRand(); << 285 G4double rand = G4UniformRand(); 284 if(rand < fProb_ss) << 286 if ( rand >= 0.0 && rand < prob_ss ) { 285 { << 287 theStatus = SpikeReflection; 286 fStatus = SpikeReflection; << 288 theFacetNormal = theGlobalNormal; 287 fFacetNormal = fGlobalNormal; << 289 } 288 } << 290 else if ( rand >= prob_ss && 289 else if(rand < fProb_ss + fProb_sl) << 291 rand <= prob_ss+prob_sl) { 290 { << 292 theStatus = LobeReflection; 291 fStatus = LobeReflection; << 293 } 292 } << 294 else if ( rand > prob_ss+prob_sl && 293 else if(rand < fProb_ss + fProb_sl + fProb_b << 295 rand < prob_ss+prob_sl+prob_bs ) { 294 { << 296 theStatus = BackScattering; 295 fStatus = BackScattering; << 297 } 296 } << 298 else { 297 else << 299 theStatus = LambertianReflection; 298 { << 300 } 299 fStatus = LambertianReflection; << 300 } << 301 } 301 } 302 302 303 inline void G4OpBoundaryProcess::DoAbsorption( << 303 inline >> 304 void G4OpBoundaryProcess::DoAbsorption() 304 { 305 { 305 fStatus = Absorption; << 306 theStatus = Absorption; 306 307 307 if(G4BooleanRand(fEfficiency)) << 308 if ( G4BooleanRand(theEfficiency) ) { 308 { << 309 309 // EnergyDeposited =/= 0 means: photon has << 310 // EnergyDeposited =/= 0 means: photon has been detected 310 fStatus = Detection; << 311 theStatus = Detection; 311 aParticleChange.ProposeLocalEnergyDeposit( << 312 aParticleChange.ProposeLocalEnergyDeposit(thePhotonMomentum); 312 } << 313 } 313 else << 314 else { 314 { << 315 aParticleChange.ProposeLocalEnergyDeposit(0.0); 315 aParticleChange.ProposeLocalEnergyDeposit( << 316 } 316 } << 317 317 318 fNewMomentum = fOldMomentum; << 318 NewMomentum = OldMomentum; 319 fNewPolarization = fOldPolarization; << 319 NewPolarization = OldPolarization; 320 320 321 aParticleChange.ProposeTrackStatus(fStopAndK << 321 // aParticleChange.ProposeEnergy(0.0); >> 322 aParticleChange.ProposeTrackStatus(fStopAndKill); 322 } 323 } 323 324 324 inline void G4OpBoundaryProcess::DoReflection( << 325 inline >> 326 void G4OpBoundaryProcess::DoReflection() 325 { 327 { 326 if(fStatus == LambertianReflection) << 328 if ( theStatus == LambertianReflection ) { 327 { << 329 328 fNewMomentum = G4LambertianRand(fGlobalNor << 330 NewMomentum = G4LambertianRand(theGlobalNormal); 329 fFacetNormal = (fNewMomentum - fOldMomentu << 331 theFacetNormal = (NewMomentum - OldMomentum).unit(); 330 } << 332 331 else if(fFinish == ground) << 333 } 332 { << 334 else if ( theFinish == ground ) { 333 fStatus = LobeReflection; << 335 334 if(!fRealRIndexMPV || !fImagRIndexMPV) << 336 theStatus = LobeReflection; 335 { << 337 if ( PropertyPointer1 && PropertyPointer2 ){ 336 fFacetNormal = GetFacetNormal(fOldMoment << 338 } else { 337 } << 339 theFacetNormal = 338 // else << 340 GetFacetNormal(OldMomentum,theGlobalNormal); 339 // complex ref. index to be implemented << 341 } 340 fNewMomentum = << 342 G4double PdotN = OldMomentum * theFacetNormal; 341 fOldMomentum - (2. * fOldMomentum * fFac << 343 NewMomentum = OldMomentum - (2.*PdotN)*theFacetNormal; 342 } << 344 343 else << 345 } 344 { << 346 else { 345 fStatus = SpikeReflection; << 347 346 fFacetNormal = fGlobalNormal; << 348 theStatus = SpikeReflection; 347 fNewMomentum = << 349 theFacetNormal = theGlobalNormal; 348 fOldMomentum - (2. * fOldMomentum * fFac << 350 G4double PdotN = OldMomentum * theFacetNormal; 349 } << 351 NewMomentum = OldMomentum - (2.*PdotN)*theFacetNormal; 350 fNewPolarization = << 352 351 -fOldPolarization + (2. * fOldPolarization << 353 } >> 354 G4double EdotN = OldPolarization * theFacetNormal; >> 355 NewPolarization = -OldPolarization + (2.*EdotN)*theFacetNormal; 352 } 356 } 353 357 354 #endif /* G4OpBoundaryProcess_h */ 358 #endif /* G4OpBoundaryProcess_h */ 355 359