#include "G4VPreCompoundFragment.hh"
#include "G4SystemOfUnits.hh"
#include "G4PreCompoundParameters.hh"
#include "G4NucleiProperties.hh"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &out, const G4VPreCompoundFragment &theFragment) |
std::ostream & | operator<< (std::ostream &out, const G4VPreCompoundFragment *theFragment) |
std::ostream& operator<< | ( | std::ostream & | out, | |
const G4VPreCompoundFragment * | theFragment | |||
) |
Definition at line 67 of file G4VPreCompoundFragment.cc.
References G4VPreCompoundFragment::GetA(), G4VPreCompoundFragment::GetNuclearMass(), and G4VPreCompoundFragment::GetZ().
00068 { 00069 out 00070 << "PreCompoundModel Emitted Fragment: Z= " << theFragment->GetZ() 00071 << " A= " << theFragment->GetA() 00072 << " Mass(GeV)= " << theFragment->GetNuclearMass()/CLHEP::GeV; 00073 return out; 00074 }
std::ostream& operator<< | ( | std::ostream & | out, | |
const G4VPreCompoundFragment & | theFragment | |||
) |