#include "G4tgrIsotope.hh"
#include "G4SystemOfUnits.hh"
#include "G4tgrUtils.hh"
#include "G4tgrMessenger.hh"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const G4tgrIsotope &obj) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const G4tgrIsotope & | obj | |||
) |
Definition at line 76 of file G4tgrIsotope.cc.
References G4endl, G4tgrIsotope::theA, G4tgrIsotope::theN, G4tgrIsotope::theName, and G4tgrIsotope::theZ.
00077 { 00078 os << "G4tgrIsotope= " << obj.theName 00079 << " Z = " << obj.theZ 00080 << " N= " << obj.theN 00081 << " A= " << obj.theA << G4endl; 00082 00083 return os; 00084 }