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

Classes

class  paraMaker
 

Functions

G4double bindingEnergy (G4int A, G4int Z)
 
G4double bindingEnergyAsymptotic (G4int A, G4int Z)
 
G4double FermiEnergy (G4int A, G4int Z, G4int ntype)
 
G4double getAL (G4int A)
 
G4double csNN (G4double e)
 
G4double csPN (G4double e)
 
G4double G4cbrt (G4double x)
 
G4double G4cbrt (G4int n)
 
G4double randomInuclPowers (G4double ekin, const G4double(&coeff)[4][4])
 
G4double randomGauss (G4double sigma)
 
G4double randomPHI ()
 
std::pair< G4double, G4doublerandomCOS_SIN ()
 
G4double nucleiLevelDensity (G4int A)
 
G4LorentzVector generateWithFixedTheta (G4double ct, G4double p, G4double mass=0.)
 
G4LorentzVector generateWithRandomAngles (G4double p, G4double mass=0.)
 

Function Documentation

◆ bindingEnergy()

G4double G4InuclSpecialFunctions::bindingEnergy ( G4int A,
G4int Z )

Definition at line 36 of file bindingEnergy.cc.

36 {
37 // NOTE: Test condition copied from G4NucleiProperties.cc; not encapsulated
38 if (A < 1 || Z < 0 || Z > A) return 0.;
39
41}
const G4double A[17]
static G4double GetBindingEnergy(const G4int A, const G4int Z)

Referenced by G4BigBanger::deExcite(), G4EquilibriumEvaporator::deExcite(), G4Fissioner::deExcite(), G4NonEquilibriumEvaporator::deExcite(), G4CascadeDeexciteBase::explosion(), G4NucleiModel::fillBindingEnergies(), G4CascadeRecoilMaker::goodNucleus(), and G4NucleiModel::initializeCascad().

◆ bindingEnergyAsymptotic()

G4double G4InuclSpecialFunctions::bindingEnergyAsymptotic ( G4int A,
G4int Z )

Definition at line 33 of file bindingEnergyAsymptotic.cc.

33 {
34 // calculates the nuclei binding energy
35 // using smooth liquid high energy formula
36 G4double X = (1.0 - 2.0*Z/A); X *= X;
37 G4double X1 = G4cbrt(A);
38 G4double X2 = X1 * X1;
39 G4double X3 = 1.0 / X1;
40 G4double X4 = 1.0 / X2;
41 G4double X5 = (1.0 - 0.62025 * X4); X5 *= X5;
42 G4double Z13 = G4cbrt(Z);
43
44 G4double DM = 17.035 * (1.0 - 1.846 * X) * A -
45 25.8357 * (1.0 - 1.712 * X) * X2 * X5 -
46 0.779 * Z * (Z - 1) * X3 *
47 (1.0 - 1.5849 * X4 + 1.2273 / A + 1.5772 * X4 * X4) +
48 0.4328 * Z13*Z13*Z13*Z13 * X3 *
49 (1.0 - 0.57811 * X3 - 0.14518 * X4 + 0.496 / A);
50
51 return DM;
52}
double G4double
Definition G4Types.hh:83

Referenced by G4Fissioner::deExcite().

◆ csNN()

G4double G4InuclSpecialFunctions::csNN ( G4double e)

Definition at line 82 of file G4InuclSpecialFunctions.cc.

82 {
83 G4double snn;
84
85 if (e < 40.0) {
86 snn = -1174.8 / (e * e) + 3088.5 / e + 5.3107;
87 } else {
88 snn = 93074.0 / (e * e) - 11.148 / e + 22.429;
89 }
90
91 return snn;
92}

Referenced by G4NonEquilibriumEvaporator::deExcite().

◆ csPN()

G4double G4InuclSpecialFunctions::csPN ( G4double e)

Definition at line 94 of file G4InuclSpecialFunctions.cc.

