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

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

update ti head

File size: 6.9 KB
RevLine 
[819]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//
[1340]26// $Id: G4BGGNucleonElasticXS.cc,v 1.8 2010/10/12 06:02:41 dennis Exp $
27// GEANT4 tag $Name: hadr-cross-V09-03-12 $
[819]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"
[962]48#include "G4HadronNucleonXsc.hh"
[819]49#include "G4Proton.hh"
50#include "G4Neutron.hh"
51#include "G4NistManager.hh"
52
53
[962]54G4BGGNucleonElasticXS::G4BGGNucleonElasticXS(const G4ParticleDefinition*)
[819]55{
56 verboseLevel = 0;
[962]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;
[819]65}
66
67//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68
69G4BGGNucleonElasticXS::~G4BGGNucleonElasticXS()
70{
71 delete fGlauber;
72 delete fNucleon;
[962]73 delete fHadron;
[819]74}
75
76
[1340]77G4double
78G4BGGNucleonElasticXS::GetZandACrossSection(const G4DynamicParticle* dp,
79 G4int Z, G4int A, G4double)
[819]80{
81 G4double cross = 0.0;
82 G4double ekin = dp->GetKineticEnergy();
[1340]83 if(Z > 92) Z = 92;
[819]84
[962]85 if(ekin <= fLowEnergy) {
[1340]86 cross = theCoulombFac[Z];
[962]87 if(isProton) { cross *= CoulombFactor(ekin, A); }
88
[1340]89 } else if(Z == 1) {
90 if( A < 2) {
[1228]91 fHadron->GetHadronNucleonXscNS(dp, G4Proton::Proton());
[962]92 cross = fHadron->GetElasticHadronNucleonXsc();
93 } else {
[1228]94 fHadron->GetHadronNucleonXscNS(dp, G4Proton::Proton());
[962]95 cross = fHadron->GetElasticHadronNucleonXsc();
[1228]96 fHadron->GetHadronNucleonXscNS(dp, G4Neutron::Neutron());
[962]97 cross += fHadron->GetElasticHadronNucleonXsc();
98 }
99 } else if(ekin > fGlauberEnergy) {
[1340]100 cross = theGlauberFac[Z]*fGlauber->GetElasticGlauberGribov(dp, Z, A);
[819]101 } else {
[962]102 cross = fNucleon->GetElasticCrossSection(dp, Z, A);
[819]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
[962]118void G4BGGNucleonElasticXS::BuildPhysicsTable(const G4ParticleDefinition& p)
[819]119{
[962]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 }
[819]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{
[962]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
[819]151 G4ParticleDefinition* part = const_cast<G4ParticleDefinition*>(particle);
152 G4ThreeVector mom(0.0,0.0,1.0);
[962]153 G4DynamicParticle dp(part, mom, fGlauberEnergy);
[819]154
155 G4NistManager* nist = G4NistManager::Instance();
156
[1340]157 G4double csup, csdn;
158 G4int A;
[819]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);
[1340]166 A = G4lrint(nist->GetAtomicMassAmu(iz));
[819]167
[1340]168 csup = fGlauber->GetElasticGlauberGribov(&dp, iz, A);
169 csdn = fNucleon->GetElasticCrossSection(&dp, iz, A);
[819]170
[962]171 theGlauberFac[iz] = csdn/csup;
[819]172 if(verboseLevel > 0) G4cout << "Z= " << Z << " A= " << A
[962]173 << " factor= " << theGlauberFac[iz] << G4endl;
[819]174 }
[962]175 dp.SetKineticEnergy(fLowEnergy);
[1228]176 fHadron->GetHadronNucleonXscNS(&dp, G4Proton::Proton());
[962]177 theCoulombFac[1] = fHadron->GetElasticHadronNucleonXsc();
[1340]178 if(isProton) { theCoulombFac[1] /= CoulombFactor(fLowEnergy, 1); }
[962]179
180 for(G4int iz=2; iz<93; iz++) {
181
182 G4double Z = G4double(iz);
[1340]183 A = G4lrint(nist->GetAtomicMassAmu(iz));
[962]184
[1340]185 theCoulombFac[iz] = fNucleon->GetElasticCrossSection(&dp, iz, A);
[962]186 if(isProton) { theCoulombFac[iz] /= CoulombFactor(fLowEnergy, A); }
187 if(verboseLevel > 0) G4cout << "Z= " << Z << " A= " << A
188 << " factor= " << theCoulombFac[iz] << G4endl;
189 }
[819]190}
191
192//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
193
[1340]194G4double G4BGGNucleonElasticXS::CoulombFactor(G4double kinEnergy, G4int A)
[962]195{
[1340]196 G4double res = 0.0;
[962]197 if(kinEnergy <= DBL_MIN) return res;
[1340]198 else if(A < 2) return kinEnergy*kinEnergy;
[819]199
[962]200 G4double elog = std::log10(kinEnergy/GeV);
[1340]201 G4double aa = A;
[962]202
203 // from G4ProtonInelasticCrossSection
[1340]204 G4double f1 = 8.0 - 8.0/aa - 0.008*aa;
205 G4double f2 = 2.34 - 5.4/aa - 0.0028*aa;
[962]206
207 res = 1.0/(1.0 + std::exp(-f1*(elog + f2)));
208
[1340]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))));
[962]212 return res;
213}
214
215
Note: See TracBrowser for help on using the repository browser.