CMS 3D CMS Logo

Classes | Defines | Functions

/data/refman/pasoursint/CMSSW_5_3_10_patch1/src/L1Trigger/GlobalCaloTrigger/interface/L1GctJetEtCalibrationLut.h File Reference

#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   6

Functions

std::ostream & operator<< (std::ostream &os, const L1GctJetEtCalibrationLut &lut)

Define Documentation

#define JET_ET_CAL_LUT_ADD_BITS   11

Definition at line 4 of file L1GctJetEtCalibrationLut.h.

#define JET_ET_CAL_LUT_DAT_BITS   6

Definition at line 5 of file L1GctJetEtCalibrationLut.h.


Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const L1GctJetEtCalibrationLut lut 
)

Definition at line 56 of file L1GctJetEtCalibrationLut.cc.

References L1GctJetEtCalibrationLut::etaBin(), L1GctJetEtCalibrationLut::getFunction(), lumiPlot::lut, and groupFilesInBlocks::temp.

{
  os << std::endl;
  os << "==================================================" << std::endl;
  os << "===Level-1 Trigger:  GCT Jet Et Calibration Lut===" << std::endl;
  os << "==================================================" << std::endl;
  os << "===Parameter settings for eta bin " << lut.etaBin() << "===" << std::endl;
  os << *lut.getFunction() << std::endl;
  os << "\n===Lookup table contents===\n" << std::endl;
  const L1GctLut<L1GctJetEtCalibrationLut::NAddress,L1GctJetEtCalibrationLut::NData>* temp=&lut;
  os << *temp;
  return os;
}