Geant4-11
Functions
G4Isotope.cc File Reference
#include <iomanip>
#include "G4Isotope.hh"
#include "G4NistManager.hh"
#include "G4PhysicalConstants.hh"
#include "G4SystemOfUnits.hh"

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, G4IsotopeTable IsotopeTable)
 

Function Documentation

◆ operator<<() [1/3]

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

Definition at line 158 of file G4Isotope.cc.

159{
160 flux << &isotope;
161 return flux;
162}

◆ operator<<() [2/3]

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

Definition at line 138 of file G4Isotope.cc.

139{
140 std::ios::fmtflags mode = flux.flags();
141 flux.setf(std::ios::fixed,std::ios::floatfield);
142 G4long prec = flux.precision(3);
143
144 flux
145 << " Isotope: " << std::setw(5) << isotope->fName
146 << " Z = " << std::setw(2) << isotope->fZ
147 << " N = " << std::setw(3) << isotope->fN
148 << " A = " << std::setw(6) << std::setprecision(2)
149 << (isotope->fA)/(g/mole) << " g/mole";
150
151 flux.precision(prec);
152 flux.setf(mode,std::ios::floatfield);
153 return flux;
154}
static constexpr double mole
Definition: G4SIunits.hh:279
static constexpr double g
Definition: G4SIunits.hh:168
long G4long
Definition: G4Types.hh:87
G4String fName
Definition: G4Isotope.hh:140
G4double fA
Definition: G4Isotope.hh:143
G4int fN
Definition: G4Isotope.hh:142
G4int fZ
Definition: G4Isotope.hh:141
static const double prec
Definition: RanecuEngine.cc:61

◆ operator<<() [3/3]

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

Definition at line 166 of file G4Isotope.cc.

167{
168 //Dump info for all known isotopes
169 flux
170 << "\n***** Table : Nb of isotopes = " << IsotopeTable.size()
171 << " *****\n" << G4endl;
172
173 for (size_t i=0; i<IsotopeTable.size(); i++)
174 flux << IsotopeTable[i] << G4endl;
175
176 return flux;
177}
#define G4endl
Definition: G4ios.hh:57