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

#include <G4NeutronCaptureXS.hh>

+ Inheritance diagram for G4NeutronCaptureXS:

Public Member Functions

 G4NeutronCaptureXS ()
 
 ~G4NeutronCaptureXS () override=default
 
G4bool IsElementApplicable (const G4DynamicParticle *, G4int Z, const G4Material *) final
 
G4bool IsIsoApplicable (const G4DynamicParticle *, G4int Z, G4int A, const G4Element *, const G4Material *) final
 
G4double GetElementCrossSection (const G4DynamicParticle *, G4int Z, const G4Material *) final
 
G4double ComputeCrossSectionPerElement (G4double kinEnergy, G4double loge, const G4ParticleDefinition *, const G4Element *, const G4Material *) final
 
G4double ComputeIsoCrossSection (G4double kinEnergy, G4double loge, const G4ParticleDefinition *, G4int Z, G4int A, const G4Isotope *iso, const G4Element *elm, const G4Material *mat) final
 
G4double GetIsoCrossSection (const G4DynamicParticle *, G4int Z, G4int A, const G4Isotope *iso, const G4Element *elm, const G4Material *mat) final
 
const G4IsotopeSelectIsotope (const G4Element *, G4double kinEnergy, G4double logE) final
 
void BuildPhysicsTable (const G4ParticleDefinition &) final
 
void CrossSectionDescription (std::ostream &) const final
 
G4double ElementCrossSection (G4double kinEnergy, G4double loge, G4int Z)
 
G4double IsoCrossSection (G4double ekin, G4double logekin, G4int Z, G4int A)
 
G4NeutronCaptureXSoperator= (const G4NeutronCaptureXS &right)=delete
 
 G4NeutronCaptureXS (const G4NeutronCaptureXS &)=delete
 
- Public Member Functions inherited from G4VCrossSectionDataSet
 G4VCrossSectionDataSet (const G4String &nam="")
 
virtual ~G4VCrossSectionDataSet ()
 
G4double GetCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=nullptr)
 
G4double ComputeCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=nullptr)
 
virtual void DumpPhysicsTable (const G4ParticleDefinition &)
 
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
 

Static Public Member Functions

static const char * Default_Name ()
 

Additional Inherited Members

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

Detailed Description

Definition at line 57 of file G4NeutronCaptureXS.hh.

Constructor & Destructor Documentation

◆ G4NeutronCaptureXS() [1/2]

G4NeutronCaptureXS::G4NeutronCaptureXS ( )

Definition at line 66 of file G4NeutronCaptureXS.cc.

68 emax(20*CLHEP::MeV), elimit(1.0e-5*CLHEP::eV)
69{
70 verboseLevel = 0;
71 if (verboseLevel > 0) {
72 G4cout << "G4NeutronCaptureXS::G4NeutronCaptureXS: Initialise for Z < "
73 << MAXZCAPTURE << G4endl;
74 }
75 logElimit = G4Log(elimit);
76 if (nullptr == data) {
77 data = new G4ElementData(MAXZCAPTURE+1);
78 data->SetName("nCapture");
79 FindDirectoryPath();
80 }
81}
G4double G4Log(G4double x)
Definition G4Log.hh:227
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
static const char * Default_Name()
G4VCrossSectionDataSet(const G4String &nam="")

Referenced by G4NeutronCaptureXS(), and operator=().

◆ ~G4NeutronCaptureXS()

G4NeutronCaptureXS::~G4NeutronCaptureXS ( )
overridedefault

◆ G4NeutronCaptureXS() [2/2]

G4NeutronCaptureXS::G4NeutronCaptureXS ( const G4NeutronCaptureXS & )
delete

Member Function Documentation

◆ BuildPhysicsTable()

void G4NeutronCaptureXS::BuildPhysicsTable ( const G4ParticleDefinition & p)
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 276 of file G4NeutronCaptureXS.cc.

277{
278 if (verboseLevel > 0){
279 G4cout << "G4NeutronCaptureXS::BuildPhysicsTable for "
280 << p.GetParticleName() << G4endl;
281 }
282 if (p.GetParticleName() != "neutron") {
284 ed << p.GetParticleName() << " is a wrong particle type -"
285 << " only neutron is allowed";
286 G4Exception("G4NeutronCaptureXS::BuildPhysicsTable(..)","had012",
287 FatalException, ed, "");
288 return;
289 }
290
291 // it is possible re-initialisation for the second run
293
294 // initialise static tables only once
295 std::call_once(applyOnce, [this]() { isInitializer = true; });
296
297 if (isInitializer) {
298 G4AutoLock l(&neutronCaptureXSMutex);
299 // Access to elements
300 for ( auto const & elm : *table ) {
301 G4int Z = std::max( 1, std::min( elm->GetZasInt(), MAXZCAPTURE) );
302 if ( nullptr == data->GetElementData(Z) ) { Initialise(Z); }
303 }
304 l.unlock();
305 }
306
307 // prepare isotope selection
308 std::size_t nIso = temp.size();
309 for ( auto const & elm : *table ) {
310 std::size_t n = elm->GetNumberOfIsotopes();
311 if (n > nIso) { nIso = n; }
312 }
313 temp.resize(nIso, 0.0);
314}
G4TemplateAutoLock< G4Mutex > G4AutoLock
std::vector< G4Element * > G4ElementTable
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
int G4int
Definition G4Types.hh:85
static const G4ElementTable * GetElementTable()
Definition G4Element.cc:401
const G4String & GetParticleName() const

