CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
FFTJetLookupTableESProducer< CT > Class Template Reference

#include <JetMETCorrections/FFTJetModules/plugins/FFTJetLookupTableESProducer.cc>

Inheritance diagram for FFTJetLookupTableESProducer< CT >:
edm::ESProducer edm::ESProxyFactoryProducer edm::eventsetup::DataProxyProvider

Public Types

typedef FFTJetLookupTableRcd< CT > MyRecord
 
typedef FFTJetCorrectorParametersRcd< CT > ParentRecord
 
typedef std::shared_ptr< FFTJetLookupTableSequenceReturnType
 
- Public Types inherited from edm::eventsetup::DataProxyProvider
typedef std::vector< std::pair< DataKey, edm::propagate_const< std::shared_ptr< DataProxy > > > > KeyedProxies
 
typedef std::vector< EventSetupRecordKeyKeys
 
typedef std::map< EventSetupRecordKey, KeyedProxiesRecordProxies
 

Public Member Functions

 FFTJetLookupTableESProducer (const edm::ParameterSet &)
 
ReturnType produce (const MyRecord &)
 
 ~FFTJetLookupTableESProducer () override
 
- Public Member Functions inherited from edm::ESProducer
 ESProducer ()
 
 ~ESProducer ()(false) override
 
- Public Member Functions inherited from edm::ESProxyFactoryProducer
 ESProxyFactoryProducer ()
 
void newInterval (const eventsetup::EventSetupRecordKey &iRecordType, const ValidityInterval &iInterval) override
 overrides DataProxyProvider method More...
 
 ~ESProxyFactoryProducer () noexcept(false) override
 
- Public Member Functions inherited from edm::eventsetup::DataProxyProvider
 DataProxyProvider ()
 
const ComponentDescriptiondescription () const
 
bool isUsingRecord (const EventSetupRecordKey &) const
 
const KeyedProxieskeyedProxies (const EventSetupRecordKey &iRecordKey) const
 
void resetProxies (const EventSetupRecordKey &iRecordType)
 
void resetProxiesIfTransient (const EventSetupRecordKey &iRecordType)
 
void setAppendToDataLabel (const edm::ParameterSet &)
 
void setDescription (const ComponentDescription &iDescription)
 
std::set< EventSetupRecordKeyusingRecords () const
 
virtual ~DataProxyProvider () noexcept(false)
 

Private Member Functions

void doWhenChanged (const ParentRecord &)
 

Private Attributes

bool isArchiveCompressed
 
ReturnType product
 
bool remakeProduct
 
std::vector< edm::ParameterSettables
 
bool verbose
 

Additional Inherited Members

- Static Public Member Functions inherited from edm::eventsetup::DataProxyProvider
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::ESProducer
template<typename T >
void setWhatProduced (T *iThis, const es::Label &iLabel=es::Label())
 
template<typename T >
void setWhatProduced (T *iThis, const char *iLabel)
 
template<typename T >
void setWhatProduced (T *iThis, const std::string &iLabel)
 
template<typename T , typename TDecorator >
void setWhatProduced (T *iThis, const TDecorator &iDec, const es::Label &iLabel=es::Label())
 
template<typename T , typename TReturn , typename TRecord >
void setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const es::Label &iLabel=es::Label())
 
template<typename T , typename TReturn , typename TRecord , typename TArg >
void setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const TArg &iDec, const es::Label &iLabel=es::Label())
 
- Protected Member Functions inherited from edm::ESProxyFactoryProducer
template<class TFactory >
void registerFactory (std::unique_ptr< TFactory > iFactory, const std::string &iLabel=std::string())
 
virtual void registerFactoryWithKey (const eventsetup::EventSetupRecordKey &iRecord, std::unique_ptr< eventsetup::ProxyFactoryBase > iFactory, const std::string &iLabel=std::string())
 
void registerProxies (const eventsetup::EventSetupRecordKey &iRecord, KeyedProxies &aProxyList) override
 override DataProxyProvider method More...
 
- Protected Member Functions inherited from edm::eventsetup::DataProxyProvider
void eraseAll (const EventSetupRecordKey &iRecordKey)
 deletes all the Proxies in aStream More...
 
void invalidateProxies (const EventSetupRecordKey &iRecordKey)
 
template<class T >
void usingRecord ()
 
void usingRecordWithKey (const EventSetupRecordKey &)
 

Detailed Description

template<typename CT>
class FFTJetLookupTableESProducer< CT >

Description: produces lookup tables for jet reconstruction

