42 lines
1019 B
C++
42 lines
1019 B
C++
// This code implementation is the intellectual property of
|
|
// neutron_hp -- header file
|
|
// J.P. Wellisch, Nov-1996
|
|
// A prototype of the low energy neutron transport model.
|
|
//
|
|
// 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: G4NeutronHPIsotropic.hh,v 1.4 1999/12/15 14:53:12 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
#ifndef G4NeutronHPIsotropic_h
|
|
#define G4NeutronHPIsotropic_h 1
|
|
|
|
#include "G4ios.hh"
|
|
#include "g4std/fstream"
|
|
#include "globals.hh"
|
|
#include "G4ReactionProduct.hh"
|
|
#include "G4VNeutronHPEnergyAngular.hh"
|
|
|
|
class G4NeutronHPIsotropic : public G4VNeutronHPEnergyAngular
|
|
{
|
|
public:
|
|
|
|
G4NeutronHPIsotropic(){}
|
|
|
|
~G4NeutronHPIsotropic(){}
|
|
|
|
public:
|
|
|
|
void Init(G4std::ifstream & aDataFile);
|
|
G4ReactionProduct * Sample(G4double anEnergy, G4double massCode, G4double mass);
|
|
G4double MeanEnergyOfThisInteraction()
|
|
{
|
|
return -1.;
|
|
}
|
|
private:
|
|
|
|
};
|
|
#endif
|