41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
// This code implementation is the intellectual property of
|
|
// the RD44 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: G4NeutronInelasticProcess.hh,v 2.0 1998/07/02 16:36:31 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-00 $
|
|
//
|
|
// Hadronic Process: Neutron Inelastic Process
|
|
// original by H.P. Wellisch
|
|
// modified by J.L. Chuma, TRIUMF, 05-Nov-1996
|
|
// Last modified: 03-Apr-1997
|
|
|
|
// Note: there is no .cc file
|
|
|
|
#ifndef G4NeutronInelasticProcess_h
|
|
#define G4NeutronInelasticProcess_h 1
|
|
|
|
//#include "G4HadronicInelasticProcess.hh"
|
|
#include "G4HadronInelasticProcess.hh"
|
|
|
|
// class G4NeutronInelasticProcess : public G4HadronicInelasticProcess
|
|
class G4NeutronInelasticProcess : public G4HadronInelasticProcess
|
|
{
|
|
public:
|
|
|
|
G4NeutronInelasticProcess(
|
|
const G4String& processName = "NeutronInelastic" ) :
|
|
// G4HadronicInelasticProcess( processName, G4Neutron::Neutron() )
|
|
G4HadronInelasticProcess( processName, G4Neutron::Neutron() )
|
|
{ }
|
|
|
|
~G4NeutronInelasticProcess()
|
|
{ }
|
|
};
|
|
|
|
#endif
|
|
|