#include "L1Trigger/GlobalCaloTrigger/src/L1GctLut.h"
Go to the source code of this file.
Classes | |
class | L1GctJetEtCalibrationLut |
Jet Et calibration LUT. More... | |
Defines | |
#define | JET_ET_CAL_LUT_ADD_BITS 11 |
#define | JET_ET_CAL_LUT_DAT_BITS 16 |
Functions | |
std::ostream & | operator<< (std::ostream &os, const L1GctJetEtCalibrationLut &lut) |
#define JET_ET_CAL_LUT_ADD_BITS 11 |
Definition at line 4 of file L1GctJetEtCalibrationLut.h.
#define JET_ET_CAL_LUT_DAT_BITS 16 |
Definition at line 5 of file L1GctJetEtCalibrationLut.h.
std::ostream& operator<< | ( | std::ostream & | os, | |
const L1GctJetEtCalibrationLut & | lut | |||
) |
Definition at line 56 of file L1GctJetEtCalibrationLut.cc.
References lat::endl(), L1GctJetEtCalibrationLut::etaBin(), L1GctJetEtCalibrationLut::getFunction(), and pyDBSRunClass::temp.
00057 { 00058 os << std::endl; 00059 os << "==================================================" << std::endl; 00060 os << "===Level-1 Trigger: GCT Jet Et Calibration Lut===" << std::endl; 00061 os << "==================================================" << std::endl; 00062 os << "===Parameter settings for eta bin " << lut.etaBin() << "===" << std::endl; 00063 os << *lut.getFunction() << std::endl; 00064 os << "\n===Lookup table contents===\n" << std::endl; 00065 const L1GctLut<L1GctJetEtCalibrationLut::NAddress,L1GctJetEtCalibrationLut::NData>* temp=&lut; 00066 os << *temp; 00067 return os; 00068 }