Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4IonsShenCrossSection.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 // 18-Sep-2003 First version is written by T. Koi
27 // 12-Nov-2003 Add energy check at lower side T. Koi
28 // 15-Nov-2006 Above 10GeV/n Cross Section become constant T. Koi (SLAC/SCCS)
29 // 23-Dec-2006 Isotope dependence adde by D. Wright
30 // 14-Mar-2011 Moved constructor, destructor and virtual methods to source by V.Ivanchenko
31 // 19-Aug-2011 V.Ivanchenko move to new design and make x-section per element
32 //
33 
35 #include "G4PhysicalConstants.hh"
36 #include "G4SystemOfUnits.hh"
37 #include "G4DynamicParticle.hh"
38 #include "G4NucleiProperties.hh"
39 #include "G4HadTmpUtil.hh"
40 #include "G4NistManager.hh"
41 #include "G4Pow.hh"
42 
44  : G4VCrossSectionDataSet("IonsShen"),
45  upperLimit( 10*GeV ), lowerLimit( 10*MeV ), r0 ( 1.1 )
46 {}
47 
49 {}
50 
51 void
53 {
54  outFile << "G4IonsShenCrossSection calculates the total reaction cross\n"
55  << "section for nucleus-nucleus scattering using the Shen\n"
56  << "parameterization. It is valid for projectiles and targets of\n"
57  << "all Z, and projectile energies up to 1 TeV/n. Above 10 GeV/n"
58  << "the cross section is constant. Below 10 MeV/n zero cross\n"
59  << "is returned.\n";
60 }
61 
63  G4int, const G4Material*)
64 {
65  return (1 <= aDP->GetDefinition()->GetBaryonNumber());
66 }
67 
68 G4double
70  G4int Z,
71  const G4Material*)
72 {
73  G4int A = G4lrint(G4NistManager::Instance()->GetAtomicMassAmu(Z));
74  return GetIsoCrossSection(aParticle, Z, A);
75 }
76 
78  G4int Zt, G4int At,
79  const G4Isotope*,
80  const G4Element*,
81  const G4Material*)
82 
83 {
84  G4double xsection = 0.0;
85 
86  G4int Ap = aParticle->GetDefinition()->GetBaryonNumber();
87  G4int Zp = G4lrint(aParticle->GetDefinition()->GetPDGCharge()/eplus);
88  G4double ke_per_N = aParticle->GetKineticEnergy() / Ap;
89  if ( ke_per_N > upperLimit ) { ke_per_N = upperLimit; }
90 
91  // Apply energy check, if less than lower limit then 0 value is returned
92  //if ( ke_per_N < lowerLimit ) { return xsection; }
93 
94  G4Pow* g4pow = G4Pow::GetInstance();
95 
96  G4double cubicrAt = g4pow->Z13(At);
97  G4double cubicrAp = g4pow->Z13(Ap);
98 
99  G4double Rt = 1.12 * cubicrAt - 0.94 * ( 1.0 / cubicrAt );
100  G4double Rp = 1.12 * cubicrAp - 0.94 * ( 1.0 / cubicrAp );
101 
102  G4double r = Rt + Rp + 3.2; // in fm
103  G4double b = 1.0; // in MeV/fm
104  G4double targ_mass = G4NucleiProperties::GetNuclearMass(At, Zt);
105 
106  G4double proj_mass = aParticle->GetMass();
107  G4double proj_momentum = aParticle->GetMomentum().mag();
108 
109  G4double Ecm = calEcmValue (proj_mass, targ_mass, proj_momentum);
110 
111  G4double B = 1.44 * Zt * Zp / r - b * Rt * Rp / ( Rt + Rp );
112  if(Ecm <= B) { return xsection; }
113 
114  G4double c = calCeValue ( ke_per_N / MeV );
115 
116  G4double R1 = r0 * (cubicrAt + cubicrAp + 1.85*cubicrAt*cubicrAp/(cubicrAt + cubicrAp) - c);
117 
118  G4double R2 = 1.0 * ( At - 2 * Zt ) * Zp / ( Ap * At );
119 
120 
121  G4double R3 = (0.176 / g4pow->A13(Ecm)) * cubicrAt * cubicrAp /(cubicrAt + cubicrAp);
122 
123  G4double R = R1 + R2 + R3;
124 
125  xsection = 10 * pi * R * R * ( 1 - B / Ecm );
126  xsection = xsection * millibarn; // mulitply xsection by millibarn
127 
128  return xsection;
129 }
130 
131 G4double
132 G4IonsShenCrossSection::calEcmValue(const G4double mp, const G4double mt,
133  const G4double Plab)
134 {
135  G4double Elab = std::sqrt ( mp * mp + Plab * Plab );
136  G4double Ecm = std::sqrt ( mp * mp + mt * mt + 2 * Elab * mt );
137  G4double Pcm = Plab * mt / Ecm;
138  G4double KEcm = std::sqrt ( Pcm * Pcm + mp * mp ) - mp;
139  return KEcm;
140 }
141 
142 
143 G4double G4IonsShenCrossSection::calCeValue(const G4double ke)
144 {
145  // Calculate c value
146  // This value is indepenent from projectile and target particle
147  // ke is projectile kinetic energy per nucleon in the Lab system
148  // with MeV unit
149  // fitting function is made by T. Koi
150  // There are no data below 30 MeV/n in Kox et al.,
151 
152  G4double Ce;
153  G4double log10_ke = std::log10 ( ke );
154  if (log10_ke > 1.5)
155  {
156  Ce = -10.0/std::pow(G4double(log10_ke), G4double(5)) + 2.0;
157  }
158  else
159  {
160  Ce = (-10.0/std::pow(G4double(1.5), G4double(5) ) + 2.0) /
161  std::pow(G4double(1.5) , G4double(3)) * std::pow(G4double(log10_ke), G4double(3));
162  }
163  return Ce;
164 }
165