Implementation: [Notes on implementation]

Definition at line 112 of file FFTJetLookupTableESProducer.cc.

Member Typedef Documentation

template<typename CT>
typedef FFTJetLookupTableRcd<CT> FFTJetLookupTableESProducer< CT >::MyRecord

Definition at line 116 of file FFTJetLookupTableESProducer.cc.

template<typename CT>
typedef FFTJetCorrectorParametersRcd<CT> FFTJetLookupTableESProducer< CT >::ParentRecord

Definition at line 117 of file FFTJetLookupTableESProducer.cc.

template<typename CT>
typedef std::shared_ptr<FFTJetLookupTableSequence> FFTJetLookupTableESProducer< CT >::ReturnType

Definition at line 115 of file FFTJetLookupTableESProducer.cc.

Constructor & Destructor Documentation

template<typename CT >
FFTJetLookupTableESProducer< CT >::FFTJetLookupTableESProducer ( const edm::ParameterSet psIn)

Definition at line 142 of file FFTJetLookupTableESProducer.cc.

References edm::eventsetup::dependsOn(), FFTJetLookupTableESProducer< CT >::doWhenChanged(), and edm::ESProducer::setWhatProduced().

144  : tables(psIn.getParameter<std::vector<edm::ParameterSet> >("tables")),
145  isArchiveCompressed(psIn.getParameter<bool>("isArchiveCompressed")),
146  verbose(psIn.getUntrackedParameter<bool>("verbose")),
147  remakeProduct(true)
148 {
149  // The following line is needed to tell the framework what
150  // data is being produced
152 }
void doWhenChanged(const ParentRecord &)
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
depends_on::OneHolder< T, TDependsOnRecord > dependsOn(void(T::*iT)(const TDependsOnRecord &))
void setWhatProduced(T *iThis, const es::Label &iLabel=es::Label())
Definition: ESProducer.h:115
std::vector< edm::ParameterSet > tables
template<typename CT>
FFTJetLookupTableESProducer< CT >::~FFTJetLookupTableESProducer ( )
inlineoverride

Definition at line 120 of file FFTJetLookupTableESProducer.cc.

References FFTJetLookupTableESProducer< CT >::produce().

120 {}

Member Function Documentation

template<typename CT>
void FFTJetLookupTableESProducer< CT >::doWhenChanged ( const ParentRecord )
inlineprivate
template<typename CT >
FFTJetLookupTableESProducer< CT >::ReturnType FFTJetLookupTableESProducer< CT >::produce ( const MyRecord iRecord)

Definition at line 157 of file FFTJetLookupTableESProducer.cc.

References buildLookupTables(), edm::eventsetup::EventSetupRecord::get(), FFTJetLookupTableESProducer< CT >::isArchiveCompressed, FFTJetLookupTableESProducer< CT >::product, FFTJetLookupTableESProducer< CT >::remakeProduct, and FFTJetLookupTableESProducer< CT >::tables.

Referenced by FFTJetLookupTableESProducer< CT >::~FFTJetLookupTableESProducer().

158 {
159  if (remakeProduct)
160  {
161  // According to:
162  // https://twiki.cern.ch/twiki/bin/view/CMSPublic/SWGuideHowToGetDependentRecord
163  //
164  // If ARecord is dependent on BRecord then you can
165  // call the method getRecord of ARecord:
166  //
167  // const BRecord& b = aRecord.getRecord<BRecord>();
168  //
169  const ParentRecord& rec = iRecord.template getRecord<ParentRecord>();
171  rec.get(parHandle);
173  *parHandle, tables, isArchiveCompressed, verbose);
174  remakeProduct = false;
175  }
176  return product;
177 }
std::vector< edm::ParameterSet > tables
FFTJetCorrectorParametersRcd< CT > ParentRecord
static std::shared_ptr< FFTJetLookupTableSequence > buildLookupTables(const FFTJetCorrectorParameters &tablePars, const std::vector< edm::ParameterSet > &tableDefs, const bool isArchiveCompressed, const bool verbose)

Member Data Documentation

template<typename CT>
bool FFTJetLookupTableESProducer< CT >::isArchiveCompressed
private
template<typename CT>
ReturnType FFTJetLookupTableESProducer< CT >::product
private
template<typename CT>
bool FFTJetLookupTableESProducer< CT >::remakeProduct
private
template<typename CT>
std::vector<edm::ParameterSet> FFTJetLookupTableESProducer< CT >::tables
private
template<typename CT>
bool FFTJetLookupTableESProducer< CT >::verbose
private