CMS 3D CMS Logo

Classes | Functions

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/DataFormats/L1GlobalCaloTrigger/interface/L1GctEtMiss.h File Reference

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

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.

Detailed Description

file for the GCT energy sum output

Author:
: Jim Brooke

Definition in file L1GctEtMiss.h.


Function Documentation

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

Pretty-print operator for L1GctEtMiss.

Definition at line 37 of file L1GctEtMiss.cc.

References L1GctEtMiss::et(), L1GctEtMiss::overFlow(), L1GctEtMiss::phi(), and asciidump::s.

                                                            {
  s << " L1GctEtMiss: ";
  s << " mag=" << c.et() << ", phi=" << c.phi();
  if (c.overFlow()) { s << "; overflow set"; }
  return s;
}