Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4Material.cc File Reference
#include "G4Material.hh"
#include "G4ApplicationState.hh"
#include "G4AtomicShells.hh"
#include "G4ExtendedMaterial.hh"
#include "G4Pow.hh"
#include "G4NistManager.hh"
#include "G4PhysicalConstants.hh"
#include "G4StateManager.hh"
#include "G4SystemOfUnits.hh"
#include "G4UnitsTable.hh"
#include <iomanip>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &flux, const G4Material *material)
 
std::ostream & operator<< (std::ostream &flux, const G4Material &material)
 
std::ostream & operator<< (std::ostream &flux, const G4MaterialTable &MaterialTable)
 

Function Documentation

◆ operator<<() [1/3]

std::ostream & operator<< ( std::ostream & flux,
const G4Material & material )

Definition at line 777 of file G4Material.cc.

778{
779 flux << &material;
780 return flux;
781}

◆ operator<<() [2/3]

std::ostream & operator<< ( std::ostream & flux,
const G4Material * material )

Definition at line 736 of file G4Material.cc.

737{
738 std::ios::fmtflags mode = flux.flags();
739 flux.setf(std::ios::fixed, std::ios::floatfield);
740 G4long prec = flux.precision(3);
741
742 flux << " Material: " << std::setw(8) << material->fName << " " << material->fChemicalFormula
743 << " "
744 << " density: " << std::setw(6) << std::setprecision(3)
745 << G4BestUnit(material->fDensity, "Volumic Mass") << " RadL: " << std::setw(7)
746 << std::setprecision(3) << G4BestUnit(material->fRadlen, "Length")
747 << " Nucl.Int.Length: " << std::setw(7) << std::setprecision(3)
748 << G4BestUnit(material->fNuclInterLen, "Length") << "\n"
749 << std::setw(30) << " Imean: " << std::setw(7) << std::setprecision(3)
750 << G4BestUnit(material->GetIonisation()->GetMeanExcitationEnergy(), "Energy")
751 << " temperature: " << std::setw(6) << std::setprecision(2)
752 << (material->fTemp) / CLHEP::kelvin << " K"
753 << " pressure: " << std::setw(6) << std::setprecision(2)
754 << (material->fPressure) / CLHEP::atmosphere << " atm"
755 << "\n";
756
757 for (G4int i = 0; i < material->fNumberOfElements; i++) {
758 flux << "\n ---> " << (*(material->theElementVector))[i]
759 << "\n ElmMassFraction: " << std::setw(6) << std::setprecision(2)
760 << (material->fMassFractionVector[i]) / perCent << " %"
761 << " ElmAbundance " << std::setw(6) << std::setprecision(2)
762 << 100 * (material->fVecNbOfAtomsPerVolume[i]) / (material->fTotNbOfAtomsPerVolume)
763 << " % \n";
764 }
765 flux.precision(prec);
766 flux.setf(mode, std::ios::floatfield);
767
768 if (material->IsExtended()) {
769 static_cast<const G4ExtendedMaterial*>(material)->Print(flux);
770 }
771
772 return flux;
773}
#define G4BestUnit(a, b)
long G4long
Definition G4Types.hh:87
int G4int
Definition G4Types.hh:85
G4double GetMeanExcitationEnergy() const
virtual G4bool IsExtended() const
G4IonisParamMat * GetIonisation() const

◆ operator<<() [3/3]

std::ostream & operator<< ( std::ostream & flux,
const G4MaterialTable & MaterialTable )

Definition at line 785 of file G4Material.cc.

786{
787 // Dump info for all known materials
788 flux << "\n***** Table : Nb of materials = " << MaterialTable.size() << " *****\n" << G4endl;
789
790 for (auto i : MaterialTable) {
791 flux << i << G4endl << G4endl;
792 }
793
794 return flux;
795}
#define G4endl
Definition G4ios.hh:67