◆ ComputeCrossSectionPerElement()

G4double G4NeutronCaptureXS::ComputeCrossSectionPerElement ( G4double kinEnergy,
G4double loge,
const G4ParticleDefinition * ,
const G4Element * elm,
const G4Material *  )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 121 of file G4NeutronCaptureXS.cc.

125{
126 G4double xs = 0.0;
127 if (ekin < emax) {
128 xs = ElementCrossSection(ekin, loge, elm->GetZasInt());
129 }
130 return xs;
131}
double G4double
Definition G4Types.hh:83
G4int GetZasInt() const
Definition G4Element.hh:120
G4double ElementCrossSection(G4double kinEnergy, G4double loge, G4int Z)

◆ ComputeIsoCrossSection()

G4double G4NeutronCaptureXS::ComputeIsoCrossSection ( G4double kinEnergy,
G4double loge,
const G4ParticleDefinition * ,
G4int Z,
G4int A,
const G4Isotope * iso,
const G4Element * elm,
const G4Material * mat )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 159 of file G4NeutronCaptureXS.cc.

164{
165 return IsoCrossSection(ekin, loge, Z, A);
166}
const G4double A[17]
G4double IsoCrossSection(G4double ekin, G4double logekin, G4int Z, G4int A)

◆ CrossSectionDescription()

void G4NeutronCaptureXS::CrossSectionDescription ( std::ostream & outFile) const
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 83 of file G4NeutronCaptureXS.cc.

84{
85 outFile << "G4NeutronCaptureXS calculates the neutron capture cross sections\n"
86 << "on nuclei using data from the high precision neutron database.\n"
87 << "These data are simplified and smoothed over the resonance region\n"
88 << "in order to reduce CPU time. G4NeutronCaptureXS is set to zero\n"
89 << "above 20 MeV for all targets. For Z > 92 the cross section of\n"
90 << "Uranium is used.\n";
91}

◆ Default_Name()

static const char * G4NeutronCaptureXS::Default_Name ( )
inlinestatic

Definition at line 65 of file G4NeutronCaptureXS.hh.

65{return "G4NeutronCaptureXS";}

Referenced by LBE::ConstructHad(), G4NeutronCrossSectionXS::ConstructProcess(), and G4NeutronCaptureXS().

◆ ElementCrossSection()

G4double G4NeutronCaptureXS::ElementCrossSection ( G4double kinEnergy,
G4double loge,
G4int Z )

Definition at line 134 of file G4NeutronCaptureXS.cc.

135{
136 G4int Z = std::min(ZZ, MAXZCAPTURE);
137 G4double ekin = eKin;
138 G4double logEkin = logE;
139 if (ekin < elimit) {
140 ekin = elimit;
141 logEkin = logElimit;
142 }
143
144 auto pv = GetPhysicsVector(Z);
145 const G4double e0 = pv->Energy(0);
146 G4double xs = (ekin >= e0) ? pv->LogVectorValue(ekin, logEkin)
147 : (*pv)[0]*std::sqrt(e0/ekin);
148
149#ifdef G4VERBOSE
150 if (verboseLevel > 1){
151 G4cout << "Ekin= " << ekin/CLHEP::MeV
152 << " ElmXScap(b)= " << xs/CLHEP::barn << G4endl;
153 }
154#endif
155 return xs;
156}

Referenced by ComputeCrossSectionPerElement(), and GetElementCrossSection().

◆ GetElementCrossSection()

G4double G4NeutronCaptureXS::GetElementCrossSection ( const G4DynamicParticle * aParticle,
G4int Z,
const G4Material *  )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 109 of file G4NeutronCaptureXS.cc.

111{
112 G4double xs = 0.0;
113 G4double ekin = aParticle->GetKineticEnergy();
114 if (ekin < emax) {
115 xs = ElementCrossSection(ekin, aParticle->GetLogKineticEnergy(), Z);
116 }
117 return xs;
118}
G4double GetLogKineticEnergy() const
G4double GetKineticEnergy() const

◆ GetIsoCrossSection()

G4double G4NeutronCaptureXS::GetIsoCrossSection ( const G4DynamicParticle * aParticle,
G4int Z,
G4int A,
const G4Isotope * iso,
const G4Element * elm,
const G4Material * mat )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 169 of file G4NeutronCaptureXS.cc.

173{
174 return IsoCrossSection(aParticle->GetKineticEnergy(),
175 aParticle->GetLogKineticEnergy(),
176 Z, A);
177}

◆ IsElementApplicable()

G4bool G4NeutronCaptureXS::IsElementApplicable ( const G4DynamicParticle * ,
G4int Z,
const G4Material *  )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 94 of file G4NeutronCaptureXS.cc.

