#include <G4VIsotopeProduction.hh>
Inheritance diagram for G4VIsotopeProduction:
Public Member Functions | |
G4VIsotopeProduction () | |
virtual | ~G4VIsotopeProduction () |
virtual G4IsoResult * | GetIsotope (const G4HadProjectile *aTrack, const G4Nucleus &aNucleus)=0 |
G4bool | operator== (const G4VIsotopeProduction &aProd) |
Definition at line 41 of file G4VIsotopeProduction.hh.
G4VIsotopeProduction::G4VIsotopeProduction | ( | ) | [inline] |
virtual G4VIsotopeProduction::~G4VIsotopeProduction | ( | ) | [inline, virtual] |
virtual G4IsoResult* G4VIsotopeProduction::GetIsotope | ( | const G4HadProjectile * | aTrack, | |
const G4Nucleus & | aNucleus | |||
) | [pure virtual] |
Implemented in G4NeutronIsotopeProduction, and G4ProtonIsotopeProduction.
G4bool G4VIsotopeProduction::operator== | ( | const G4VIsotopeProduction & | aProd | ) | [inline] |
Definition at line 55 of file G4VIsotopeProduction.hh.
00056 { 00057 G4bool result = false; 00058 if (&aProd == this) result = true; 00059 return result; 00060 }