CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
L1TMuonEndcapParamsOnlineProxy Class Reference
Inheritance diagram for L1TMuonEndcapParamsOnlineProxy:
edm::ESProducer edm::ESProxyFactoryProducer edm::eventsetup::DataProxyProvider

Public Member Functions

 L1TMuonEndcapParamsOnlineProxy (const edm::ParameterSet &)
 
std::shared_ptr< L1TMuonEndCapParamsproduce (const L1TMuonEndcapParamsO2ORcd &record)
 
 ~L1TMuonEndcapParamsOnlineProxy (void)
 
- Public Member Functions inherited from edm::ESProducer
 ESProducer ()
 
virtual ~ESProducer ()(false)
 
- Public Member Functions inherited from edm::ESProxyFactoryProducer
 ESProxyFactoryProducer ()
 
virtual void newInterval (const eventsetup::EventSetupRecordKey &iRecordType, const ValidityInterval &iInterval)
 overrides DataProxyProvider method More...
 
virtual ~ESProxyFactoryProducer () noexcept(false)
 
- 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 Attributes

unsigned int changeDate
 
unsigned int firmwareVersion
 
unsigned int PtAssignVersion
 

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
 
- 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())
 
virtual void registerProxies (const eventsetup::EventSetupRecordKey &iRecord, KeyedProxies &aProxyList)
 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 11 of file L1TMuonEndcapParamsOnlineProxy.cc.

Constructor & Destructor Documentation

L1TMuonEndcapParamsOnlineProxy::L1TMuonEndcapParamsOnlineProxy ( const edm::ParameterSet iConfig)

Definition at line 21 of file L1TMuonEndcapParamsOnlineProxy.cc.

References changeDate, firmwareVersion, edm::ParameterSet::getUntrackedParameter(), PtAssignVersion, and edm::ESProducer::setWhatProduced().

21  : edm::ESProducer() {
22  setWhatProduced(this);
23  PtAssignVersion = iConfig.getUntrackedParameter<unsigned int>("PtAssignVersion", 1);
24  firmwareVersion = iConfig.getUntrackedParameter<unsigned int>("firmwareVersion", 1);
25  changeDate = iConfig.getUntrackedParameter<unsigned int>("changeDate", 1);
26 }
T getUntrackedParameter(std::string const &, T const &) const
void setWhatProduced(T *iThis, const es::Label &iLabel=es::Label())
Definition: ESProducer.h:115
L1TMuonEndcapParamsOnlineProxy::~L1TMuonEndcapParamsOnlineProxy ( void  )
inline

Definition at line 18 of file L1TMuonEndcapParamsOnlineProxy.cc.

18 {}

Member Function Documentation

std::shared_ptr< L1TMuonEndCapParams > L1TMuonEndcapParamsOnlineProxy::produce ( const L1TMuonEndcapParamsO2ORcd record)

Definition at line 28 of file L1TMuonEndcapParamsOnlineProxy.cc.

References changeDate, DEFINE_FWK_EVENTSETUP_MODULE, firmwareVersion, and PtAssignVersion.

28  {
29 /*
30  const L1TMuonEndcapParamsRcd& baseRcd = record.template getRecord< L1TMuonEndcapParamsRcd >() ;
31  edm::ESHandle< L1TMuonEndcapParams > baseSettings ;
32  baseRcd.get( baseSettings ) ;
33 
34  return boost::shared_ptr< L1TMuonEndcapParams > ( new L1TMuonEndcapParams( *(baseSettings.product()) ) );
35 */
36  std::shared_ptr< L1TMuonEndCapParams > retval = std::make_shared< L1TMuonEndCapParams>();
37 
38  retval->PtAssignVersion_ = PtAssignVersion;
39  retval->firmwareVersion_ = firmwareVersion;
40  retval->PhiMatchWindowSt1_ = changeDate;
41  return retval;
42 }

Member Data Documentation

unsigned int L1TMuonEndcapParamsOnlineProxy::changeDate
private

Definition at line 13 of file L1TMuonEndcapParamsOnlineProxy.cc.

Referenced by L1TMuonEndcapParamsOnlineProxy(), and produce().

unsigned int L1TMuonEndcapParamsOnlineProxy::firmwareVersion
private

Definition at line 13 of file L1TMuonEndcapParamsOnlineProxy.cc.

Referenced by L1TMuonEndcapParamsOnlineProxy(), and produce().

unsigned int L1TMuonEndcapParamsOnlineProxy::PtAssignVersion
private

Definition at line 13 of file L1TMuonEndcapParamsOnlineProxy.cc.

Referenced by L1TMuonEndcapParamsOnlineProxy(), and produce().