test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (std::string const &iProcessName, std::string const &iModuleLabel, bool iPrint, std::vector< char const * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual 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 &)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, 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 ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 45 of file JetResolutionDBReader.cc.

Constructor & Destructor Documentation

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

Member Function Documentation

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

Implements edm::EDAnalyzer.

Definition at line 109 of file JetResolutionDBReader.cc.

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

110 {
112  std::cout << "Inspecting JER SF payload for label: "<< m_label << std::endl;
113 
114  iSetup.get<JetResolutionScaleFactorRcd>().get(m_label, jerObjectHandle);
115 
116  if (m_print) {
117  jerObjectHandle->dump();
118  }
119 
120  if (m_save_file) {
121  std::string f = m_era + "_" + m_label + ".txt";
122  jerObjectHandle->saveToFile(f);
123  std::cout << "JER SF payload saved as " << f << std::endl;
124  }
125 }
double f[11][100]
const T & get() const
Definition: EventSetup.h:56
tuple cout
Definition: gather_cfg.py:145

Member Data Documentation

std::string JetResolutionScaleFactorDBReader::m_era
private

Definition at line 53 of file JetResolutionDBReader.cc.

Referenced by analyze(), and JetResolutionScaleFactorDBReader().

std::string JetResolutionScaleFactorDBReader::m_label
private

Definition at line 54 of file JetResolutionDBReader.cc.

Referenced by analyze(), and JetResolutionScaleFactorDBReader().

bool JetResolutionScaleFactorDBReader::m_print
private

Definition at line 57 of file JetResolutionDBReader.cc.

Referenced by analyze(), and JetResolutionScaleFactorDBReader().

bool JetResolutionScaleFactorDBReader::m_save_file
private

Definition at line 56 of file JetResolutionDBReader.cc.

Referenced by analyze(), and JetResolutionScaleFactorDBReader().