CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Types | Private Member Functions | Private Attributes
RPCInverseLBLinkMapESProducer Class Reference

#include <RPCInverseLBLinkMapESProducer.h>

Inheritance diagram for RPCInverseLBLinkMapESProducer:
edm::ESProducer edm::ESProxyFactoryProducer edm::eventsetup::DataProxyProvider

Public Member Functions

std::shared_ptr< RPCInverseLBLinkMapproduce (RPCInverseLBLinkMapRcd const &_rcd)
 
 RPCInverseLBLinkMapESProducer (edm::ParameterSet const &_config)
 
- Public Member Functions inherited from edm::ESProducer
 ESProducer ()
 
ESProxyIndex const * getTokenIndices (unsigned int iIndex) const
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &) final
 
 ~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)
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &_descs)
 
- Static Public Member Functions inherited from edm::eventsetup::DataProxyProvider
static void prevalidate (ConfigurationDescriptions &)
 

Private Types

using HostType = edm::ESProductHost< RPCInverseLBLinkMap, RPCLBLinkMapRcd >
 

Private Member Functions

void setupRPCLBLinkMap (RPCLBLinkMapRcd const &, RPCInverseLBLinkMap *)
 

Private Attributes

edm::ReusableObjectHolder< HostTypeholder_
 

Additional Inherited Members

- 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
 
- Protected Member Functions inherited from edm::ESProducer
 ESProducer (const ESProducer &)=delete
 
ESProducer const & operator= (const ESProducer &)=delete
 
template<typename T >
auto setWhatProduced (T *iThis, const es::Label &iLabel={})
 
template<typename T >
auto setWhatProduced (T *iThis, const char *iLabel)
 
template<typename T >
auto setWhatProduced (T *iThis, const std::string &iLabel)
 
template<typename T , typename TDecorator >
auto setWhatProduced (T *iThis, const TDecorator &iDec, const es::Label &iLabel={})
 
template<typename T , typename TReturn , typename TRecord >
auto setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const es::Label &iLabel={})
 
template<typename T , typename TReturn , typename TRecord , typename TArg >
ESConsumesCollectorT< TRecord > setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const TArg &iDec, const es::Label &iLabel={})
 
- 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

Definition at line 20 of file RPCInverseLBLinkMapESProducer.h.

Member Typedef Documentation

Definition at line 33 of file RPCInverseLBLinkMapESProducer.h.

Constructor & Destructor Documentation

RPCInverseLBLinkMapESProducer::RPCInverseLBLinkMapESProducer ( edm::ParameterSet const &  _config)
explicit

Definition at line 14 of file RPCInverseLBLinkMapESProducer.cc.

References edm::ESProducer::setWhatProduced().

15 {
16  setWhatProduced(this);
17 }
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:124

Member Function Documentation

void RPCInverseLBLinkMapESProducer::fillDescriptions ( edm::ConfigurationDescriptions _descs)
static

Definition at line 19 of file RPCInverseLBLinkMapESProducer.cc.

References edm::ConfigurationDescriptions::add().

20 {
22  _descs.add("RPCInverseLBLinkMapESProducer", _desc);
23 }
void add(std::string const &label, ParameterSetDescription const &psetDescription)
std::shared_ptr< RPCInverseLBLinkMap > RPCInverseLBLinkMapESProducer::produce ( RPCInverseLBLinkMapRcd const &  _rcd)

Definition at line 39 of file RPCInverseLBLinkMapESProducer.cc.

References DEFINE_FWK_EVENTSETUP_MODULE, h, holder_, query::host, edm::ReusableObjectHolder< T >::makeOrGet(), and setupRPCLBLinkMap().

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

40 {
41  auto host = holder_.makeOrGet([]() {
42  return new HostType;
43  });
44 
45  host->ifRecordChanges<RPCLBLinkMapRcd>(_rcd,
46  [this,h=host.get()](auto const& rec) {
47  setupRPCLBLinkMap(rec, h);
48  });
49 
50  return host;
51 }
edm::ESProductHost< RPCInverseLBLinkMap, RPCLBLinkMapRcd > HostType
host
Definition: query.py:115
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
std::shared_ptr< T > makeOrGet(F iFunc)
If there isn&#39;t an object already available, creates a new one using iFunc.
void setupRPCLBLinkMap(RPCLBLinkMapRcd const &, RPCInverseLBLinkMap *)
edm::ReusableObjectHolder< HostType > holder_
void RPCInverseLBLinkMapESProducer::setupRPCLBLinkMap ( RPCLBLinkMapRcd const &  _rcd,
RPCInverseLBLinkMap inverse_linkmap 
)
private

Definition at line 25 of file RPCInverseLBLinkMapESProducer.cc.

References edm::eventsetup::EventSetupRecordImplementation< T >::get(), RPCLBLinkMap::getMap(), RPCInverseLBLinkMap::getMap(), and edm::ESHandle< T >::product().

Referenced by produce().

27 {
28  RPCInverseLBLinkMap::map_type & _inverse_map(inverse_linkmap->getMap());
29  _inverse_map.clear();
30 
32  _rcd.get(_es_map);
33  RPCLBLinkMap const & _map = *(_es_map.product());
34  for (auto const & _link : _map.getMap()) {
35  _inverse_map.insert(RPCInverseLBLinkMap::map_type::value_type(_link.second.getRPCDetId().rawId(), _link));
36  }
37 }
map_type & getMap()
Definition: RPCLBLinkMap.h:28
std::multimap< std::uint32_t, std::pair< RPCLBLink, RPCFebConnector > > map_type
T const * product() const
Definition: ESHandle.h:86

Member Data Documentation

edm::ReusableObjectHolder<HostType> RPCInverseLBLinkMapESProducer::holder_
private

Definition at line 38 of file RPCInverseLBLinkMapESProducer.h.

Referenced by produce().