CMS 3D CMS Logo

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

Go to the source code of this file.

Classes

class  L1GctEtHad
 Persistable copy of total Ht measured at Level-1. More...
 

Functions

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

Detailed Description

file for the GCT energy sum output

Author
: Jim Brooke

Definition in file L1GctEtHad.h.

Function Documentation

◆ operator<<()

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

Pretty-print operator for L1GctEtHad.

Definition at line 21 of file L1GctEtHad.cc.

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

21  {
22  s << " L1GctEtHad: ";
23  s << " ht=" << c.et();
24  if (c.overFlow()) {
25  s << "; overflow set";
26  }
27  return s;
28 }