CMS 3D CMS Logo

Functions

/data/refman/pasoursint/CMSSW_5_3_10_patch1/src/DataFormats/L1GlobalCaloTrigger/src/L1GctEmCand.cc File Reference

#include "DataFormats/L1GlobalCaloTrigger/interface/L1GctEmCand.h"
#include <iostream>

Go to the source code of this file.

Functions

ostream & operator<< (ostream &s, const L1GctEmCand &cand)

Function Documentation

ostream& operator<< ( ostream &  s,
const L1GctEmCand cand 
)

Definition at line 110 of file L1GctEmCand.cc.

References L1GctEmCand::bx(), L1GctEmCand::capBlock(), L1GctEmCand::capIndex(), L1GctEmCand::etaIndex(), L1GctEmCand::etaSign(), L1GctEmCand::isolated(), L1GctEmCand::phiIndex(), L1GctEmCand::rank(), and alignCSCRings::s.

                                                         {
  s << "L1GctEmCand : ";
  s << "rank=" << cand.rank();
  s << ", etaSign=" << cand.etaSign() << ", eta=" << (cand.etaIndex()&0x7) << ", phi=" << cand.phiIndex();
  s << ", iso=" << cand.isolated();
  s << hex << " cap block=" << cand.capBlock() << dec << ", index=" << cand.capIndex() << ", BX=" << cand.bx();
  return s;
}