CMS 3D CMS Logo

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

Go to the source code of this file.

Classes

class  L1GctEtMiss
 Persistable copy of missing Et measured at Level-1. More...
 

Functions

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

Detailed Description

file for the GCT energy sum output

Author
: Jim Brooke

Definition in file L1GctEtMiss.h.

Function Documentation

◆ operator<<()

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

Pretty-print operator for L1GctEtMiss.

Definition at line 33 of file L1GctEtMiss.cc.

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

33  {
34  s << " L1GctEtMiss: ";
35  s << " mag=" << c.et() << ", phi=" << c.phi();
36  if (c.overFlow()) {
37  s << "; overflow set";
38  }
39  return s;
40 }