CMS 3D CMS Logo

Classes | Functions
L1CaloEtScale.h File Reference
#include "CondFormats/Serialization/interface/Serializable.h"
#include <vector>
#include <ostream>
#include <cstdint>

Go to the source code of this file.

Classes

class  L1CaloEtScale
 

Functions

std::ostream & operator<< (std::ostream &os, const L1CaloEtScale onj)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  os,
const L1CaloEtScale  onj 
)

Definition at line 95 of file L1CaloEtScale.cc.

References mps_fire::i, getGTfromDQMFile::obj, and l1tGTMenu_BTagSeeds_cff::os.

95  {
96  os << "L1CaloEtScale :" << endl;
97  os << " Input scale max = " << obj.linScaleMax() << endl;
98  os << " Input LSB = " << obj.linearLsb() << " GeV" << endl;
99  os << " Rank scale max = " << obj.rankScaleMax() << endl;
100  for (unsigned i = 0; i < obj.getThresholds().size(); i++) {
101  os << " Threshold " << i << " = " << obj.getThresholds().at(i) << " GeV" << endl;
102  }
103  return os;
104 }