CMS 3D CMS Logo

QIE10DataFrame.cc
Go to the documentation of this file.
3 
4 std::ostream& operator<<(std::ostream& s, const QIE10DataFrame& digi) {
5  if (digi.detid().det()==DetId::Hcal) {
6  s << HcalGenericDetId(digi.detid());
7  } else {
8  s << "DetId(" << digi.detid().rawId() << ")";
9  }
10  s << " " << digi.samples() << " samples";
11  if (digi.linkError()) s << " LinkError ";
12  if (digi.zsMarkAndPass()) s << " MaP ";
13  s << std::endl;
14  for (int i=0; i<digi.samples(); i++) {
15  QIE10DataFrame::Sample sam = digi[i];
16  s << " ADC=" << sam.adc() << " TDC(LE)=" << sam.le_tdc() << " TDC(TE)=" << sam.te_tdc() << " CAPID=" << sam.capid();
17  if (sam.soi()) s << " SOI ";
18  if (!sam.ok()) s << " !OK ";
19  s << std::endl;
20  }
21  return s;
22 }
int samples() const
total number of samples in the digi
bool linkError() const
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
std::ostream & operator<<(std::ostream &s, const QIE10DataFrame &digi)
bool zsMarkAndPass() const
DetId detid() const
Get the detector id.
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:39