CMS 3D CMS Logo

Classes | Functions

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2/src/DataFormats/L1GlobalCaloTrigger/interface/L1GctEtTotal.h File Reference

#include <ostream>
#include <stdint.h>

Go to the source code of this file.

Classes

class  L1GctEtTotal
 Persistable copy of total Et measured at Level-1. More...

Functions

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

Detailed Description

file for the GCT energy sum output

Author:
: Jim Brooke

Definition in file L1GctEtTotal.h.


Function Documentation

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

Pretty-print operator for L1GctEtTotal.

Definition at line 25 of file L1GctEtTotal.cc.

References L1GctEtTotal::et(), L1GctEtTotal::overFlow(), and alignCSCRings::s.

                                                             {
  s << " L1GctEtTotal: ";
  s << " et=" << c.et();
  if (c.overFlow()) { s << "; overflow set"; }
  return s;
}