94 {
95 G4double spn;
96
97 if (e < 40.0) {
98 spn = -5057.4 / (e * e) + 9069.2 / e + 6.9466;
99 } else {
100 spn = 239380.0 / (e * e) + 1802.0 / e + 27.147;
101 }
102
103 return spn;
104}

Referenced by G4NonEquilibriumEvaporator::deExcite().

◆ FermiEnergy()

G4double G4InuclSpecialFunctions::FermiEnergy ( G4int A,
G4int Z,
G4int ntype )

Definition at line 108 of file G4InuclSpecialFunctions.cc.

108 {
109 G4Pow* g4pow = G4Pow::GetInstance();
110 const G4double C = 55.4 / g4pow->Z23(A);
111 G4double arg = (ntype==0) ? g4pow->Z23(A-Z) : g4pow->Z23(Z);
112
113 return C * arg;
114}
Definition G4Pow.hh:49
static G4Pow * GetInstance()
Definition G4Pow.cc:41
G4double Z23(G4int Z) const
Definition G4Pow.hh:125

Referenced by G4NonEquilibriumEvaporator::deExcite().

◆ G4cbrt() [1/2]

G4double G4InuclSpecialFunctions::G4cbrt ( G4double x)

◆ G4cbrt() [2/2]

G4double G4InuclSpecialFunctions::G4cbrt ( G4int n)

Definition at line 120 of file G4InuclSpecialFunctions.cc.

120 {
121 return n==0 ? 0. : (n<0?-1.:1.)*G4Pow::GetInstance()->Z13(std::abs(n));
122}

◆ generateWithFixedTheta()

G4LorentzVector G4InuclSpecialFunctions::generateWithFixedTheta ( G4double ct,
G4double p,
G4double mass = 0. )

Definition at line 147 of file G4InuclSpecialFunctions.cc.

148 {
149 G4double phi = randomPHI();
150 G4double pt = p * std::sqrt(std::fabs(1.0 - ct * ct));
151
152 // Buffers to avoid memory thrashing
153 static G4ThreadLocal G4ThreeVector *pvec_G4MT_TLS_ = 0;
154 if (!pvec_G4MT_TLS_) {
155 pvec_G4MT_TLS_ = new G4ThreeVector;
156 G4AutoDelete::Register(pvec_G4MT_TLS_);
157 }
158 G4ThreeVector &pvec = *pvec_G4MT_TLS_;
159
160 static G4ThreadLocal G4LorentzVector *momr_G4MT_TLS_ = 0;
161 if (!momr_G4MT_TLS_) {
162 momr_G4MT_TLS_ = new G4LorentzVector;
163 G4AutoDelete::Register(momr_G4MT_TLS_);
164 }
165 G4LorentzVector &momr = *momr_G4MT_TLS_;
166
167 pvec.set(pt*std::cos(phi), pt*std::sin(phi), p*ct);
168 momr.setVectM(pvec, mass);
169
170 return momr;
171}
CLHEP::HepLorentzVector G4LorentzVector
CLHEP::Hep3Vector G4ThreeVector
void set(double x, double y, double z)
void setVectM(const Hep3Vector &spatial, double mass)
void Register(T *inst)
#define G4ThreadLocal
Definition tls.hh:77

Referenced by G4CascadeFinalStateAlgorithm::FillDirManyBody(), G4CascadeFinalStateAlgorithm::FillDirThreeBody(), and G4NucleiModel::initializeCascad().

◆ generateWithRandomAngles()

G4LorentzVector G4InuclSpecialFunctions::generateWithRandomAngles ( G4double p,
G4double mass = 0. )

Definition at line 174 of file G4InuclSpecialFunctions.cc.

