source: trunk/source/processes/hadronic/cross_sections/src/G4BGGNucleonElasticXS.cc @ 1340

Last change on this file since 1340 was 1340, checked in by garnier, 14 years ago

update ti head

File size: 6.9 KB
Line 
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: G4BGGNucleonElasticXS.cc,v 1.8 2010/10/12 06:02:41 dennis Exp $
27// GEANT4 tag $Name: hadr-cross-V09-03-12 $
28//
29// -------------------------------------------------------------------
30//
31// GEANT4 Class file
32//
33//
34// File name:     G4BGGNucleonElasticXS
35//
36// Author:        Vladimir Ivanchenko
37//
38// Creation date: 13.03.2007
39// Modifications:
40//
41//
42// -------------------------------------------------------------------
43//
44
45#include "G4BGGNucleonElasticXS.hh"
46#include "G4GlauberGribovCrossSection.hh"
47#include "G4NucleonNuclearCrossSection.hh"
48#include "G4HadronNucleonXsc.hh"
49#include "G4Proton.hh"
50#include "G4Neutron.hh"
51#include "G4NistManager.hh"
52
53
54G4BGGNucleonElasticXS::G4BGGNucleonElasticXS(const G4ParticleDefinition*) 
55{
56  verboseLevel = 0;
57  fGlauberEnergy = 91.*GeV;
58  fLowEnergy = 20.*MeV;
59  fNucleon = 0;
60  fGlauber = 0;
61  fHadron  = 0;
62  particle = 0;
63  isProton = false;
64  isInitialized = false;
65}
66
67//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68
69G4BGGNucleonElasticXS::~G4BGGNucleonElasticXS()
70{
71  delete fGlauber;
72  delete fNucleon;
73  delete fHadron;
74}
75
76
77G4double
78G4BGGNucleonElasticXS::GetZandACrossSection(const G4DynamicParticle* dp,
79                                            G4int Z, G4int A, G4double)
80{
81  G4double cross = 0.0;
82  G4double ekin = dp->GetKineticEnergy();
83  if(Z > 92) Z = 92;
84
85  if(ekin <= fLowEnergy) {
86    cross = theCoulombFac[Z];
87    if(isProton) { cross *= CoulombFactor(ekin, A); }
88
89  } else if(Z == 1) {
90    if( A < 2) {
91      fHadron->GetHadronNucleonXscNS(dp, G4Proton::Proton());
92      cross = fHadron->GetElasticHadronNucleonXsc();
93    } else {
94      fHadron->GetHadronNucleonXscNS(dp, G4Proton::Proton());
95      cross = fHadron->GetElasticHadronNucleonXsc();
96      fHadron->GetHadronNucleonXscNS(dp, G4Neutron::Neutron());
97      cross += fHadron->GetElasticHadronNucleonXsc();
98    }
99  } else if(ekin > fGlauberEnergy) {
100    cross = theGlauberFac[Z]*fGlauber->GetElasticGlauberGribov(dp, Z, A);
101  } else {
102    cross = fNucleon->GetElasticCrossSection(dp, Z, A);
103  }
104
105  if(verboseLevel > 1) 
106    G4cout << "G4BGGNucleonElasticXS::GetCrossSection  for "
107           << dp->GetDefinition()->GetParticleName()
108           << "  Ekin(GeV)= " << dp->GetKineticEnergy()
109           << " in nucleus Z= " << Z << "  A= " << A
110           << " XS(b)= " << cross/barn
111           << G4endl;
112
113  return cross;
114}
115
116//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
117
118void G4BGGNucleonElasticXS::BuildPhysicsTable(const G4ParticleDefinition& p)
119{
120  if(&p == G4Proton::Proton() || &p == G4Neutron::Neutron()) {
121    particle = &p;
122    Initialise();
123  } else {
124    G4cout << "### G4BGGNucleonElasticXS WARNING: is not applicable to " 
125           << p.GetParticleName()
126           << G4endl;
127  }
128}
129
130//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
131
132void G4BGGNucleonElasticXS::DumpPhysicsTable(const G4ParticleDefinition&) 
133{
134  G4cout << "G4BGGNucleonElasticXS:"<<G4endl;
135}
136
137//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
138
139void G4BGGNucleonElasticXS::Initialise() 
140{
141  if(isInitialized) return;
142  isInitialized = true;
143
144  fNucleon = new G4NucleonNuclearCrossSection();
145  fGlauber = new G4GlauberGribovCrossSection();
146  fHadron  = new G4HadronNucleonXsc();
147  fNucleon->BuildPhysicsTable(*particle);
148  fGlauber->BuildPhysicsTable(*particle);
149  if(particle == G4Proton::Proton()) isProton = true;
150
151  G4ParticleDefinition* part = const_cast<G4ParticleDefinition*>(particle);
152  G4ThreeVector mom(0.0,0.0,1.0);
153  G4DynamicParticle dp(part, mom, fGlauberEnergy);
154
155  G4NistManager* nist = G4NistManager::Instance();
156
157  G4double csup, csdn;
158  G4int A;
159
160  if(verboseLevel > 0) G4cout << "### G4BGGNucleonElasticXS::Initialise for "
161                              << particle->GetParticleName() << G4endl;
162
163  for(G4int iz=2; iz<93; iz++) {
164
165    G4double Z = G4double(iz);
166    A = G4lrint(nist->GetAtomicMassAmu(iz));
167
168    csup = fGlauber->GetElasticGlauberGribov(&dp, iz, A);
169    csdn = fNucleon->GetElasticCrossSection(&dp, iz, A);
170
171    theGlauberFac[iz] = csdn/csup;
172    if(verboseLevel > 0) G4cout << "Z= " << Z <<  "  A= " << A
173                                << " factor= " << theGlauberFac[iz] << G4endl; 
174  }
175  dp.SetKineticEnergy(fLowEnergy);
176  fHadron->GetHadronNucleonXscNS(&dp, G4Proton::Proton());
177  theCoulombFac[1] = fHadron->GetElasticHadronNucleonXsc();
178  if(isProton) { theCoulombFac[1] /= CoulombFactor(fLowEnergy, 1); }
179
180  for(G4int iz=2; iz<93; iz++) {
181
182    G4double Z = G4double(iz);
183    A = G4lrint(nist->GetAtomicMassAmu(iz));
184
185    theCoulombFac[iz] = fNucleon->GetElasticCrossSection(&dp, iz, A);
186    if(isProton) { theCoulombFac[iz] /= CoulombFactor(fLowEnergy, A); }
187    if(verboseLevel > 0) G4cout << "Z= " << Z <<  "  A= " << A
188                                << " factor= " << theCoulombFac[iz] << G4endl; 
189  }
190}
191
192//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
193
194G4double G4BGGNucleonElasticXS::CoulombFactor(G4double kinEnergy, G4int A)
195{
196  G4double res = 0.0;
197  if(kinEnergy <= DBL_MIN) return res;
198  else if(A < 2) return kinEnergy*kinEnergy;
199
200  G4double elog = std::log10(kinEnergy/GeV);
201  G4double aa = A;
202
203  // from G4ProtonInelasticCrossSection
204  G4double f1 = 8.0  - 8.0/aa - 0.008*aa;
205  G4double f2 = 2.34 - 5.4/aa - 0.0028*aa;
206
207  res = 1.0/(1.0 + std::exp(-f1*(elog + f2)));
208 
209  f1 = 5.6 - 0.016*aa;
210  f2 = 1.37 + 1.37/aa;
211  res *= ( 1.0 + (0.8 + 18./aa - 0.002*aa)/(1.0 + std::exp(f1*(elog + f2))));
212  return res; 
213}
214
215
Note: See TracBrowser for help on using the repository browser.