Go to the source code of this file.
std::ostream& operator<< |
( |
std::ostream & |
flux, |
|
|
const G4Isotope * |
isotope |
|
) |
| |
Definition at line 139 of file G4Isotope.cc.
141 std::ios::fmtflags
mode = flux.flags();
142 flux.setf(std::ios::fixed,std::ios::floatfield);
146 <<
" Isotope: " << std::setw(5) << isotope->fName
147 <<
" Z = " << std::setw(2) << isotope->fZ
148 <<
" N = " << std::setw(3) << isotope->fN
149 <<
" A = " << std::setw(6) << std::setprecision(2)
150 << (isotope->fA)/(
g/
mole) <<
" g/mole";
152 flux.precision(prec);
153 flux.setf(mode,std::ios::floatfield);
static constexpr double mole
std::ostream& operator<< |
( |
std::ostream & |
flux, |
|
|
const G4Isotope & |
isotope |
|
) |
| |
std::ostream& operator<< |
( |
std::ostream & |
flux, |
|
|
G4IsotopeTable |
IsotopeTable |
|
) |
| |
Definition at line 167 of file G4Isotope.cc.
171 <<
"\n***** Table : Nb of isotopes = " << IsotopeTable.size()
174 for (
size_t i=0; i<IsotopeTable.size(); i++)
175 flux << IsotopeTable[i] <<
G4endl;