174 {
175 std::pair<G4double, G4double> COS_SIN = randomCOS_SIN();
176 G4double phi = randomPHI();
177 G4double pt = p * COS_SIN.second;
178
179 // Buffers to avoid memory thrashing
180 static G4ThreadLocal G4ThreeVector *pvec_G4MT_TLS_ = 0;
181 if (!pvec_G4MT_TLS_) {
182 pvec_G4MT_TLS_ = new G4ThreeVector;
183 G4AutoDelete::Register(pvec_G4MT_TLS_);
184 }
185 G4ThreeVector &pvec = *pvec_G4MT_TLS_;
186
187 static G4ThreadLocal G4LorentzVector *momr_G4MT_TLS_ = 0;
188 if (!momr_G4MT_TLS_) {
189 momr_G4MT_TLS_ = new G4LorentzVector;
190 G4AutoDelete::Register(momr_G4MT_TLS_);
191 }
192 G4LorentzVector &momr = *momr_G4MT_TLS_;
193
194 pvec.set(pt*std::cos(phi), pt*std::sin(phi), p*COS_SIN.first);
195 momr.setVectM(pvec, mass);
196
197 return momr;
198}
std::pair< G4double, G4double > randomCOS_SIN()

Referenced by G4EquilibriumEvaporator::deExcite(), G4Fissioner::deExcite(), G4NonEquilibriumEvaporator::deExcite(), G4NucleiModel::generateNucleonMomentum(), and G4NucleiModel::initializeCascad().

◆ getAL()

G4double G4InuclSpecialFunctions::getAL ( G4int A)

Definition at line 78 of file G4InuclSpecialFunctions.cc.

78 {
79 return 0.76 + 2.2 / G4cbrt(A);
80}

Referenced by G4EquilibriumEvaporator::deExcite(), and G4NonEquilibriumEvaporator::deExcite().

◆ nucleiLevelDensity()

G4double G4InuclSpecialFunctions::nucleiLevelDensity ( G4int A)

Definition at line 32 of file nucleiLevelDensity.cc.

32 {
33 const G4double NLD[226] = {
34 // 20 - 29
35 3.94, 3.84, 3.74, 3.64, 3.55, 4.35, 4.26, 4.09, 3.96, 4.18,
36 // 30 - 39
37 4.39, 4.61, 4.82, 4.44, 4.44, 4.43, 4.42, 5.04, 5.66, 5.8,
38 // 40 - 49
39 5.95, 5.49, 6.18, 7.11, 6.96, 7.2, 7.73, 6.41, 6.85, 6.77,
40 // 50 - 59
41 6.91, 7.3, 7.2, 6.86, 8.06, 7.8, 7.82, 8.41, 8.13, 7.19,
42 // 60 - 69
43 8.35, 8.13, 8.02, 8.93, 8.9, 9.7, 9.65, 10.55, 9.38, 9.72,
44 // 70 - 79
45 10.66, 11.98, 12.76, 12.1, 12.86, 13.0, 12.81, 12.8, 12.65, 12.0,
46 // 80 - 89
47 12.69, 14.05, 13.33, 13.28, 13.22, 13.17, 8.66, 11.03, 10.4, 13.47,
48 // 90 - 99
49 10.17, 12.22, 11.62, 12.95, 13.15, 13.57, 12.87, 16.2, 14.71, 15.69,
50 // 100 - 109
51 14.1, 18.56, 16.22, 16.7, 17.13, 17.0, 16.86, 16.2, 15.61, 16.8,
52 // 110 - 119
53 17.93, 17.5, 16.97, 17.3, 17.6, 15.78, 16.8, 17.49, 16.03, 15.08,
54 // 120 - 129
55 16.74, 17.74, 17.43, 18.1, 17.1, 19.01, 17.02, 17.0, 17.02, 18.51,
56 // 130 - 139
57 17.2, 16.8, 16.97, 16.14, 16.91, 17.69, 15.5, 14.56, 14.35, 16.5,
58 // 140 - 149
59 18.29, 17.8, 17.05, 21.31, 19.15, 19.5, 19.78, 20.3, 20.9, 21.9,
60 // 150 - 159
61 22.89, 25.68, 24.6, 24.91, 23.24, 22.9, 22.46, 21.98, 21.64, 21.8,
62 // 160 - 169
63 21.85, 21.7, 21.69, 23.7, 21.35, 23.03, 20.66, 21.81, 20.77, 22.2,
64 // 170 - 179
65 22.58, 22.55, 21.45, 21.16, 21.02, 20.87, 22.09, 22.0, 21.28, 23.05,
66 // 180 - 189
67 21.7, 21.18, 22.28, 23.0, 22.11, 23.56, 22.83, 24.88, 22.6, 23.5,
68 // 190 - 199
69 23.89, 23.9, 23.94, 21.16, 22.3, 21.7, 21.19, 20.7, 20.29, 21.32,
70 // 200 - 209
71 19.0, 17.93, 17.85, 15.7, 13.54, 11.9, 10.02, 10.48, 10.28, 11.72,
72 // 210 - 219
73 13.81, 14.7, 15.5, 16.3, 17.2, 18.0, 18.9, 19.7, 20.6, 21.4,
74 // 220 - 229
75 22.3, 23.1, 24.0, 24.8, 25.6, 26.5, 27.3, 28.2, 29.0, 29.9,
76 // 230 - 239
77 30.71, 30.53, 31.45, 29.6, 30.2, 30.65, 30.27, 29.52, 30.08, 29.8,
78 // 240 - 245
79 29.87, 30.25, 30.5, 29.8, 29.17, 28.67};
80
81 return (a>=20) ? NLD[a-20] : 0.1*a;
82}

