Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 // 27 // 28 ////////////////////////////////////////////// 29 // Optical Photon WaveLength Shifting (WLS) Cl 30 ////////////////////////////////////////////// 31 // 32 // File: G4OpWLS.hh 33 // Description: Discrete Process -- Wavelength 34 // Version: 1.0 35 // Created: 2003-05-13 36 // Author: John Paul Archambault 37 // (Adaptation of G4Scintillation 38 // Updated: 2005-07-28 add G4ProcessType t 39 // 2006-05-07 - add G4VWLSTimeGen 40 // 41 ////////////////////////////////////////////// 42 43 #ifndef G4OpWLS_h 44 #define G4OpWLS_h 1 45 46 #include "G4VDiscreteProcess.hh" 47 #include "G4OpticalPhoton.hh" 48 49 class G4VWLSTimeGeneratorProfile; 50 51 class G4OpWLS : public G4VDiscreteProcess 52 { 53 public: 54 explicit G4OpWLS(const G4String& processName 55 G4ProcessType type 56 virtual ~G4OpWLS(); 57 58 virtual G4bool IsApplicable( 59 const G4ParticleDefinition& aParticleType) 60 // Returns true -> 'is applicable' only for 61 62 virtual void BuildPhysicsTable( 63 const G4ParticleDefinition& aParticleType) 64 // Build the WLS integral table at the right 65 66 virtual G4double GetMeanFreePath(const G4Tra 67 G4ForceCond 68 // Returns the absorption length for WLS abs 69 // photons in media with a specified attenua 70 71 virtual G4VParticleChange* PostStepDoIt(cons 72 cons 73 // This is the method implementing WLS for o 74 75 virtual G4PhysicsTable* GetIntegralTable() c 76 // Returns the address of the WLS integral t 77 78 virtual void DumpPhysicsTable() const; 79 // Prints the WLS integral table. 80 81 virtual void UseTimeProfile(const G4String n 82 // Selects the time profile generator 83 84 virtual void PreparePhysicsTable(const G4Par 85 virtual void Initialise(); 86 87 void SetVerboseLevel(G4int); 88 89 protected: 90 G4VWLSTimeGeneratorProfile* WLSTimeGenerator 91 G4PhysicsTable* theIntegralTable; 92 93 private: 94 G4OpWLS(const G4OpWLS& right) = delete; 95 G4OpWLS& operator=(const G4OpWLS& right) = d 96 97 std::size_t idx_wls = 0; 98 }; 99 100 //////////////////// 101 // Inline methods 102 //////////////////// 103 104 inline G4bool G4OpWLS::IsApplicable(const G4Pa 105 { 106 return (&aParticleType == G4OpticalPhoton::O 107 } 108 109 inline G4PhysicsTable* G4OpWLS::GetIntegralTab 110 { 111 return theIntegralTable; 112 } 113 114 inline void G4OpWLS::DumpPhysicsTable() const 115 { 116 std::size_t PhysicsTableSize = theIntegralTa 117 G4PhysicsFreeVector* v; 118 119 for(std::size_t i = 0; i < PhysicsTableSize; 120 { 121 v = (G4PhysicsFreeVector*) (*theIntegralTa 122 v->DumpValues(); 123 } 124 } 125 126 #endif /* G4OpWLS_h */ 127