CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions
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. More...
 

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 alignCSCRings::s.

37  {
38  s << " L1GctEtMiss: ";
39  s << " mag=" << c.et() << ", phi=" << c.phi();
40  if (c.overFlow()) { s << "; overflow set"; }
41  return s;
42 }
unsigned phi() const
get the Et
Definition: L1GctEtMiss.h:64
bool overFlow() const
get the overflow
Definition: L1GctEtMiss.h:61
unsigned et() const
get the magnitude
Definition: L1GctEtMiss.h:58