Geant4  10.01.p01
G4PreCompoundAlpha.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id: G4PreCompoundAlpha.cc 82765 2014-07-08 14:25:39Z gcosmo $
27 //
28 // -------------------------------------------------------------------
29 //
30 // GEANT4 Class file
31 //
32 //
33 // File name: G4PreCompoundAlpha
34 //
35 // Author: V.Lara
36 //
37 // Modified:
38 // 21.08.2008 J. M. Quesada add choice of options
39 // 20.08.2010 V.Ivanchenko added G4Pow and G4PreCompoundParameters pointers
40 // use int Z and A and cleanup
41 // 05.07.2013 J.M. Quesada FactorialFactor fixed
42 //
43 
44 #include "G4PreCompoundAlpha.hh"
45 #include "G4SystemOfUnits.hh"
46 #include "G4Alpha.hh"
47 
49  : G4PreCompoundIon(G4Alpha::Alpha(), &theAlphaCoulombBarrier)
50 {
51  ResidualA = GetRestA();
52  ResidualZ = GetRestZ();
53  theA = GetA();
54  theZ = GetZ();
58 }
59 
61 {}
62 
64 {
65  return G4double((N-4)*(P-3)*(N-3)*(P-2))*G4double((N-2)*(P-1)*(N-1)*P)/144.0;
66 }
67 
69 {
70  return 4096.0/G4double(A*A*A);
71 }
72 
74 {
75  G4double rj = 0.0;
76  if(nCharged >=2 && (nParticles-nCharged) >=2 ) {
77  G4double denominator =
78  G4double(nParticles*(nParticles-1)*(nParticles-2)*(nParticles-3));
79  rj = 6.0*nCharged*(nCharged-1)*(nParticles-nCharged)*(nParticles-nCharged-1)
80  /denominator;
81  }
82  return rj;
83 }
84 
86 //J. M. Quesada (Dec 2007-June 2008): New inverse reaction cross sections
87 //OPT=0 Dostrovski's parameterization
88 //OPT=1,2 Chatterjee's paramaterization
89 //OPT=3,4 Kalbach's parameterization
90 //
92 {
93  ResidualA = GetRestA();
94  ResidualZ = GetRestZ();
95  theA = GetA();
96  theZ = GetZ();
100 
101  if (OPTxs==0) { return GetOpt0( K); }
102  else if( OPTxs==1 || OPTxs==2) { return GetOpt12( K); }
103  else if (OPTxs==3 || OPTxs==4) { return GetOpt34( K); }
104  else{
105  std::ostringstream errOs;
106  errOs << "BAD Alpha CROSS SECTION OPTION !!" <<G4endl;
107  throw G4HadronicException(__FILE__, __LINE__, errOs.str());
108  return 0.;
109  }
110 }
111 
113 {
114  G4double C = 0.0;
115  G4int aZ = theZ + ResidualZ;
116  if (aZ <= 30)
117  {
118  C = 0.10;
119  }
120  else if (aZ <= 50)
121  {
122  C = 0.1 - (aZ-30)*0.001;
123  }
124  else if (aZ < 70)
125  {
126  C = 0.08 - (aZ-50)*0.001;
127  }
128  else
129  {
130  C = 0.06;
131  }
132  return 1.0+C;
133 }
134 
135 //
136 //********************* OPT=1,2 : Chatterjee's cross section ********************
137 //(fitting to cross section from Bechetti & Greenles OM potential)
138 
140 {
141  G4double Kc=K;
142 
143  // JMQ xsec is set constant above limit of validity
144  if (K > 50*MeV) { Kc = 50*MeV; }
145 
146  G4double landa ,mu ,nu ,p , Ec,q,r,ji,xs;
147 
148  G4double p0 = 10.95;
149  G4double p1 = -85.2;
150  G4double p2 = 1146.;
151  G4double landa0 = 0.0643;
152  G4double landa1 = -13.96;
153  G4double mm0 = 781.2;
154  G4double mu1 = 0.29;
155  G4double nu0 = -304.7;
156  G4double nu1 = -470.0;
157  G4double nu2 = -8.580;
158  G4double delta=1.2;
159 
160  Ec = 1.44*theZ*ResidualZ/(1.5*ResidualAthrd+delta);
161  p = p0 + p1/Ec + p2/(Ec*Ec);
162  landa = landa0*ResidualA + landa1;
163  G4double resmu1 = g4pow->powZ(ResidualA,mu1);
164  mu = mm0*resmu1;
165  nu = resmu1*(nu0 + nu1*Ec + nu2*(Ec*Ec));
166  q = landa - nu/(Ec*Ec) - 2*p*Ec;
167  r = mu + 2*nu/Ec + p*(Ec*Ec);
168 
169  ji=std::max(Kc,Ec);
170  if(Kc < Ec) { xs = p*Kc*Kc + q*Kc + r;}
171  else {xs = p*(Kc - ji)*(Kc - ji) + landa*Kc + mu + nu*(2 - Kc/ji)/ji ;}
172 
173  if (xs <0.0) {xs=0.0;}
174 
175  return xs;
176 }
177 
178 // *********** OPT=3,4 : Kalbach's cross sections (from PRECO code)*************
180 // c ** alpha from huizenga and igo
181 {
182  G4double landa, mu, nu, p , signor(1.),sig;
183  G4double ec,ecsq,xnulam,etest(0.),a;
184  G4double b,ecut,cut,ecut2,geom,elab;
185 
186  G4double flow = 1.e-18;
187  G4double spill= 1.e+18;
188 
189  G4double p0 = 10.95;
190  G4double p1 = -85.2;
191  G4double p2 = 1146.;
192  G4double landa0 = 0.0643;
193  G4double landa1 = -13.96;
194  G4double mm0 = 781.2;
195  G4double mu1 = 0.29;
196  G4double nu0 = -304.7;
197  G4double nu1 = -470.0;
198  G4double nu2 = -8.580;
199 
200  G4double ra=1.20;
201 
202  //JMQ 13/02/09 increase of reduced radius to lower the barrier
203  // ec = 1.44 * theZ * ResidualZ / (1.5*ResidualAthrd+ra);
204  ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
205  ecsq = ec * ec;
206  p = p0 + p1/ec + p2/ecsq;
207  landa = landa0*ResidualA + landa1;
208  a = g4pow->powZ(ResidualA,mu1);
209  mu = mm0 * a;
210  nu = a* (nu0+nu1*ec+nu2*ecsq);
211  xnulam = nu / landa;
212  if (xnulam > spill) { xnulam=0.; }
213  if (xnulam >= flow) { etest = 1.2 *std::sqrt(xnulam); }
214 
215  a = -2.*p*ec + landa - nu/ecsq;
216  b = p*ecsq + mu + 2.*nu/ec;
217  ecut = 0.;
218  cut = a*a - 4.*p*b;
219  if (cut > 0.) { ecut = std::sqrt(cut); }
220  ecut = (ecut-a) / (p+p);
221  ecut2 = ecut;
222  //JMQ 290310 for avoiding unphysical increase below minimum (at ecut)
223  // ecut<0 means that there is no cut with energy axis, i.e. xs is set
224  // to 0 bellow minimum
225  // if (cut < 0.) ecut2 = ecut - 2.;
226  if (cut < 0.) { ecut2 = ecut; }
227  elab = K * FragmentA / G4double(ResidualA);
228  sig = 0.;
229 
230  if (elab <= ec) { //start for E<Ec
231  if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; }
232  } //end for E<Ec
233  else { //start for E>Ec
234  sig = (landa*elab+mu+nu/elab) * signor;
235  geom = 0.;
236  if (xnulam < flow || elab < etest) { return sig; }
237  geom = std::sqrt(theA*K);
238  geom = 1.23*ResidualAthrd + ra + 4.573/geom;
239  geom = 31.416 * geom * geom;
240  sig = std::max(geom,sig);
241  } //end for E>Ec
242  return sig;
243 }
virtual G4double CrossSection(G4double ekin)
static const double MeV
Definition: G4SIunits.hh:193
G4double GetOpt34(G4double K)
G4double ResidualA13() const
G4int GetA() const
G4double a
Definition: TRTMaterials.hh:39
G4double GetOpt0(G4double ekin)
int G4int
Definition: G4Types.hh:78
virtual G4double GetAlpha()
G4double Z13(G4int Z) const
Definition: G4Pow.hh:127
virtual G4double GetRj(G4int NumberParticles, G4int NumberCharged)
G4int GetRestZ() const
static const G4double A[nN]
T max(const T t1, const T t2)
brief Return the largest of the two arguments
virtual G4double FactorialFactor(G4int N, G4int P)
G4int GetRestA() const
#define G4endl
Definition: G4ios.hh:61
G4int GetZ() const
virtual G4double CoalescenceFactor(G4int A)
G4double powZ(G4int Z, G4double y) const
Definition: G4Pow.hh:256
double G4double
Definition: G4Types.hh:76
G4double GetOpt12(G4double K)