Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4EMDissociationCrossSection Class Reference

#include <G4EMDissociationCrossSection.hh>

+ Inheritance diagram for G4EMDissociationCrossSection:

Public Member Functions

 G4EMDissociationCrossSection ()
 
 ~G4EMDissociationCrossSection () override
 
G4bool IsElementApplicable (const G4DynamicParticle *, G4int Z, const G4Material *) override
 
G4double GetElementCrossSection (const G4DynamicParticle *, G4int Z, const G4Material *) override
 
G4PhysicsFreeVectorGetCrossSectionForProjectile (G4double, G4double, G4double, G4double, G4double, G4double)
 
G4PhysicsFreeVectorGetCrossSectionForTarget (G4double, G4double, G4double, G4double, G4double, G4double)
 
G4double GetWilsonProbabilityForProtonDissociation (G4double, G4double)
 
- Public Member Functions inherited from G4VCrossSectionDataSet
 G4VCrossSectionDataSet (const G4String &nam="")
 
virtual ~G4VCrossSectionDataSet ()
 
virtual G4bool IsIsoApplicable (const G4DynamicParticle *, G4int Z, G4int A, const G4Element *elm=nullptr, const G4Material *mat=nullptr)
 
G4double GetCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=nullptr)
 
G4double ComputeCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=nullptr)
 
virtual G4double ComputeCrossSectionPerElement (G4double kinEnergy, G4double loge, const G4ParticleDefinition *, const G4Element *, const G4Material *mat=nullptr)
 
virtual G4double GetIsoCrossSection (const G4DynamicParticle *, G4int Z, G4int A, const G4Isotope *iso=nullptr, const G4Element *elm=nullptr, const G4Material *mat=nullptr)
 
virtual G4double ComputeIsoCrossSection (G4double kinEnergy, G4double loge, const G4ParticleDefinition *, G4int Z, G4int A, const G4Isotope *iso=nullptr, const G4Element *elm=nullptr, const G4Material *mat=nullptr)
 
virtual const G4IsotopeSelectIsotope (const G4Element *, G4double kinEnergy, G4double logE)
 
virtual void BuildPhysicsTable (const G4ParticleDefinition &)
 
virtual void DumpPhysicsTable (const G4ParticleDefinition &)
 
virtual void CrossSectionDescription (std::ostream &) const
 
virtual void SetVerboseLevel (G4int value)
 
G4double GetMinKinEnergy () const
 
void SetMinKinEnergy (G4double value)
 
G4double GetMaxKinEnergy () const
 
void SetMaxKinEnergy (G4double value)
 
bool ForAllAtomsAndEnergies () const
 
void SetForAllAtomsAndEnergies (G4bool val)
 
const G4StringGetName () const
 
void SetName (const G4String &nam)
 
G4VCrossSectionDataSetoperator= (const G4VCrossSectionDataSet &right)=delete
 
 G4VCrossSectionDataSet (const G4VCrossSectionDataSet &)=delete
 

Additional Inherited Members

- Protected Attributes inherited from G4VCrossSectionDataSet
G4int verboseLevel {0}
 
G4String name
 

Detailed Description

Definition at line 79 of file G4EMDissociationCrossSection.hh.

Constructor & Destructor Documentation

◆ G4EMDissociationCrossSection()

G4EMDissociationCrossSection::G4EMDissociationCrossSection ( )

Definition at line 79 of file G4EMDissociationCrossSection.cc.

80 : G4VCrossSectionDataSet("Electromagnetic dissociation")
81{
82 // This function makes use of the class which can sample the virtual photon
83 // spectrum, G4EMDissociationSpectrum.
84
85 thePhotonSpectrum = new G4EMDissociationSpectrum();
86
87 // Define other constants.
88
89 r0 = 1.18 * fermi;
90 J = 36.8 * MeV;
91 Qprime = 17.0 * MeV;
92 epsilon = 0.0768;
93 xd = 0.25;
94}
G4VCrossSectionDataSet(const G4String &nam="")

◆ ~G4EMDissociationCrossSection()

G4EMDissociationCrossSection::~G4EMDissociationCrossSection ( )
override

