CMS 3D CMS Logo

Classes | Functions
L1GctHFRingEtSums.h File Reference
#include <ostream>
#include <string>
#include <cstdint>

Go to the source code of this file.

Classes

class  L1GctHFRingEtSums
 L1 GCT HF ring Et sums. More...
 

Functions

std::ostream & operator<< (std::ostream &s, const L1GctHFRingEtSums &cand)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  s,
const L1GctHFRingEtSums cand 
)

Definition at line 61 of file L1GctHFRingEtSums.cc.

References TauDecayModes::dec, and alignCSCRings::s.

61  {
62  s << "L1GctHFRingEtSums :";
63 
64  if (cand.empty()) {
65  s << " empty";
66  } else {
67  s << " ring1 eta+=" << cand.etSum(0);
68  s << " ring1 eta-=" << cand.etSum(1);
69  s << " ring2 eta+=" << cand.etSum(2);
70  s << " ring2 eta-=" << cand.etSum(3);
71  s << std::endl;
72  }
73 
74  s << std::hex << " cap block=" << cand.capBlock() << std::dec << " index=" << cand.capIndex() << " BX=" << cand.bx();
75 
76  return s;
77 }