CMS 3D CMS Logo

Functions

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/DataFormats/L1CaloTrigger/src/L1CaloEmCand.cc File Reference

#include "DataFormats/L1CaloTrigger/interface/L1CaloEmCand.h"
#include <iostream>

Go to the source code of this file.

Functions

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

Function Documentation

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

Definition at line 74 of file L1CaloEmCand.cc.

References L1CaloEmCand::bx(), L1CaloEmCand::index(), L1CaloEmCand::isolated(), L1CaloEmCand::rank(), L1CaloEmCand::rctCard(), L1CaloEmCand::rctCrate(), L1CaloEmCand::rctRegion(), and asciidump::s.

                                                          {
  s << "L1CaloEmCand : ";
  s << "rank=" << cand.rank();
  s << ", region=" << cand.rctRegion() << ", card=" << cand.rctCard() << ", crate=" << cand.rctCrate();
  s << ", iso=" << cand.isolated();
  s << ", index=" << cand.index() << ", BX=" << cand.bx();
  return s;
}