Referenced by G4Fissioner::deExcite().

◆ randomCOS_SIN()

std::pair< G4double, G4double > G4InuclSpecialFunctions::randomCOS_SIN ( )

Definition at line 140 of file G4InuclSpecialFunctions.cc.

140 {
141 G4double CT = 1.0 - 2.0*G4UniformRand();
142
143 return std::pair<G4double, G4double>(CT, std::sqrt(1.0 - CT*CT));
144}
#define G4UniformRand()
Definition Randomize.hh:52

Referenced by generateWithRandomAngles().

◆ randomGauss()

G4double G4InuclSpecialFunctions::randomGauss ( G4double sigma)

Definition at line 125 of file G4InuclSpecialFunctions.cc.

125 {
126 const G4double eps = 1.0e-6;
127 G4double r1 = G4UniformRand();
128 r1 = r1 > eps ? r1 : eps;
129 G4double r2 = G4UniformRand();
130 r2 = r2 > eps ? r2 : eps;
131 r2 = r2 < 1.0 - eps ? r2 : 1.0 - eps;
132
133 return sigma * std::sin(twopi * r1) * std::sqrt(-2.0 * G4Log(r2));
134}

Referenced by G4Fissioner::deExcite().

◆ randomInuclPowers()

G4double G4InuclSpecialFunctions::randomInuclPowers ( G4double ekin,
const G4double(&) coeff[4][4] )

Definition at line 54 of file G4InuclSpecialFunctions.cc.

55 {
56 G4Pow* theG4Pow = G4Pow::GetInstance();
57
58 G4double S = G4UniformRand(); // Random fraction for expansion
59
60 G4double C, V;
61 G4double PQ=0., PR=0.;
62 for (G4int i=0; i<4; i++) {
63 V = 0.0;
64 for (G4int k=0; k<4; k++) {
65 C = coeff[i][k];
66 V += C * theG4Pow->powN(ekin, k);
67 }
68
69 PQ += V;
70 PR += V * theG4Pow->powN(S, i);
71 }
72
73 return std::sqrt(S) * (PR + (1-PQ)*(S*S*S*S));
74}
G4double S(G4double temp)
int G4int
Definition G4Types.hh:85
G4double powN(G4double x, G4int n) const
Definition G4Pow.cc:162

Referenced by G4InuclParamAngDst::GetCosTheta(), and G4InuclParamMomDst::GetMomentum().

◆ randomPHI()

G4double G4InuclSpecialFunctions::randomPHI ( )

Definition at line 136 of file G4InuclSpecialFunctions.cc.

136 {
137 return twopi*G4UniformRand();
138}

Referenced by generateWithFixedTheta(), generateWithRandomAngles(), and G4NucleiModel::initializeCascad().