CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
MultiRecHitCollectorESProducer Class Reference

#include <MultiRecHitCollectorESProducer.h>

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

Public Member Functions

 MultiRecHitCollectorESProducer (const edm::ParameterSet &iConfig)
 
std::unique_ptr< MultiRecHitCollectorproduce (const MultiRecHitRecord &)
 
void setConf (const edm::ParameterSet &conf)
 
 ~MultiRecHitCollectorESProducer () override
 
- 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)
 

Private Attributes

edm::ParameterSet conf_
 

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
 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 19 of file MultiRecHitCollectorESProducer.h.

Constructor & Destructor Documentation

MultiRecHitCollectorESProducer::MultiRecHitCollectorESProducer ( const edm::ParameterSet iConfig)

Definition at line 24 of file MultiRecHitCollectorESProducer.cc.

References edm::ParameterSet::getParameter(), and AlCaHLTBitMon_QueryRunRegistry::string.

25 {
26  std::string myname = iConfig.getParameter<std::string>("ComponentName");
27  setConf(iConfig);
28  setWhatProduced(this,myname);
29 }
void setConf(const edm::ParameterSet &conf)
T getParameter(std::string const &) const
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:124
MultiRecHitCollectorESProducer::~MultiRecHitCollectorESProducer ( )
override

Definition at line 31 of file MultiRecHitCollectorESProducer.cc.

31 {}

Member Function Documentation

std::unique_ptr< MultiRecHitCollector > MultiRecHitCollectorESProducer::produce ( const MultiRecHitRecord iRecord)

Definition at line 34 of file MultiRecHitCollectorESProducer.cc.

References debug, edm::eventsetup::DependentRecordImplementation< RecordT, ListT >::get(), edm::eventsetup::DependentRecordImplementation< RecordT, ListT >::getRecord(), ecalDrivenElectronSeedsParameters_cff::measurementTrackerName, ALCARECOPromptCalibProdSiPixelAli0T_cff::mode, edm::ESHandle< T >::product(), and AlCaHLTBitMon_QueryRunRegistry::string.

34  {
35  std::string mode = "Grouped";
36  if (conf_.getParameter<std::string>("Mode")=="Simple") mode = "Simple";
37 
38  std::string mrhupdator = conf_.getParameter<std::string>("MultiRecHitUpdator");
39  std::string propagatorAlongName = conf_.getParameter<std::string>("propagatorAlong");
40  std::string estimatorName = conf_.getParameter<std::string>("estimator");
42  bool debug = conf_.getParameter<bool>("Debug");
43 
44 
46  iRecord.get(mrhupdator, mrhuhandle);
47  ESHandle<Propagator> propagatorhandle;
48  iRecord.getRecord<CkfComponentsRecord>().getRecord<TrackingComponentsRecord>().get(propagatorAlongName, propagatorhandle);
50  iRecord.getRecord<CkfComponentsRecord>().getRecord<TrackingComponentsRecord>().get(estimatorName, estimatorhandle);
51  ESHandle<MeasurementTracker> measurementhandle;
52  iRecord.getRecord<CkfComponentsRecord>().get(measurementTrackerName, measurementhandle);
53  ESHandle<TrackerTopology> trackerTopologyHandle;
54  iRecord.getRecord<CkfComponentsRecord>().getRecord<TrackerTopologyRcd>().get(trackerTopologyHandle);
55 
56  if (mode == "Grouped"){
57  std::string propagatorOppositeName = conf_.getParameter<std::string>("propagatorOpposite");
58  ESHandle<Propagator> propagatorOppositehandle;
59  iRecord.getRecord<CkfComponentsRecord>().getRecord<TrackingComponentsRecord>().get(propagatorOppositeName, propagatorOppositehandle);
60  return std::make_unique<GroupedDAFHitCollector>(measurementhandle.product(),
61  mrhuhandle.product(),
62  estimatorhandle.product(),
63  propagatorhandle.product(),
64  propagatorOppositehandle.product(), debug);
65  }
66  else {
67  return std::make_unique<SimpleDAFHitCollector>(trackerTopologyHandle.product(),
68  measurementhandle.product(),
69  mrhuhandle.product(),
70  estimatorhandle.product(),
71  propagatorhandle.product(), debug);
72  }
73 
74 
75 }
T getParameter(std::string const &) const
ProductT const & get(ESGetToken< ProductT, DepRecordT > const &iToken) const
#define debug
Definition: HDRShower.cc:19
measurementTrackerName
possibility to inhibit extended forward coverage
T const * product() const
Definition: ESHandle.h:86
void MultiRecHitCollectorESProducer::setConf ( const edm::ParameterSet conf)
inline

Definition at line 26 of file MultiRecHitCollectorESProducer.h.

References conf_.

26 { conf_ = conf; }

Member Data Documentation

edm::ParameterSet MultiRecHitCollectorESProducer::conf_
private

Definition at line 29 of file MultiRecHitCollectorESProducer.h.

Referenced by setConf().