CMS 3D CMS Logo

Functions
L1AcceptBunchCrossing.cc File Reference
#include "DataFormats/Scalers/interface/L1AcceptBunchCrossing.h"
#include "DataFormats/Scalers/interface/ScalersRaw.h"
#include <cstdio>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &s, const L1AcceptBunchCrossing &c)
 Pretty-print operator for L1AcceptBunchCrossing. More...
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  s,
const L1AcceptBunchCrossing c 
)

Pretty-print operator for L1AcceptBunchCrossing.

Pretty-print operator for L1AcceptBunchCrossings.

Definition at line 31 of file L1AcceptBunchCrossing.cc.

References HltBtagPostValidation_cff::c, mps_splice::line, and alignCSCRings::s.

31  {
32  char line[128];
33 
34  sprintf(line,
35  "L1AcceptBC Offset:%2d Orbit:%10d [0x%8.8X] BC:%4d [0x%3.3X] EvtTyp:%d",
36  c.l1AcceptOffset(),
37  c.orbitNumber(),
38  c.orbitNumber(),
39  c.bunchCrossing(),
40  c.bunchCrossing(),
41  c.eventType());
42  s << line << std::endl;
43 
44  return s;
45 }