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

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &flux, const G4Element *element)
 
std::ostream & operator<< (std::ostream &flux, const G4Element &element)
 
std::ostream & operator<< (std::ostream &flux, const G4ElementTable &ElementTable)
 
std::ostream & operator<< (std::ostream &flux, const G4ElementVector &ElementVector)
 

Function Documentation

◆ operator<<() [1/4]

std::ostream & operator<< ( std::ostream & flux,
const G4Element & element )

Definition at line 458 of file G4Element.cc.

459{
460 flux << &element;
461 return flux;
462}

◆ operator<<() [2/4]

std::ostream & operator<< ( std::ostream & flux,
const G4Element * element )

Definition at line 433 of file G4Element.cc.

434{
435 std::ios::fmtflags mode = flux.flags();
436 flux.setf(std::ios::fixed, std::ios::floatfield);
437 G4long prec = flux.precision(3);
438
439 flux << " Element: " << element->fName << " (" << element->fSymbol << ")"
440 << " Z = " << std::setw(4) << std::setprecision(1) << element->fZeff
441 << " N = " << std::setw(5) << std::setprecision(1) << G4lrint(element->fNeff)
442 << " A = " << std::setw(6) << std::setprecision(3) << (element->fAeff) / (g / mole)
443 << " g/mole";
444
445 for (G4int i = 0; i < element->fNumberOfIsotopes; i++) {
446 flux << "\n ---> " << (*(element->theIsotopeVector))[i]
447 << " abundance: " << std::setw(6) << std::setprecision(3)
448 << (element->fRelativeAbundanceVector[i]) / perCent << " %";
449 }
450
451 flux.precision(prec);
452 flux.setf(mode, std::ios::floatfield);
453 return flux;
454}
long G4long
Definition G4Types.hh:87
int G4int
Definition G4Types.hh:85
int G4lrint(double ad)
Definition templates.hh:134

◆ operator<<() [3/4]

std::ostream & operator<< ( std::ostream & flux,
const G4ElementTable & ElementTable )

Definition at line 466 of file G4Element.cc.

467{
468 // Dump info for all known elements
469 flux << "\n***** Table : Nb of elements = " << ElementTable.size() << " *****\n" << G4endl;
470
471 for (auto const & i : ElementTable) {
472 flux << i << G4endl << G4endl;
473 }
474
475 return flux;
476}
#define G4endl
Definition G4ios.hh:67

◆ operator<<() [4/4]

std::ostream & operator<< ( std::ostream & flux,
const G4ElementVector & ElementVector )

Definition at line 480 of file G4Element.cc.

481{
482 // Dump info for all known elements
483 flux << "\n***** Vector : Nb of elements = " << ElementVector.size() << " *****\n" << G4endl;
484
485 for (auto const & i : ElementVector) {
486 flux << i << G4endl << G4endl;
487 }
488
489 return flux;
490}