#include "L1Trigger/GlobalCaloTrigger/interface/L1GctJetEtCalibrationLut.h"
#include "CondFormats/L1TObjects/interface/L1GctJetEtCalibrationFunction.h"
#include "CondFormats/L1TObjects/interface/L1CaloEtScale.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const L1GctJetEtCalibrationLut &lut) |
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 }