Skip to content
Snippets Groups Projects

Final changes to fully support dd4hep RICH PMTs/Panels

Compare and Show latest version
5 files
+ 6386
6501
Compare changes
  • Side-by-side
  • Inline
Files
5
@@ -239,12 +239,12 @@ namespace Rich::Detector {
/// Overload ostream operator
friend inline std::ostream& operator<<( std::ostream& s, const PD& pd ) {
s << "[ PD ";
pd.pdSmartID().fillStream( s, false ); // Never include bit dump
return s << " EffPixelArea=" << pd.effectivePixelArea() //
<< " EffNumPixels=" << pd.effectiveNumActivePixels() //
<< " centrePtnInGlo=" << pd.centrePointGlobal() //
<< " (x,y)Acceptance=+-(" << pd.m_xAcceptance << "," << pd.m_yAcceptance << ")" //
<< " QE=" << *pd.pdQuantumEff() //
pd.pdSmartID().fillStream( s, false ); // Never include bit dump
return s << " EffPixArea=" << pd.effectivePixelArea() //
<< " EffNumPixs=" << pd.effectiveNumActivePixels() //
<< " CenPtnInGlo=" << pd.centrePointGlobal() //
<< " (x,y)Acpt=+-(" << pd.m_xAcceptance << "," << pd.m_yAcceptance << ")" //
<< " QE=" << *pd.pdQuantumEff() //
<< " ]";
}
Loading