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