CMS 3D CMS Logo

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

Public Member Functions

 BeamHaloPropagatorESProducer (const edm::ParameterSet &)
 Constructor. More...
 
std::unique_ptr< Propagatorproduce (const TrackingComponentsRecord &)
 
 ~BeamHaloPropagatorESProducer () override
 Destructor. More...
 
- Public Member Functions inherited from edm::ESProducer
 ESProducer ()
 
 ESProducer (const ESProducer &)=delete
 
ESProxyIndex const * getTokenIndices (unsigned int iIndex) const
 
ESRecordIndex const * getTokenRecordIndices (unsigned int iIndex) const
 
bool hasMayConsumes () const noexcept
 
size_t numberOfTokenIndices (unsigned int iIndex) const
 
ESProducer const & operator= (const ESProducer &)=delete
 
SerialTaskQueueChainqueue ()
 
template<typename Record >
std::optional< std::vector< ESProxyIndex > > updateFromMayConsumes (unsigned int iIndex, const Record &iRecord) const
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &) final
 
 ~ESProducer () noexcept(false) override
 
- Public Member Functions inherited from edm::ESProxyFactoryProducer
 ESProxyFactoryProducer ()
 
 ESProxyFactoryProducer (const ESProxyFactoryProducer &)=delete
 
const ESProxyFactoryProduceroperator= (const ESProxyFactoryProducer &)=delete
 
 ~ESProxyFactoryProducer () noexcept(false) override
 
- Public Member Functions inherited from edm::eventsetup::DataProxyProvider
void createKeyedProxies (EventSetupRecordKey const &key, unsigned int nConcurrentIOVs)
 
 DataProxyProvider ()
 
 DataProxyProvider (const DataProxyProvider &)=delete
 
const ComponentDescriptiondescription () const
 
void fillRecordsNotAllowingConcurrentIOVs (std::set< EventSetupRecordKey > &recordsNotAllowingConcurrentIOVs) const
 
virtual void initConcurrentIOVs (EventSetupRecordKey const &key, unsigned int nConcurrentIOVs)
 
bool isUsingRecord (const EventSetupRecordKey &key) const
 
KeyedProxieskeyedProxies (const EventSetupRecordKey &iRecordKey, unsigned int iovIndex=0)
 
const DataProxyProvideroperator= (const DataProxyProvider &)=delete
 
void setAppendToDataLabel (const edm::ParameterSet &)
 
void setDescription (const ComponentDescription &iDescription)
 
std::set< EventSetupRecordKeyusingRecords () const
 
virtual ~DataProxyProvider () noexcept(false)
 

Private Attributes

edm::ESGetToken< Propagator, TrackingComponentsRecordcrossToken_
 
edm::ESGetToken< Propagator, TrackingComponentsRecordendcapToken_
 
edm::ESGetToken< MagneticField, IdealMagneticFieldRecordmagToken_
 
std::string myname
 
std::string theCrossingTrackerPropagatorName
 
std::string theEndCapTrackerPropagatorName
 
PropagationDirection thePropagationDirection
 

Additional Inherited Members

- Static Public Member Functions inherited from edm::eventsetup::DataProxyProvider
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Types inherited from edm::ESProxyFactoryProducer
using EventSetupRecordKey = eventsetup::EventSetupRecordKey
 
- Protected Types inherited from edm::eventsetup::DataProxyProvider
using KeyedProxiesVector = std::vector< std::pair< DataKey, std::shared_ptr< DataProxy > >>
 
- Protected Member Functions inherited from edm::ESProducer
template<typename T >
auto setWhatProduced (T *iThis, const char *iLabel)
 
template<typename T >
auto setWhatProduced (T *iThis, const es::Label &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={})
 
void usesResources (std::vector< std::string > const &)
 
- 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 EventSetupRecordKey &iRecord, std::unique_ptr< eventsetup::ProxyFactoryBase > iFactory, const std::string &iLabel=std::string())
 
KeyedProxiesVector registerProxies (const EventSetupRecordKey &, unsigned int iovIndex) override
 
- Protected Member Functions inherited from edm::eventsetup::DataProxyProvider
template<class T >
void usingRecord ()
 
void usingRecordWithKey (const EventSetupRecordKey &key)
 

Detailed Description

ES producer needed to put the BeamHaloPropagator inside the EventSetup

Author
Jean-Roch VLIMANT UCSB

Definition at line 28 of file BeamHaloPropagatorESProducer.cc.

Constructor & Destructor Documentation

◆ BeamHaloPropagatorESProducer()

BeamHaloPropagatorESProducer::BeamHaloPropagatorESProducer ( const edm::ParameterSet parameterSet)

Constructor.

Definition at line 52 of file BeamHaloPropagatorESProducer.cc.

