CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
JetResolutionScaleFactorDBReader Class Reference
Inheritance diagram for JetResolutionScaleFactorDBReader:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 JetResolutionScaleFactorDBReader (const edm::ParameterSet &)
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase &&)=default
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 

Private Attributes

std::string m_era
 
std::string m_label
 
bool m_print
 
bool m_save_file
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 

Detailed Description

Definition at line 45 of file JetResolutionDBReader.cc.

Constructor & Destructor Documentation

◆ JetResolutionScaleFactorDBReader()

JetResolutionScaleFactorDBReader::JetResolutionScaleFactorDBReader ( const edm::ParameterSet iConfig)
explicit

Definition at line 89 of file JetResolutionDBReader.cc.

89  {
90  m_era = iConfig.getUntrackedParameter<std::string>("era");
91  m_label = iConfig.getUntrackedParameter<std::string>("label");
92  m_print = iConfig.getUntrackedParameter<bool>("dump", true);
93  m_save_file = iConfig.getUntrackedParameter<bool>("saveFile", false);
94 }

References edm::ParameterSet::getUntrackedParameter(), m_era, m_label, m_print, m_save_file, and AlCaHLTBitMon_QueryRunRegistry::string.

Member Function Documentation

◆ analyze()

void JetResolutionScaleFactorDBReader::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 96 of file JetResolutionDBReader.cc.

96  {
98  std::cout << "Inspecting JER SF payload for label: " << m_label << std::endl;
99 
100  iSetup.get<JetResolutionScaleFactorRcd>().get(m_label, jerObjectHandle);
101 
102  if (m_print) {
103  jerObjectHandle->dump();
104  }
105 
106  if (m_save_file) {
107  std::string f = m_era + "_" + m_label + ".txt";
108  jerObjectHandle->saveToFile(f);
109  std::cout << "JER SF payload saved as " << f << std::endl;
110  }
111 }

References gather_cfg::cout, JME::JetResolutionObject::dump(), f, edm::EventSetup::get(), get, m_era, m_label, m_print, m_save_file, JME::JetResolutionObject::saveToFile(), and AlCaHLTBitMon_QueryRunRegistry::string.

Member Data Documentation

◆ m_era

std::string JetResolutionScaleFactorDBReader::m_era
private

Definition at line 52 of file JetResolutionDBReader.cc.

Referenced by analyze(), and JetResolutionScaleFactorDBReader().

◆ m_label

std::string JetResolutionScaleFactorDBReader::m_label
private

Definition at line 53 of file JetResolutionDBReader.cc.

Referenced by analyze(), and JetResolutionScaleFactorDBReader().

◆ m_print

bool JetResolutionScaleFactorDBReader::m_print
private

Definition at line 56 of file JetResolutionDBReader.cc.

Referenced by analyze(), and JetResolutionScaleFactorDBReader().

◆ m_save_file

bool JetResolutionScaleFactorDBReader::m_save_file
private

Definition at line 55 of file JetResolutionDBReader.cc.

Referenced by analyze(), and JetResolutionScaleFactorDBReader().

f
double f[11][100]
Definition: MuScleFitUtils.cc:78
gather_cfg.cout
cout
Definition: gather_cfg.py:144
JetResolutionScaleFactorDBReader::m_label
std::string m_label
Definition: JetResolutionDBReader.cc:53
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
JetResolutionScaleFactorDBReader::m_era
std::string m_era
Definition: JetResolutionDBReader.cc:52
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
JetResolutionScaleFactorDBReader::m_save_file
bool m_save_file
Definition: JetResolutionDBReader.cc:55
edm::ESHandle
Definition: DTSurvey.h:22
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
JetResolutionScaleFactorDBReader::m_print
bool m_print
Definition: JetResolutionDBReader.cc:56
JME::JetResolutionObject::dump
void dump() const
Definition: JetResolutionObject.cc:283
get
#define get
JetResolutionScaleFactorRcd
Definition: JetResolutionScaleFactorRcd.h:9
JME::JetResolutionObject::saveToFile
void saveToFile(const std::string &file) const
Definition: JetResolutionObject.cc:327