00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 #ifndef G4FORWARDXRAYTR_H
00044 #define G4FORWARDXRAYTR_H
00045
00046
00047 #include "globals.hh"
00048 #include "templates.hh"
00049 #include "geomdefs.hh"
00050 #include "Randomize.hh"
00051 #include "G4Step.hh"
00052 #include "G4VDiscreteProcess.hh"
00053 #include "G4DynamicParticle.hh"
00054 #include "G4Material.hh"
00055 #include "G4LogicalBorderSurface.hh"
00056 #include "G4LogicalSkinSurface.hh"
00057 #include "G4OpticalSurface.hh"
00058 #include "G4OpticalPhoton.hh"
00059 #include "G4TransportationManager.hh"
00060
00061 #include "G4TransitionRadiation.hh"
00062 #include "G4PhysicsTable.hh"
00063 #include "G4Gamma.hh"
00064 #include "G4PhysicsLogVector.hh"
00065
00066 class G4ForwardXrayTR : public G4TransitionRadiation
00067 {
00068 public:
00069
00070
00071
00072 G4ForwardXrayTR( const G4String& matName1,
00073 const G4String& matName2,
00074 const G4String& processName="XrayTR" );
00075
00076 G4ForwardXrayTR( const G4String& processName="XrayTR" );
00077
00078
00079
00080 virtual ~G4ForwardXrayTR();
00081
00083
00084 void BuildXrayTRtables();
00085
00086 G4double GetMeanFreePath(const G4Track&, G4double,
00087 G4ForceCondition* condition);
00088
00089 G4VParticleChange* PostStepDoIt( const G4Track& aTrack,
00090 const G4Step& aStep );
00091
00092 G4double GetEnergyTR(G4int iMat, G4int jMat, G4int iTkin) const;
00093
00094 G4double GetThetaTR(G4int iMat, G4int jMat, G4int iTkin) const;
00095
00096
00098
00099
00100 G4double SpectralAngleTRdensity( G4double energy,
00101 G4double varAngle ) const;
00102
00103 G4double AngleDensity( G4double energy,
00104 G4double varAngle ) const;
00105
00106 G4double EnergyInterval( G4double energy1,
00107 G4double energy2,
00108 G4double varAngle ) const;
00109
00110 G4double AngleSum( G4double varAngle1,
00111 G4double varAngle2 ) const;
00112
00114
00115 G4double SpectralDensity( G4double energy,
00116 G4double x ) const;
00117
00118 G4double AngleInterval( G4double energy,
00119 G4double varAngle1,
00120 G4double varAngle2 ) const;
00121
00122 G4double EnergySum( G4double energy1,
00123 G4double energy2 ) const;
00124
00125
00127
00128 G4PhysicsTable* GetAngleDistrTable() { return fAngleDistrTable; };
00129 G4PhysicsTable* GetEnergyDistrTable() { return fEnergyDistrTable; };
00130
00131 static G4int GetSympsonNumber() { return fSympsonNumber; };
00132 static G4int GetBinTR() { return fBinTR; };
00133
00134 static G4double GetMinProtonTkin() { return fMinProtonTkin; };
00135 static G4double GetMaxProtonTkin() { return fMaxProtonTkin; };
00136 static G4int GetTotBin() { return fTotBin; };
00137
00138
00139 protected:
00140
00141
00142
00143 G4ParticleDefinition* fPtrGamma;
00144
00145 const std::vector<G4double>* fGammaCutInKineticEnergy;
00146
00147 G4double fGammaTkinCut;
00148
00149 G4PhysicsTable* fAngleDistrTable;
00150 G4PhysicsTable* fEnergyDistrTable;
00151
00152 G4PhysicsLogVector* fProtonEnergyVector;
00153
00154 static G4int fSympsonNumber;
00155
00156 static G4double fTheMinEnergyTR;
00157 static G4double fTheMaxEnergyTR;
00158 G4double fMinEnergyTR;
00159 G4double fMaxEnergyTR;
00160 static G4double fTheMaxAngle;
00161 static G4double fTheMinAngle;
00162 G4double fMaxThetaTR;
00163 static G4int fBinTR;
00164
00165 static G4double fMinProtonTkin;
00166 static G4double fMaxProtonTkin;
00167 static G4int fTotBin;
00168 G4double fGamma;
00169
00170 static G4double fPlasmaCof;
00171 static G4double fCofTR;
00172
00173 G4double fSigma1;
00174 G4double fSigma2;
00175
00176 private:
00177
00178
00179 G4ForwardXrayTR(const G4ForwardXrayTR& right) ;
00180
00181 G4ForwardXrayTR& operator=(const G4ForwardXrayTR& right);
00182
00183
00184
00185
00186 };
00187
00188 #endif // G4FORWARDXRAYTR_H
00189
00190
00191