#include "G4tgrMaterialSimple.hh"
#include "G4SystemOfUnits.hh"
#include "G4tgrUtils.hh"
#include "G4tgrMessenger.hh"
#include "G4UIcommand.hh"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const G4tgrMaterialSimple &mate) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const G4tgrMaterialSimple & | mate | |||
) |
Definition at line 107 of file G4tgrMaterialSimple.cc.
References G4endl, G4tgrMaterialSimple::theA, G4tgrMaterial::theDensity, G4tgrMaterial::theName, G4tgrMaterial::theNoComponents, and G4tgrMaterialSimple::theZ.
00108 { 00109 os << "G4tgrMaterialSimple= " << mate.theName 00110 << " Z " << mate.theZ << " A " << mate.theA 00111 << "density= " << mate.theDensity/g*cm3 00112 << " g/cm3. Number of Components: " << mate.theNoComponents << G4endl; 00113 return os; 00114 }