#include <G4NeutronHPAInelasticFS.hh>
Inheritance diagram for G4NeutronHPAInelasticFS:
Public Member Functions | |
G4NeutronHPAInelasticFS () | |
~G4NeutronHPAInelasticFS () | |
void | Init (G4double A, G4double Z, G4int M, G4String &dirName, G4String &aFSType) |
G4HadFinalState * | ApplyYourself (const G4HadProjectile &theTrack) |
G4NeutronHPFinalState * | New () |
Definition at line 41 of file G4NeutronHPAInelasticFS.hh.
G4NeutronHPAInelasticFS::G4NeutronHPAInelasticFS | ( | ) | [inline] |
G4NeutronHPAInelasticFS::~G4NeutronHPAInelasticFS | ( | ) | [inline] |
G4HadFinalState * G4NeutronHPAInelasticFS::ApplyYourself | ( | const G4HadProjectile & | theTrack | ) | [virtual] |
Implements G4NeutronHPInelasticCompFS.
Definition at line 42 of file G4NeutronHPAInelasticFS.cc.
References G4Alpha::Alpha(), G4NeutronHPInelasticCompFS::CompositeApply(), and G4NeutronHPFinalState::theResult.
00043 { 00044 00045 // do the final state 00046 G4NeutronHPInelasticCompFS::CompositeApply(theTrack, G4Alpha::Alpha()); 00047 00048 // return the result 00049 return &theResult; 00050 }
void G4NeutronHPAInelasticFS::Init | ( | G4double | A, | |
G4double | Z, | |||
G4int | M, | |||
G4String & | dirName, | |||
G4String & | aFSType | |||
) | [virtual] |
Reimplemented from G4NeutronHPInelasticCompFS.
Definition at line 34 of file G4NeutronHPAInelasticFS.cc.
References G4NeutronHPInelasticCompFS::Init(), and G4NeutronHPInelasticCompFS::InitGammas().
00035 { 00036 G4NeutronHPInelasticCompFS::Init(A, Z, M, dirName, aFSType); 00037 G4double ResidualA = A-3; 00038 G4double ResidualZ = Z-2; 00039 G4NeutronHPInelasticCompFS::InitGammas(ResidualA, ResidualZ); 00040 }
G4NeutronHPFinalState* G4NeutronHPAInelasticFS::New | ( | ) | [inline, virtual] |
Implements G4NeutronHPInelasticCompFS.
Definition at line 49 of file G4NeutronHPAInelasticFS.hh.
00050 { 00051 G4NeutronHPAInelasticFS * theNew = new G4NeutronHPAInelasticFS; 00052 return theNew; 00053 }