40 lines
1.1 KiB
C++
40 lines
1.1 KiB
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: G4NeutronHPSCFissionFS.hh,v 1.3 1999/07/02 09:59:56 johna Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
#ifndef G4NeutronHPSCFissionFS_h
|
|
#define G4NeutronHPSCFissionFS_h 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4Track.hh"
|
|
#include "G4DynamicParticleVector.hh"
|
|
#include "G4NeutronHPFissionBaseFS.hh"
|
|
|
|
class G4NeutronHPSCFissionFS : public G4NeutronHPFissionBaseFS
|
|
{
|
|
public:
|
|
|
|
G4NeutronHPSCFissionFS(){ hasXsec = false; }
|
|
~G4NeutronHPSCFissionFS(){}
|
|
void Init (G4double A, G4double Z, G4String & dirName, G4String & aFSType);
|
|
G4DynamicParticleVector * ApplyYourself(G4int NNeutrons);
|
|
G4NeutronHPFinalState * New()
|
|
{
|
|
G4NeutronHPSCFissionFS * theNew = new G4NeutronHPSCFissionFS;
|
|
return theNew;
|
|
}
|
|
|
|
private:
|
|
G4ParticleChange * ApplyYourself(const G4Track & theTrack) { return NULL; }
|
|
|
|
};
|
|
#endif
|