96{
97 return true;
98}

◆ IsIsoApplicable()

G4bool G4NeutronCaptureXS::IsIsoApplicable ( const G4DynamicParticle * ,
G4int Z,
G4int A,
const G4Element * ,
const G4Material *  )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 101 of file G4NeutronCaptureXS.cc.

104{
105 return true;
106}

◆ IsoCrossSection()

G4double G4NeutronCaptureXS::IsoCrossSection ( G4double ekin,
G4double logekin,
G4int Z,
G4int A )

Definition at line 179 of file G4NeutronCaptureXS.cc.

181{
182 G4double xs = 0.0;
183 if (eKin > emax) { return xs; }
184
185 G4int Z = std::min(ZZ, MAXZCAPTURE);
186 G4double ekin = eKin;
187 G4double logEkin = logE;
188 if (ekin < elimit) {
189 ekin = elimit;
190 logEkin = logElimit;
191 }
192
193 auto pv = GetPhysicsVector(Z);
194 if (pv == nullptr) { return xs; }
195
196 // use isotope x-section if possible
197 if (data->GetNumberOfComponents(Z) > 0) {
198 G4PhysicsVector* pviso = data->GetComponentDataByID(Z, A);
199 if(pviso != nullptr) {
200 const G4double e0 = pviso->Energy(0);
201 xs = (ekin >= e0) ? pviso->LogVectorValue(ekin, logEkin)
202 : (*pviso)[0]*std::sqrt(e0/ekin);
203#ifdef G4VERBOSE
204 if(verboseLevel > 0) {
205 G4cout << "G4NeutronCaptureXS::IsoXS: Ekin(MeV)= " << ekin/MeV
206 << " xs(b)= " << xs/barn
207 << " Z= " << Z << " A= " << A << G4endl;
208 }
209#endif
210 return xs;
211 }
212 }
213 // isotope data are not available or applicable
214 const G4double e0 = pv->Energy(0);
215 xs = (ekin >= e0) ? pv->LogVectorValue(ekin, logEkin)
216 : (*pv)[0]*std::sqrt(e0/ekin);
217#ifdef G4VERBOSE
218 if (verboseLevel > 0) {
219 G4cout << "G4NeutronCaptureXS::IsoXS: Ekin(MeV)= " << ekin/MeV
220 << " xs(b)= " << xs/barn
221 << " Z= " << Z << " A= " << A << " no iso XS" << G4endl;
222 }
223#endif
224 return xs;
225}
G4double Energy(const std::size_t index) const
G4double LogVectorValue(const G4double energy, const G4double theLogEnergy) const

Referenced by ComputeIsoCrossSection(), GetIsoCrossSection(), and SelectIsotope().

◆ operator=()

G4NeutronCaptureXS & G4NeutronCaptureXS::operator= ( const G4NeutronCaptureXS & right)
delete

◆ SelectIsotope()

const G4Isotope * G4NeutronCaptureXS::SelectIsotope ( const G4Element * anElement,
G4double kinEnergy,
G4double logE )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 228 of file G4NeutronCaptureXS.cc.

230{
231 G4int nIso = (G4int)anElement->GetNumberOfIsotopes();
232 const G4Isotope* iso = anElement->GetIsotope(0);
233
234 //G4cout << "SelectIsotope NIso= " << nIso << G4endl;
235 if(1 == nIso) { return iso; }
236
237 // more than 1 isotope
238 G4int Z = anElement->GetZasInt();
239 if (nullptr == data->GetElementData(Z)) { InitialiseOnFly(Z); }
240
241 const G4double* abundVector = anElement->GetRelativeAbundanceVector();
243 G4double sum = 0.0;
244
245 // is there isotope wise cross section?
246 G4int j;
247 if (Z > MAXZCAPTURE || 0 == data->GetNumberOfComponents(Z)) {
248 for (j = 0; j<nIso; ++j) {
249 sum += abundVector[j];
250 if(q <= sum) {
251 iso = anElement->GetIsotope(j);
252 break;
253 }
254 }
255 return iso;
256 }
257 G4int nn = (G4int)temp.size();
258 if (nn < nIso) { temp.resize(nIso, 0.); }
259
260 for (j=0; j<nIso; ++j) {
261 sum += abundVector[j]*IsoCrossSection(kinEnergy, logE, Z,
262 anElement->GetIsotope(j)->GetN());
263 temp[j] = sum;
264 }
265 sum *= q;
266 for (j = 0; j<nIso; ++j) {
267 if (temp[j] >= sum) {
268 iso = anElement->GetIsotope(j);
269 break;
270 }
271 }
272 return iso;
273}
#define G4UniformRand()
Definition Randomize.hh:52
G4double * GetRelativeAbundanceVector() const
Definition G4Element.hh:149
std::size_t GetNumberOfIsotopes() const
Definition G4Element.hh:143
const G4Isotope * GetIsotope(G4int iso) const
Definition G4Element.hh:151
G4int GetN() const
Definition G4Isotope.hh:83

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