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
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060 #ifndef G4MuBremsstrahlungModel_h
00061 #define G4MuBremsstrahlungModel_h 1
00062
00063 #include <CLHEP/Units/PhysicalConstants.h>
00064
00065 #include "G4VEmModel.hh"
00066 #include "G4NistManager.hh"
00067
00068 class G4Element;
00069 class G4ParticleChangeForLoss;
00070
00071 class G4MuBremsstrahlungModel : public G4VEmModel
00072 {
00073
00074 public:
00075
00076 G4MuBremsstrahlungModel(const G4ParticleDefinition* p = 0,
00077 const G4String& nam = "MuBrem");
00078
00079 virtual ~G4MuBremsstrahlungModel();
00080
00081 virtual void Initialise(const G4ParticleDefinition*, const G4DataVector&);
00082
00083 virtual G4double MinEnergyCut(const G4ParticleDefinition*,
00084 const G4MaterialCutsCouple*);
00085
00086 virtual G4double ComputeCrossSectionPerAtom(
00087 const G4ParticleDefinition*,
00088 G4double kineticEnergy,
00089 G4double Z, G4double A,
00090 G4double cutEnergy,
00091 G4double maxEnergy);
00092
00093 virtual G4double ComputeDEDXPerVolume(const G4Material*,
00094 const G4ParticleDefinition*,
00095 G4double kineticEnergy,
00096 G4double cutEnergy);
00097
00098 virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*,
00099 const G4MaterialCutsCouple*,
00100 const G4DynamicParticle*,
00101 G4double tmin,
00102 G4double maxEnergy);
00103
00104 inline void SetLowestKineticEnergy(G4double e);
00105
00106 protected:
00107
00108 G4double ComputMuBremLoss(G4double Z, G4double tkin, G4double cut);
00109
00110 G4double ComputeMicroscopicCrossSection(G4double tkin,
00111 G4double Z,
00112 G4double cut);
00113
00114 virtual G4double ComputeDMicroscopicCrossSection(G4double tkin,
00115 G4double Z,
00116 G4double gammaEnergy);
00117
00118 inline void SetParticle(const G4ParticleDefinition*);
00119
00120 private:
00121
00122 G4DataVector* ComputePartialSumSigma(const G4Material* material,
00123 G4double tkin, G4double cut);
00124
00125 const G4Element* SelectRandomAtom(const G4MaterialCutsCouple* couple) const;
00126
00127
00128 G4MuBremsstrahlungModel & operator=(const G4MuBremsstrahlungModel &right);
00129 G4MuBremsstrahlungModel(const G4MuBremsstrahlungModel&);
00130
00131 protected:
00132
00133 const G4ParticleDefinition* particle;
00134 G4NistManager* nist;
00135 G4double mass;
00136 G4double rmass;
00137 G4double cc;
00138 G4double coeff;
00139 G4double sqrte;
00140 G4double bh;
00141 G4double bh1;
00142 G4double btf;
00143 G4double btf1;
00144
00145 private:
00146
00147 G4ParticleDefinition* theGamma;
00148 G4ParticleChangeForLoss* fParticleChange;
00149
00150 G4double lowestKinEnergy;
00151 G4double minThreshold;
00152
00153 G4double fDN[93];
00154
00155 std::vector<G4DataVector*> partialSumSigma;
00156 };
00157
00158
00159
00160 inline void G4MuBremsstrahlungModel::SetLowestKineticEnergy(G4double e)
00161 {
00162 lowestKinEnergy = e;
00163 }
00164
00165
00166
00167 inline
00168 void G4MuBremsstrahlungModel::SetParticle(const G4ParticleDefinition* p)
00169 {
00170 if(!particle) {
00171 particle = p;
00172 mass = particle->GetPDGMass();
00173 rmass=mass/CLHEP::electron_mass_c2 ;
00174 cc=CLHEP::classic_electr_radius/rmass ;
00175 coeff= 16.*CLHEP::fine_structure_const*cc*cc/3. ;
00176 }
00177 }
00178
00179
00180
00181 #endif