Import Geant4 8.3.0 source tree
This commit is contained in:
@@ -54,17 +54,33 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
G4bool IsApplicable(const G4DynamicParticle* aParticle,
|
||||
const G4Element* anElement)
|
||||
{
|
||||
return theHadronCrossSections->IsApplicable(aParticle, anElement);
|
||||
return theHadronCrossSections->IsApplicable(aParticle, anElement);
|
||||
}
|
||||
|
||||
|
||||
G4bool IsZAApplicable(const G4DynamicParticle* aParticle,
|
||||
G4double ZZ, G4double AA)
|
||||
{
|
||||
return theHadronCrossSections->IsApplicable(aParticle, ZZ, AA);
|
||||
}
|
||||
|
||||
G4double GetCrossSection(const G4DynamicParticle* aParticle,
|
||||
const G4Element* anElement, G4double /*aTemperature*/)
|
||||
const G4Element* anElement,
|
||||
G4double /*aTemperature*/)
|
||||
{
|
||||
return theHadronCrossSections->GetInelasticCrossSection(aParticle,
|
||||
anElement);
|
||||
return theHadronCrossSections->GetInelasticCrossSection(aParticle,
|
||||
anElement);
|
||||
}
|
||||
|
||||
G4double GetIsoZACrossSection(const G4DynamicParticle* aParticle,
|
||||
G4double ZZ, G4double AA,
|
||||
G4double /*aTemperature*/)
|
||||
{
|
||||
return theHadronCrossSections->GetInelasticCrossSection(aParticle, ZZ, AA);
|
||||
}
|
||||
|
||||
void BuildPhysicsTable(const G4ParticleDefinition&)
|
||||
|
||||
Reference in New Issue
Block a user