65 lines
1.5 KiB
C++
65 lines
1.5 KiB
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4HadronFissionDataSet.hh,v 1.1.10.1 1999/12/07 20:51:28 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
//
|
|
// GEANT4 physics class: G4HadronFissionDataSet -- header file
|
|
// F.W. Jones, TRIUMF, 19-MAY-98
|
|
//
|
|
|
|
#ifndef G4HadronFissionDataSet_h
|
|
#define G4HadronFissionDataSet_h 1
|
|
|
|
#include "G4VCrossSectionDataSet.hh"
|
|
#include "G4HadronCrossSections.hh"
|
|
#include "G4DynamicParticle.hh"
|
|
#include "G4Element.hh"
|
|
|
|
|
|
class G4HadronFissionDataSet : public G4VCrossSectionDataSet
|
|
{
|
|
public:
|
|
|
|
G4HadronFissionDataSet()
|
|
{
|
|
theHadronCrossSections = G4HadronCrossSections::Instance();
|
|
}
|
|
|
|
~G4HadronFissionDataSet()
|
|
{
|
|
}
|
|
|
|
G4bool IsApplicable(const G4DynamicParticle* aParticle,
|
|
const G4Element* anElement)
|
|
{
|
|
return theHadronCrossSections->IsApplicable(aParticle, anElement);
|
|
}
|
|
|
|
G4double GetCrossSection(const G4DynamicParticle* aParticle,
|
|
const G4Element* anElement)
|
|
{
|
|
return theHadronCrossSections->GetFissionCrossSection(aParticle,
|
|
anElement);
|
|
}
|
|
|
|
void BuildPhysicsTable(const G4ParticleDefinition&)
|
|
{
|
|
}
|
|
|
|
void DumpPhysicsTable(const G4ParticleDefinition&)
|
|
{
|
|
}
|
|
|
|
private:
|
|
|
|
G4HadronCrossSections* theHadronCrossSections;
|
|
};
|
|
|
|
#endif
|