Import Geant4 2.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:42:07 +02:00
parent 103bda00c8
commit e7d7193284
3106 changed files with 171117 additions and 90550 deletions
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4CrossSectionDataStore.cc,v 1.1.10.1 1999/12/07 20:51:28 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
// $Id: G4CrossSectionDataStore.cc,v 1.2 1999/12/15 14:52:06 gunter Exp $
// GEANT4 tag $Name: geant4-02-00 $
//
//
// GEANT4 physics class: G4CrossSectionDataStore
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4HadronCaptureDataSet.cc,v 1.1.10.1 1999/12/07 20:51:29 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
// $Id: G4HadronCaptureDataSet.cc,v 1.2 1999/12/15 14:52:06 gunter Exp $
// GEANT4 tag $Name: geant4-02-00 $
//
//
// G4 Physics class: HadronCaptureDataSet for cross sections
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4HadronCrossSections.cc,v 1.1.10.1.2.2 1999/12/10 15:42:01 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
// $Id: G4HadronCrossSections.cc,v 1.2 1999/12/15 14:52:06 gunter Exp $
// GEANT4 tag $Name: geant4-02-00 $
//
//
// G4 Hadron Physics class G4HadronCrossSections
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4HadronElasticDataSet.cc,v 1.1.10.1 1999/12/07 20:51:29 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
// $Id: G4HadronElasticDataSet.cc,v 1.2 1999/12/15 14:52:07 gunter Exp $
// GEANT4 tag $Name: geant4-02-00 $
//
//
// G4 Physics class: HadronElasticDataSet for cross sections
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4HadronFissionDataSet.cc,v 1.1.10.1 1999/12/07 20:51:29 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
// $Id: G4HadronFissionDataSet.cc,v 1.2 1999/12/15 14:52:07 gunter Exp $
// GEANT4 tag $Name: geant4-02-00 $
//
//
// G4 Physics class: HadronFissionDataSet for cross sections
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4HadronInelasticDataSet.cc,v 1.1.10.1 1999/12/07 20:51:30 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
// $Id: G4HadronInelasticDataSet.cc,v 1.2 1999/12/15 14:52:07 gunter Exp $
// GEANT4 tag $Name: geant4-02-00 $
//
//
// G4 Physics class: HadronInelasticDataSet for cross sections
@@ -8,8 +8,14 @@
{
G4double atomicNumber = anEle->GetN();
G4double nOfProtons = anEle->GetZ();
return GetCrossSection(aPart->GetKineticEnergy(), atomicNumber, nOfProtons);
}
G4double G4ProtonInelasticCrossSection::
GetCrossSection(G4double kineticEnergy, G4double atomicNumber, G4double nOfProtons)
{
G4double nOfNeutrons = atomicNumber-nOfProtons;
G4double kineticEnergy = aPart->GetKineticEnergy()/GeV;
kineticEnergy /=GeV;
G4double a = atomicNumber;
const G4double nuleonRadius=1.36E-15;
const G4double pi=3.14159265;
@@ -0,0 +1,76 @@
// Implementation of formulas in analogy to NASA technical paper 3621 by Tripathi, et al.
#include "G4TripathiCrossSection.hh"
#include "G4ParticleTable.hh"
#include "G4IonTable.hh"
G4double G4TripathiCrossSection::
GetCrossSection(const G4DynamicParticle* aPart, const G4Element*anEle)
{
G4double result = 0;
const G4double targetAtomicNumber = anEle->GetN();
const G4double nTargetProtons = anEle->GetZ();
const G4double nTargetNeutrons = targetAtomicNumber-nTargetProtons;
const G4double kineticEnergy = aPart->GetKineticEnergy()/MeV;
const G4double nProjProtons = aPart->GetDefinition()->GetPDGCharge();
const G4double projectileAtomicNumber = aPart->GetDefinition()->GetBaryonNumber();
const G4double nProjNeutrons = projectileAtomicNumber-nProjProtons;
const G4double nuleonRadius=1.1E-15;
const G4double myNuleonRadius=1.36E-15;
// needs target mass
G4double targetMass = G4ParticleTable::GetParticleTable()
->GetIonTable()
->GetIonMass(nTargetProtons, targetAtomicNumber);
G4LorentzVector pTarget(0,0,0,targetMass);
G4LorentzVector pProjectile(aPart->Get4Momentum());
pTarget = pTarget+pProjectile;
G4double E_cm = (pTarget.mag()-targetMass-pProjectile.m())/MeV;
// done
G4double r_rms_p = 0.6 * myNuleonRadius * pow(projectileAtomicNumber, 1./3.);
G4double r_rms_t = 0.6 * myNuleonRadius * pow(targetAtomicNumber, 1./3.);
// done
G4double r_p = 1.29*r_rms_p/nuleonRadius ;
G4double r_t = 1.29*r_rms_t/nuleonRadius;
// done
G4double Radius = r_p + r_t +
1.2*(pow(targetAtomicNumber, 1./3.) + pow(projectileAtomicNumber, 1./3.))/
pow(E_cm, 1./3.);
//done
G4double B = 1.44*nProjProtons*nTargetProtons/Radius;
// done
G4double Energy = kineticEnergy/projectileAtomicNumber;
// done
G4double D = 2.77-(8.0E-3*targetAtomicNumber)+(1.8E-5*targetAtomicNumber*targetAtomicNumber)
- 0.8/(1+exp((250.-Energy)/75.));
D = 1.75;
// done
G4double C_E = D * (1-exp(-Energy/40.)) - 0.292*exp(-Energy/792.)*cos(0.229*pow(Energy, 0.453));
// done
G4double S = pow(projectileAtomicNumber, 1./3.)*pow(targetAtomicNumber, 1./3.)/
(pow(projectileAtomicNumber, 1./3.) + pow(targetAtomicNumber, 1./3.));
// done
G4double deltaE = 1.85*S + 0.16*S/pow(E_cm,1./3.) - C_E +
0.91*(targetAtomicNumber-2.*nTargetProtons)*nProjProtons/
(targetAtomicNumber*projectileAtomicNumber);
// done
result = pi * nuleonRadius*nuleonRadius *
pow(( pow(targetAtomicNumber, 1./3.) +
pow(projectileAtomicNumber, 1./3.) + deltaE),2.) * (1-B/E_cm);
if(result < 0) result = 0;
return result*m2;
}
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4VCrossSectionDataSet.cc,v 1.1.10.1 1999/12/07 20:51:30 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
// $Id: G4VCrossSectionDataSet.cc,v 1.2 1999/12/15 14:52:07 gunter Exp $
// GEANT4 tag $Name: geant4-02-00 $
//
//
// GEANT4 physics abstract class: G4VCrossSectionDataSet