Definition at line 98 of file G4EMDissociationCrossSection.cc.

99{
100 delete thePhotonSpectrum;
101}

Member Function Documentation

◆ GetCrossSectionForProjectile()

G4PhysicsFreeVector * G4EMDissociationCrossSection::GetCrossSectionForProjectile ( G4double AP,
G4double ZP,
G4double ,
G4double ZT,
G4double b,
G4double bmin )

Definition at line 170 of file G4EMDissociationCrossSection.cc.

172{
173//
174//
175// Use Wilson et al's approach to calculate the cross-sections due to the E1
176// and E2 moments of the field at the giant dipole and quadrupole resonances
177// respectively, Note that the algorithm is traditionally applied to the
178// EMD break-up of the projectile in the field of the target, as is implemented
179// here.
180//
181// Initialise variables and calculate the energies for the GDR and GQR.
182//
183 G4double AProot3 = G4Pow::GetInstance()->A13(AP);
184 G4double u = 3.0 * J / Qprime / AProot3;
185 G4double R0 = r0 * AProot3;
186 G4double E_GDR = hbarc / std::sqrt(0.7*amu_c2*R0*R0/8.0/J*
187 (1.0 + u - (1.0 + epsilon + 3.0*u)/(1.0 + epsilon + u)*epsilon));
188 G4double E_GQR = 63.0 * MeV / AProot3;
189//
190//
191// Determine the virtual photon spectra at these energies.
192//
193 G4double ZTsq = ZT * ZT;
194 G4double nE1 = ZTsq *
195 thePhotonSpectrum->GetGeneralE1Spectrum(E_GDR, b, bmin);
196 G4double nE2 = ZTsq *
197 thePhotonSpectrum->GetGeneralE2Spectrum(E_GQR, b, bmin);
198//
199//
200// Now calculate the cross-section of the projectile for interaction with the
201// E1 and E2 fields.
202//
203 G4double sE1 = 60.0 * millibarn * MeV * (AP-ZP)*ZP/AP;
204 G4double sE2 = 0.22 * microbarn / MeV * ZP * AProot3 * AProot3;
205 if (AP > 100.0) sE2 *= 0.9;
206 else if (AP > 40.0) sE2 *= 0.6;
207 else sE2 *= 0.3;
208//
209//
210// ... and multiply with the intensity of the virtual photon spectra to get
211// the probability of interaction.
212//
213 G4PhysicsFreeVector *theCrossSectionVector = new G4PhysicsFreeVector(2);
214 theCrossSectionVector->PutValue(0, E_GDR, sE1*nE1);
215 theCrossSectionVector->PutValue(1, E_GQR, sE2*nE2*E_GQR*E_GQR);
216
217 return theCrossSectionVector;
218}
double G4double
Definition G4Types.hh:83
void PutValue(const std::size_t index, const G4double e, const G4double value)
static G4Pow * GetInstance()
Definition G4Pow.cc:41
G4double A13(G4double A) const
Definition G4Pow.cc:116

Referenced by GetCrossSectionForTarget(), and GetElementCrossSection().

◆ GetCrossSectionForTarget()

G4PhysicsFreeVector * G4EMDissociationCrossSection::GetCrossSectionForTarget ( G4double AP,
G4double ZP,
G4double AT,
G4double ZT,
G4double b,
G4double bmin )

Definition at line 223 of file G4EMDissociationCrossSection.cc.

225{
226//
227// This is a cheaky little member function to calculate the probability of
228// EMD for the target in the field of the projectile ... just by reversing the
229// A and Z's for the participants.
230//
231 return GetCrossSectionForProjectile (AT, ZT, AP, ZP, b, bmin);
232}
G4PhysicsFreeVector * GetCrossSectionForProjectile(G4double, G4double, G4double, G4double, G4double, G4double)

Referenced by GetElementCrossSection().

◆ GetElementCrossSection()

G4double G4EMDissociationCrossSection::GetElementCrossSection ( const G4DynamicParticle * theDynamicParticle,
G4int Z,
const G4Material *  )
overridevirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 124 of file G4EMDissociationCrossSection.cc.

