#include "L1Trigger/GlobalCaloTrigger/interface/L1GctJet.h"
#include "L1Trigger/GlobalCaloTrigger/interface/L1GctJetEtCalibrationLut.h"
#include "DataFormats/L1GlobalCaloTrigger/interface/L1GctJetCand.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const L1GctJet &cand) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const L1GctJet & | cand | |||
) |
Definition at line 23 of file L1GctJet.cc.
References L1GctJet::globalEta(), L1GctJet::globalPhi(), L1GctJet::isCentralJet(), L1GctJet::isForwardJet(), L1GctJet::isNullJet(), L1GctJet::isTauJet(), L1GctJet::m_rawsum, and L1GctJet::overFlow().
00024 { 00025 os << "L1 Gct jet"; 00026 os << " energy sum " << cand.m_rawsum; 00027 if (cand.overFlow()) { os << ", overflow bit set;"; } 00028 os << " Eta " << cand.globalEta(); 00029 os << " Phi " << cand.globalPhi(); 00030 if (cand.isForwardJet()) { os << ", Forward jet"; } 00031 if (cand.isCentralJet()) { os << ", Central jet"; } 00032 if (cand.isTauJet()) { os << ", Tau jet"; } 00033 if (cand.isNullJet()) { os << ", Null jet"; } 00034 00035 return os; 00036 }