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 // >> 26 // >> 27 // $Id: G4InitXscPAI.hh,v 1.8 2006-06-29 19:50:22 gunter Exp $ >> 28 // GEANT4 tag $Name: not supported by cvs2svn $ >> 29 // 25 // 30 // 26 // G4InitXscPAI.hh -- header file 31 // G4InitXscPAI.hh -- header file 27 // 32 // 28 // History: 33 // History: 29 // 34 // 30 // 02.04.04, V. Grichine: 1st version based on 35 // 02.04.04, V. Grichine: 1st version based on G4PAIxSection class 31 36 32 #ifndef G4INITXSCPAI_HH 37 #ifndef G4INITXSCPAI_HH 33 #define G4INITXSCPAI_HH 38 #define G4INITXSCPAI_HH 34 39 35 #include "G4ios.hh" 40 #include "G4ios.hh" 36 #include "globals.hh" 41 #include "globals.hh" 37 #include "Randomize.hh" 42 #include "Randomize.hh" 38 #include "G4OrderedTable.hh" 43 #include "G4OrderedTable.hh" 39 #include "G4PhysicsLogVector.hh" 44 #include "G4PhysicsLogVector.hh" 40 45 41 class G4MaterialCutsCouple; 46 class G4MaterialCutsCouple; 42 class G4SandiaTable; 47 class G4SandiaTable; 43 48 44 class G4InitXscPAI 49 class G4InitXscPAI 45 { 50 { 46 public: 51 public: 47 // Constructors 52 // Constructors 48 explicit G4InitXscPAI( const G4MaterialCutsC << 53 G4InitXscPAI( const G4MaterialCutsCouple* matCC); 49 54 50 ~G4InitXscPAI() ; << 55 virtual ~G4InitXscPAI() ; 51 56 52 // Methods 57 // Methods 53 // General control functions 58 // General control functions 54 59 55 void KillCloseIntervals(); 60 void KillCloseIntervals(); 56 61 57 void Normalisation(); 62 void Normalisation(); 58 63 >> 64 59 // Physical methods 65 // Physical methods >> 66 >> 67 60 G4double RutherfordIntegral( G4int intervalN 68 G4double RutherfordIntegral( G4int intervalNumber, 61 G4double limi 69 G4double limitLow, 62 G4double limitHigh ) ; 70 G4double limitHigh ) ; 63 71 64 G4double IntegralTerm(G4double omega); 72 G4double IntegralTerm(G4double omega); 65 73 66 G4double ImPartDielectricConst( G4int interv 74 G4double ImPartDielectricConst( G4int intervalNumber, 67 G4double e 75 G4double energy ) ; 68 76 69 G4double RePartDielectricConst(G4double ener 77 G4double RePartDielectricConst(G4double energy) ; 70 78 71 G4double ModuleSqDielectricConst( G4int inte 79 G4double ModuleSqDielectricConst( G4int intervalNumber, 72 G4double e 80 G4double energy ) ; 73 81 74 G4double DifPAIxSection( G4double omega ) ; 82 G4double DifPAIxSection( G4double omega ) ; 75 G4double DifPAIdEdx( G4double omega ) ; 83 G4double DifPAIdEdx( G4double omega ) ; 76 84 77 G4double PAIdNdxCherenkov( G4double omega ) 85 G4double PAIdNdxCherenkov( G4double omega ) ; 78 86 79 G4double PAIdNdxPlasmon( G4double omega ) ; 87 G4double PAIdNdxPlasmon( G4double omega ) ; 80 88 81 void IntegralPAIxSection(G4double bg2, G 89 void IntegralPAIxSection(G4double bg2, G4double Tmax) ; 82 void IntegralCherenkov(G4double bg2, G4d 90 void IntegralCherenkov(G4double bg2, G4double Tmax) ; 83 void IntegralPlasmon(G4double bg2, G4dou 91 void IntegralPlasmon(G4double bg2, G4double Tmax) ; 84 92 85 void IntegralPAIdEdx(G4double bg2, G4do 93 void IntegralPAIdEdx(G4double bg2, G4double Tmax) ; 86 94 >> 95 87 G4double GetPhotonLambda( G4double omega ) ; 96 G4double GetPhotonLambda( G4double omega ) ; 88 97 >> 98 89 G4double GetStepEnergyLoss( G4double step ) 99 G4double GetStepEnergyLoss( G4double step ) ; 90 G4double GetStepCerenkovLoss( G4double step 100 G4double GetStepCerenkovLoss( G4double step ) ; 91 G4double GetStepPlasmonLoss( G4double step ) 101 G4double GetStepPlasmonLoss( G4double step ) ; 92 102 93 // Inline access functions 103 // Inline access functions 94 104 95 105 96 G4int GetIntervalNumber() const { return fIn 106 G4int GetIntervalNumber() const { return fIntervalNumber ; } 97 G4int GetBinPAI() const { return fPAIbin ; } 107 G4int GetBinPAI() const { return fPAIbin ; } 98 108 99 G4double GetNormalizationCof() const { retur 109 G4double GetNormalizationCof() const { return fNormalizationCof ; } 100 110 101 G4double GetMatSandiaMatrix(G4int i, G4int j 111 G4double GetMatSandiaMatrix(G4int i, G4int j) const 102 { return (*(*fMatSandiaMatrix)[i])[j 112 { return (*(*fMatSandiaMatrix)[i])[j]; } 103 113 104 G4PhysicsLogVector* GetPAIxscVector() const 114 G4PhysicsLogVector* GetPAIxscVector() const { return fPAIxscVector;} 105 G4PhysicsLogVector* GetPAIdEdxVector() const 115 G4PhysicsLogVector* GetPAIdEdxVector() const { return fPAIdEdxVector;} 106 G4PhysicsLogVector* GetPAIphotonVector() con 116 G4PhysicsLogVector* GetPAIphotonVector() const { return fPAIphotonVector;} 107 G4PhysicsLogVector* GetPAIelectronVector() c 117 G4PhysicsLogVector* GetPAIelectronVector() const { return fPAIelectronVector;} 108 G4PhysicsLogVector* GetChCosSqVector() const 118 G4PhysicsLogVector* GetChCosSqVector() const { return fChCosSqVector;} 109 G4PhysicsLogVector* GetChWidthVector() const 119 G4PhysicsLogVector* GetChWidthVector() const { return fChWidthVector;} 110 120 111 G4InitXscPAI & operator=(const G4InitXscPAI << 121 protected : 112 G4InitXscPAI(const G4InitXscPAI&) = delete; << 113 122 114 private : 123 private : 115 124 >> 125 G4InitXscPAI & operator=(const G4InitXscPAI &right); >> 126 G4InitXscPAI(const G4InitXscPAI&); >> 127 116 // Local class constants 128 // Local class constants 117 129 118 static const G4double fDelta ; // energy shi 130 static const G4double fDelta ; // energy shift from interval border = 0.001 119 static const G4int fPAIbin; 131 static const G4int fPAIbin; 120 static const G4double fSolidDensity; // ~the 132 static const G4double fSolidDensity; // ~the border between gases and solids 121 133 122 G4int fIntervalNumber; // The number 134 G4int fIntervalNumber; // The number of energy intervals 123 G4double fNormalizationCof; // Normalizati 135 G4double fNormalizationCof; // Normalization cof for PhotoAbsorptionXsection 124 G4int fCurrentInterval; 136 G4int fCurrentInterval; 125 G4int fIntervalTmax; 137 G4int fIntervalTmax; 126 G4double fBetaGammaSq ; // (beta*gamm 138 G4double fBetaGammaSq ; // (beta*gamma)^2 127 G4double fTmax; 139 G4double fTmax; 128 G4double fDensity ; // Current de 140 G4double fDensity ; // Current density 129 G4double fElectronDensity ; // Current el 141 G4double fElectronDensity ; // Current electron (number) density 130 142 131 // Arrays of Sandia coefficients 143 // Arrays of Sandia coefficients >> 144 132 G4OrderedTable* fMatSandiaMatrix; 145 G4OrderedTable* fMatSandiaMatrix; 133 G4SandiaTable* fSandia; 146 G4SandiaTable* fSandia; 134 147 135 // vectors of integral cross-sections 148 // vectors of integral cross-sections >> 149 136 G4PhysicsLogVector* fPAIxscVector; 150 G4PhysicsLogVector* fPAIxscVector; 137 G4PhysicsLogVector* fPAIdEdxVector; 151 G4PhysicsLogVector* fPAIdEdxVector; 138 G4PhysicsLogVector* fPAIphotonVector; 152 G4PhysicsLogVector* fPAIphotonVector; 139 G4PhysicsLogVector* fPAIelectronVector; 153 G4PhysicsLogVector* fPAIelectronVector; 140 G4PhysicsLogVector* fChCosSqVector; 154 G4PhysicsLogVector* fChCosSqVector; 141 G4PhysicsLogVector* fChWidthVector; 155 G4PhysicsLogVector* fChWidthVector; >> 156 142 }; 157 }; 143 158 144 #endif 159 #endif 145 160 146 // 161 // 147 // 162 // 148 ///////////////// end of G4InitXscPAI header 163 ///////////////// end of G4InitXscPAI header file ////////////////////// 149 164