127{
128 // VI protection for Hydrogen
129 if(1 >= Z) { return 0.0; }
130
131 // Zero cross-section for particles with kinetic energy less than 2 MeV to prevent
132 // possible abort signal from bad arithmetic in GetCrossSectionForProjectile
133 if ( theDynamicParticle->GetKineticEnergy() < 2.0*CLHEP::MeV ) { return 0.0; }
134
135 //
136 // Get relevant information about the projectile and target (A, Z) and
137 // velocity of the projectile.
138 //
139 const G4ParticleDefinition *definitionP = theDynamicParticle->GetDefinition();
140 G4double AP = definitionP->GetBaryonNumber();
141 G4double ZP = definitionP->GetPDGCharge();
142 G4double b = theDynamicParticle->GetBeta();
143 if (b <= 0.0 && b >= 1.0) { return 0.0; }
144
146 G4double ZT = (G4double)Z;
147 G4double bmin = thePhotonSpectrum->GetClosestApproach(AP, ZP, AT, ZT, b);
148 //
149 //
150 // Calculate the cross-section for the projectile and then the target. The
151 // information is returned in a G4PhysicsFreeVector, which separates out the
152 // cross-sections for the E1 and E2 moments of the virtual photon field, and
153 // the energies (GDR and GQR).
154 //
155 G4PhysicsFreeVector *theProjectileCrossSections =
156 GetCrossSectionForProjectile (AP, ZP, AT, ZT, b, bmin);
157 G4double crossSection =
158 (*theProjectileCrossSections)[0]+(*theProjectileCrossSections)[1];
159 delete theProjectileCrossSections;
160 G4PhysicsFreeVector *theTargetCrossSections =
161 GetCrossSectionForTarget (AP, ZP, AT, ZT, b, bmin);
162 crossSection +=
163 (*theTargetCrossSections)[0]+(*theTargetCrossSections)[1];
164 delete theTargetCrossSections;
165 return crossSection;
166}
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
G4double GetBeta() const
G4PhysicsFreeVector * GetCrossSectionForTarget(G4double, G4double, G4double, G4double, G4double, G4double)
static G4NistManager * Instance()
G4double GetAtomicMassAmu(const G4String &symb) const

◆ GetWilsonProbabilityForProtonDissociation()

G4double G4EMDissociationCrossSection::GetWilsonProbabilityForProtonDissociation ( G4double A,
G4double Z )

Definition at line 237 of file G4EMDissociationCrossSection.cc.

239{
240//
241// This is a simple algorithm to choose whether a proton or neutron is ejected
242// from the nucleus in the EMD interaction.
243//
244 G4double p = 0.0;
245 if (Z < 2.0)
246 p = 0.0; // To avoid to remove one proton from hydrogen isotopes
247 else if (Z < 6.0)
248 p = 0.5;
249 else if (Z < 8.0)
250 p = 0.6;
251 else if (Z < 14.0)
252 p = 0.7;
253 else
254 {
255 G4double p1 = (G4double) Z / (G4double) A;
256 G4double p2 = 1.95*G4Exp(-0.075*Z);
257 if (p1 < p2) p = p1;
258 else p = p2;
259 }
260
261 return p;
262}
G4double G4Exp(G4double initial_x)
Exponential Function double precision.
Definition G4Exp.hh:180
const G4double A[17]

◆ IsElementApplicable()

G4bool G4EMDissociationCrossSection::IsElementApplicable ( const G4DynamicParticle * part,
G4int Z,
const G4Material *  )
overridevirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 105 of file G4EMDissociationCrossSection.cc.

107{
108//
109// The condition for the applicability of this class is that the projectile
110// must be an ion and the target must have more than one nucleon. In reality
111// the value of A for either the projectile or target could be much higher,
112// since for cases where both he projectile and target are medium to small
113// Z, the probability of the EMD process is, I think, VERY small.
114//
115 if (G4ParticleTable::GetParticleTable()->GetIonTable()->IsIon(part->GetDefinition())) {
116 return true;
117 } else {
118 return false;
119 }
120}
static G4ParticleTable * GetParticleTable()

The documentation for this class was generated from the following files: