Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4Isotope.cc File Reference
#include "G4Isotope.hh"
#include "G4NistManager.hh"
#include "G4PhysicalConstants.hh"
#include "G4SystemOfUnits.hh"
#include <iomanip>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &flux, const G4Isotope *isotope)
 
std::ostream & operator<< (std::ostream &flux, const G4Isotope &isotope)
 
std::ostream & operator<< (std::ostream &flux, const G4IsotopeTable &IsotopeTable)
 

Function Documentation

◆ operator<<() [1/3]

std::ostream & operator<< ( std::ostream & flux,
const G4Isotope & isotope )

Definition at line 106 of file G4Isotope.cc.

107{
108 flux << &isotope;
109 return flux;
110}

◆ operator<<() [2/3]

std::ostream & operator<< ( std::ostream & flux,
const G4Isotope * isotope )

Definition at line 84 of file G4Isotope.cc.

85{
86 std::ios::fmtflags mode = flux.flags();
87 flux.setf(std::ios::fixed, std::ios::floatfield);
88 G4long prec = flux.precision(3);
89
90 // clang-format off
91 flux
92 << " Isotope: " << std::setw(5) << isotope->fName
93 << " Z = " << std::setw(2) << isotope->fZ
94 << " N = " << std::setw(3) << isotope->fN
95 << " A = " << std::setw(6) << std::setprecision(2)
96 << (isotope->fA)/(g/mole) << " g/mole";
97 // clang-format on
98
99 flux.precision(prec);
100 flux.setf(mode, std::ios::floatfield);
101 return flux;
102}
long G4long
Definition G4Types.hh:87

◆ operator<<() [3/3]

std::ostream & operator<< ( std::ostream & flux,
const G4IsotopeTable & IsotopeTable )

Definition at line 114 of file G4Isotope.cc.

115{
116 // Dump info for all known isotopes
117 flux << "\n***** Table : Nb of isotopes = " << IsotopeTable.size() << " *****\n" << G4endl;
118
119 for (auto const & i : IsotopeTable) {
120 flux << i << G4endl;
121 }
122
123 return flux;
124}
#define G4endl
Definition G4ios.hh:67