#include <GenDecay/NucState.h>#include <GenDecay/NucUtil.h>#include <more/phys/ens.h>#include "CLHEP/Units/SystemOfUnits.h"#include <cmath>Include dependency graph for NucState.cc:
Go to the source code of this file.
Functions | |
| ostream & | operator<< (ostream &o, const NucState &ns) |
| ostream& operator<< | ( | ostream & | o, | |
| const NucState & | ns | |||
| ) |
Definition at line 14 of file NucState.cc.
00015 { 00016 o << ns.nuc().name(); 00017 if (ns.erel().is_known()) { 00018 o << " level=" << ns.erel().cent()/SI::keV 00019 << " keV [" << ns.eref() << "]"; 00020 } 00021 else 00022 o << " level=(unknown)"; 00023 //o << " with " << ns.decays.size() << " decays\n"; 00024 return o; 00025 }
1.4.7