CMS 3D CMS Logo

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

Public Member Functions

 JetResolutionDBReader (const edm::ParameterSet &)
 
 ~JetResolutionDBReader () override
 
- 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 const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
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
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
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
 
void beginJob () override
 
void endJob () 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
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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
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 28 of file JetResolutionDBReader.cc.

Constructor & Destructor Documentation

JetResolutionDBReader::JetResolutionDBReader ( const edm::ParameterSet iConfig)
explicit
JetResolutionDBReader::~JetResolutionDBReader ( )
override

Definition at line 71 of file JetResolutionDBReader.cc.

72 {
73 
74 }

Member Function Documentation

void JetResolutionDBReader::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 76 of file JetResolutionDBReader.cc.

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

77 {
79  std::cout << "Inspecting JER payload for label: "<< m_label << std::endl;
80 
81  iSetup.get<JetResolutionRcd>().get(m_label, jerObjectHandle);
82 
83  if (m_print) {
84  jerObjectHandle->dump();
85  }
86 
87  if (m_save_file) {
88  std::string f = m_era + "_" + m_label + ".txt";
89  jerObjectHandle->saveToFile(f);
90  std::cout << "JER payload saved as " << f << std::endl;
91  }
92 }
void saveToFile(const std::string &file) const
double f[11][100]
T get() const
Definition: EventSetup.h:71
void JetResolutionDBReader::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 94 of file JetResolutionDBReader.cc.

95 {
96 }
void JetResolutionDBReader::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 98 of file JetResolutionDBReader.cc.

99 {
100 }

Member Data Documentation

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