52  {
53  myname = parameterSet.getParameter<string>("ComponentName");
54 
55  string propDir = parameterSet.getParameter<string>("PropagationDirection");
56 
57  if (propDir == "oppositeToMomentum")
59  else if (propDir == "alongMomentum")
61  else if (propDir == "anyDirection")
63  else
64  throw cms::Exception("BeamHaloPropagatorESProducer")
65  << "Wrong fit direction (" << propDir << ")chosen in BeamHaloPropagatorESProducer";
66 
67  theEndCapTrackerPropagatorName = parameterSet.getParameter<string>("EndCapTrackerPropagator");
68  theCrossingTrackerPropagatorName = parameterSet.getParameter<string>("CrossingTrackerPropagator");
69 
70  auto cc = setWhatProduced(this, myname);
71  magToken_ = cc.consumes();
74 }

References alongMomentum, anyDirection, Exception, edm::ParameterSet::getParameter(), oppositeToMomentum, edm::parameterSet(), and alignCSCRings::s.

◆ ~BeamHaloPropagatorESProducer()

BeamHaloPropagatorESProducer::~BeamHaloPropagatorESProducer ( )
override

Destructor.

Definition at line 76 of file BeamHaloPropagatorESProducer.cc.

76 {}

Member Function Documentation

◆ produce()

std::unique_ptr< Propagator > BeamHaloPropagatorESProducer::produce ( const TrackingComponentsRecord iRecord)

Definition at line 78 of file BeamHaloPropagatorESProducer.cc.

78  {
79  LogDebug("BeamHaloPropagator") << "Creating a BeamHaloPropagator: " << myname
80  << "\n with EndCap Propagator: " << theEndCapTrackerPropagatorName
81  << "\n with Crossing Propagator: " << theCrossingTrackerPropagatorName;
82 
83  return std::make_unique<BeamHaloPropagator>(
84  iRecord.get(endcapToken_), iRecord.get(crossToken_), &iRecord.get(magToken_), thePropagationDirection);
85 }

References edm::eventsetup::DependentRecordImplementation< RecordT, ListT >::get(), and LogDebug.

Member Data Documentation

◆ crossToken_

edm::ESGetToken<Propagator, TrackingComponentsRecord> BeamHaloPropagatorESProducer::crossToken_
private

Definition at line 46 of file BeamHaloPropagatorESProducer.cc.

◆ endcapToken_

edm::ESGetToken<Propagator, TrackingComponentsRecord> BeamHaloPropagatorESProducer::endcapToken_
private

Definition at line 45 of file BeamHaloPropagatorESProducer.cc.

◆ magToken_

edm::ESGetToken<MagneticField, IdealMagneticFieldRecord> BeamHaloPropagatorESProducer::magToken_
private

Definition at line 44 of file BeamHaloPropagatorESProducer.cc.

◆ myname

std::string BeamHaloPropagatorESProducer::myname
private

Definition at line 41 of file BeamHaloPropagatorESProducer.cc.

◆ theCrossingTrackerPropagatorName

std::string BeamHaloPropagatorESProducer::theCrossingTrackerPropagatorName
private

Definition at line 43 of file BeamHaloPropagatorESProducer.cc.

◆ theEndCapTrackerPropagatorName

std::string BeamHaloPropagatorESProducer::theEndCapTrackerPropagatorName
private

Definition at line 42 of file BeamHaloPropagatorESProducer.cc.

◆ thePropagationDirection

PropagationDirection BeamHaloPropagatorESProducer::thePropagationDirection
private

Definition at line 40 of file BeamHaloPropagatorESProducer.cc.

anyDirection
Definition: PropagationDirection.h:4
edm::ESInputTag
Definition: ESInputTag.h:87
edm::ESProducer::setWhatProduced
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:163
BeamHaloPropagatorESProducer::crossToken_
edm::ESGetToken< Propagator, TrackingComponentsRecord > crossToken_
Definition: BeamHaloPropagatorESProducer.cc:46
oppositeToMomentum
Definition: PropagationDirection.h:4
BeamHaloPropagatorESProducer::magToken_
edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magToken_
Definition: BeamHaloPropagatorESProducer.cc:44
cc
alignCSCRings.s
s
Definition: alignCSCRings.py:92
edm::eventsetup::DependentRecordImplementation::get
ProductT const & get(ESGetToken< ProductT, DepRecordT > const &iToken) const
Definition: DependentRecordImplementation.h:103
BeamHaloPropagatorESProducer::endcapToken_
edm::ESGetToken< Propagator, TrackingComponentsRecord > endcapToken_
Definition: BeamHaloPropagatorESProducer.cc:45
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:223
BeamHaloPropagatorESProducer::thePropagationDirection
PropagationDirection thePropagationDirection
Definition: BeamHaloPropagatorESProducer.cc:40
BeamHaloPropagatorESProducer::theEndCapTrackerPropagatorName
std::string theEndCapTrackerPropagatorName
Definition: BeamHaloPropagatorESProducer.cc:42
BeamHaloPropagatorESProducer::theCrossingTrackerPropagatorName
std::string theCrossingTrackerPropagatorName
Definition: BeamHaloPropagatorESProducer.cc:43
Exception
Definition: hltDiff.cc:246
edm::parameterSet
ParameterSet const & parameterSet(Provenance const &provenance, ProcessHistory const &history)
Definition: Provenance.cc:11
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
BeamHaloPropagatorESProducer::myname
std::string myname
Definition: BeamHaloPropagatorESProducer.cc:41
alongMomentum
Definition: PropagationDirection.h:4