74 lines
3.1 KiB
C++
74 lines
3.1 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
// $Id: G4HadronInelasticDataSet.cc 66241 2012-12-13 18:34:42Z gunter $
|
|
//
|
|
// G4 Physics class: HadronInelasticDataSet for cross sections
|
|
// F.W. Jones, TRIUMF, 19-MAY-98
|
|
|
|
#include "G4HadronInelasticDataSet.hh"
|
|
#include "G4DynamicParticle.hh"
|
|
#include "G4NistManager.hh"
|
|
#include "G4HadTmpUtil.hh"
|
|
#include <iostream>
|
|
|
|
|
|
G4HadronInelasticDataSet::G4HadronInelasticDataSet(const G4String& nam)
|
|
: G4VCrossSectionDataSet(nam)
|
|
{
|
|
theHadronCrossSections = G4HadronCrossSections::Instance();
|
|
}
|
|
|
|
|
|
G4HadronInelasticDataSet::~G4HadronInelasticDataSet() {}
|
|
|
|
|
|
void G4HadronInelasticDataSet::CrossSectionDescription(std::ostream& outFile) const
|
|
{
|
|
outFile << "G4HadronInelasticDataSet contains inelastic cross sections\n"
|
|
<< "for all long-lived hadrons at all incident energies. It was\n"
|
|
<< "developed as part of the Gheisha hadronic package\n"
|
|
<< "by H. Fesefeldt, and consists of a set of parameterizations\n"
|
|
<< "of inelastic scattering data.\n";
|
|
}
|
|
|
|
|
|
G4bool
|
|
G4HadronInelasticDataSet::IsElementApplicable(const G4DynamicParticle* aParticle,
|
|
G4int /*Z*/,
|
|
const G4Material*)
|
|
{
|
|
return theHadronCrossSections->IsApplicable(aParticle);
|
|
}
|
|
|
|
G4double
|
|
G4HadronInelasticDataSet::GetElementCrossSection(const G4DynamicParticle* aParticle,
|
|
G4int Z,
|
|
const G4Material*)
|
|
{
|
|
G4int A = G4lrint(G4NistManager::Instance()->GetAtomicMassAmu(Z));
|
|
return theHadronCrossSections->GetInelasticCrossSection(aParticle, Z, A);
|
|
}
|