#include "G4ExitonConfiguration.hh"
#include "G4ios.hh"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const G4ExitonConfiguration &ex) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const G4ExitonConfiguration & | ex | |||
) |
Definition at line 33 of file G4ExitonConfiguration.cc.
References G4ExitonConfiguration::neutronHoles, G4ExitonConfiguration::neutronQuasiParticles, G4ExitonConfiguration::protonHoles, and G4ExitonConfiguration::protonQuasiParticles.
00033 { 00034 os << " Exitons: protons " << ex.protonQuasiParticles << " holes " 00035 << ex.protonHoles << "; neutrons " << ex.neutronQuasiParticles 00036 << " holes " << ex.neutronHoles; 00037 00038 return os; 00039 }