Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // 23 // >> 24 // $Id: G4OpRayleigh.hh,v 1.7 2004/04/27 00:26:34 gum Exp $ >> 25 // GEANT4 tag $Name: geant4-07-00-cand-01 $ 27 // 26 // 28 // << 27 // 29 ////////////////////////////////////////////// 28 //////////////////////////////////////////////////////////////////////// 30 // Optical Photon Rayleigh Scattering Class De 29 // Optical Photon Rayleigh Scattering Class Definition 31 ////////////////////////////////////////////// 30 //////////////////////////////////////////////////////////////////////// 32 // 31 // 33 // File: G4OpRayleigh.hh 32 // File: G4OpRayleigh.hh 34 // Description: Discrete Process -- Rayleigh s << 33 // Description: Discrete Process -- Rayleigh scattering of optical photons 35 // Version: 1.0 34 // Version: 1.0 36 // Created: 1996-05-31 35 // Created: 1996-05-31 37 // Author: Juliet Armstrong 36 // Author: Juliet Armstrong 38 // Updated: 2014-08-20 allow for more mate << 37 // Updated: 1999-10-29 add method and class descriptors 39 // 2005-07-28 add G4ProcessType t << 40 // 1999-10-29 add method and clas << 41 // 1997-04-09 by Peter Gumplinger 38 // 1997-04-09 by Peter Gumplinger 42 // > new physics/tracking scheme 39 // > new physics/tracking scheme >> 40 // mail: gum@triumf.ca 43 // 41 // 44 ////////////////////////////////////////////// 42 //////////////////////////////////////////////////////////////////////// 45 43 46 #ifndef G4OpRayleigh_h 44 #ifndef G4OpRayleigh_h 47 #define G4OpRayleigh_h 1 45 #define G4OpRayleigh_h 1 48 46 >> 47 ///////////// >> 48 // Includes >> 49 ///////////// >> 50 >> 51 #include "globals.hh" >> 52 #include "templates.hh" >> 53 #include "Randomize.hh" >> 54 #include "G4ThreeVector.hh" >> 55 #include "G4ParticleMomentum.hh" >> 56 #include "G4Step.hh" 49 #include "G4VDiscreteProcess.hh" 57 #include "G4VDiscreteProcess.hh" >> 58 #include "G4DynamicParticle.hh" >> 59 #include "G4Material.hh" 50 #include "G4OpticalPhoton.hh" 60 #include "G4OpticalPhoton.hh" 51 #include "G4PhysicsTable.hh" 61 #include "G4PhysicsTable.hh" >> 62 #include "G4PhysicsOrderedFreeVector.hh" >> 63 >> 64 // Class Description: >> 65 // Discrete Process -- Rayleigh scattering of optical photons. >> 66 // Class inherits publicly from G4VDiscreteProcess. >> 67 // Class Description - End: >> 68 >> 69 ///////////////////// >> 70 // Class Definition >> 71 ///////////////////// 52 72 53 class G4OpRayleigh : public G4VDiscreteProcess << 73 class G4OpRayleigh : public G4VDiscreteProcess 54 { 74 { 55 public: << 56 explicit G4OpRayleigh(const G4String& proces << 57 G4ProcessType type << 58 virtual ~G4OpRayleigh(); << 59 75 60 virtual G4bool IsApplicable( << 76 private: 61 const G4ParticleDefinition& aParticleType) << 77 62 // Returns true -> 'is applicable' only for << 78 ////////////// >> 79 // Operators >> 80 ////////////// >> 81 >> 82 // G4OpRayleigh& operator=(const G4OpRayleigh &right); >> 83 >> 84 public: // Without description >> 85 >> 86 //////////////////////////////// >> 87 // Constructors and Destructor >> 88 //////////////////////////////// >> 89 >> 90 G4OpRayleigh(const G4String& processName = "OpRayleigh"); >> 91 >> 92 // G4OpRayleigh(const G4OpRayleigh &right); >> 93 >> 94 ~G4OpRayleigh(); >> 95 >> 96 //////////// >> 97 // Methods >> 98 //////////// 63 99 64 virtual void BuildPhysicsTable( << 100 public: // With description 65 const G4ParticleDefinition& aParticleType) << 66 // Build thePhysicsTable at a right time << 67 101 68 virtual G4double GetMeanFreePath(const G4Tra << 102 G4bool IsApplicable(const G4ParticleDefinition& aParticleType); 69 G4ForceCond << 103 // Returns true -> 'is applicable' only for an optical photon. 70 // Returns the mean free path for Rayleigh s << 71 104 72 virtual G4VParticleChange* PostStepDoIt(cons << 105 G4double GetMeanFreePath(const G4Track& aTrack, 73 cons << 106 G4double , 74 // This is the method implementing Rayleigh << 107 G4ForceCondition* ); >> 108 // Returns the mean free path for Rayleigh scattering in water. >> 109 // --- Not yet implemented for other materials! --- 75 110 76 virtual G4PhysicsTable* GetPhysicsTable() co << 111 G4VParticleChange* PostStepDoIt(const G4Track& aTrack, 77 // Returns the address of the physics table. << 112 const G4Step& aStep); >> 113 // This is the method implementing Rayleigh scattering. 78 114 79 virtual void DumpPhysicsTable() const; << 115 G4PhysicsTable* GetPhysicsTable() const; 80 // Prints the physics table. << 116 // Returns the address of the physics table. 81 117 82 virtual void PreparePhysicsTable(const G4Par << 118 void DumpPhysicsTable() const; 83 virtual void Initialise(); << 119 // Prints the physics table. 84 120 85 void SetVerboseLevel(G4int); << 121 private: 86 122 87 protected: << 123 void BuildThePhysicsTable(); 88 G4PhysicsTable* thePhysicsTable; << 89 124 90 private: << 125 ///////////////////// 91 G4OpRayleigh(const G4OpRayleigh& right) = de << 126 // Helper Functions 92 G4OpRayleigh& operator=(const G4OpRayleigh& << 127 ///////////////////// 93 128 94 /// Calculates the mean free paths for a mat << 129 G4PhysicsOrderedFreeVector* RayleighAttenuationLengthGenerator( 95 /// photon energy << 130 G4MaterialPropertiesTable *aMPT); 96 G4PhysicsFreeVector* CalculateRayleighMeanFr << 131 97 const G4Material* material) const; << 132 /////////////////////// >> 133 // Class Data Members >> 134 /////////////////////// >> 135 >> 136 protected: >> 137 >> 138 G4PhysicsTable* thePhysicsTable; >> 139 // A Physics Table can be either a cross-sections table or >> 140 // an energy table (or can be used for other specific >> 141 // purposes). >> 142 >> 143 private: >> 144 >> 145 G4bool DefaultWater; 98 146 99 size_t idx_rslength = 0; << 100 }; 147 }; 101 148 102 //////////////////// 149 //////////////////// 103 // Inline methods 150 // Inline methods 104 //////////////////// 151 //////////////////// 105 152 106 inline G4bool G4OpRayleigh::IsApplicable( << 153 inline 107 const G4ParticleDefinition& aParticleType) << 154 G4bool G4OpRayleigh::IsApplicable(const G4ParticleDefinition& aParticleType) 108 { 155 { 109 return (&aParticleType == G4OpticalPhoton::O << 156 return ( &aParticleType == G4OpticalPhoton::OpticalPhoton() ); 110 } 157 } 111 158 112 inline void G4OpRayleigh::DumpPhysicsTable() c << 159 inline >> 160 void G4OpRayleigh::DumpPhysicsTable() const >> 161 113 { 162 { 114 for(size_t i = 0; i < thePhysicsTable->entri << 163 G4int PhysicsTableSize = thePhysicsTable->entries(); 115 { << 164 G4PhysicsOrderedFreeVector *v; 116 ((G4PhysicsFreeVector*) (*thePhysicsTable) << 165 117 } << 166 for (G4int i = 0 ; i < PhysicsTableSize ; i++ ) >> 167 { >> 168 v = (G4PhysicsOrderedFreeVector*)(*thePhysicsTable)[i]; >> 169 v->DumpValues(); >> 170 } 118 } 171 } 119 172 120 inline G4PhysicsTable* G4OpRayleigh::GetPhysic 173 inline G4PhysicsTable* G4OpRayleigh::GetPhysicsTable() const 121 { 174 { 122 return thePhysicsTable; 175 return thePhysicsTable; 123 } 176 } >> 177 124 178 125 #endif /* G4OpRayleigh_h */ 179 #endif /* G4OpRayleigh_h */ 126 180