CMS 3D CMS Logo

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

#include <PropagatorWithMaterialESProducer.h>

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

Public Member Functions

std::shared_ptr< Propagatorproduce (const TrackingComponentsRecord &)
 
 PropagatorWithMaterialESProducer (const edm::ParameterSet &p)
 
 ~PropagatorWithMaterialESProducer () 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 Attributes

std::shared_ptr< Propagator_propagator
 
edm::ParameterSet pset_
 

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())
 
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

ESProducer for PropagatorWithMaterial.

Author
cerati

Definition at line 16 of file PropagatorWithMaterialESProducer.h.

Constructor & Destructor Documentation

PropagatorWithMaterialESProducer::PropagatorWithMaterialESProducer ( const edm::ParameterSet p)

Definition at line 17 of file PropagatorWithMaterialESProducer.cc.

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

18 {
19  std::string myname = p.getParameter<std::string>("ComponentName");
20  pset_ = p;
21  setWhatProduced(this,myname);
22 }
T getParameter(std::string const &) const
void setWhatProduced(T *iThis, const es::Label &iLabel=es::Label())
Definition: ESProducer.h:115
PropagatorWithMaterialESProducer::~PropagatorWithMaterialESProducer ( )
override

Definition at line 24 of file PropagatorWithMaterialESProducer.cc.

24 {}

Member Function Documentation

std::shared_ptr< Propagator > PropagatorWithMaterialESProducer::produce ( const TrackingComponentsRecord iRecord)

Definition at line 27 of file PropagatorWithMaterialESProducer.cc.

References alongMomentum, anyDirection, dir, edm::eventsetup::DependentRecordImplementation< RecordT, ListT >::getRecord(), ResonanceBuilder::mass, CSCSegmentAlgorithmDF_cfi::maxDPhi, oppositeToMomentum, ALCARECOTkAlBeamHalo_cff::ptMin, AlCaHLTBitMon_QueryRunRegistry::string, and PropagatorsForLoopers_cff::useOldAnalPropLogic.

27  {
28 // if (_propagator){
29 // delete _propagator;
30 // _propagator = 0;
31 // }
32 
33  std::string pdir = pset_.getParameter<std::string>("PropagationDirection");
34  double mass = pset_.getParameter<double>("Mass");
35  double maxDPhi = pset_.getParameter<double>("MaxDPhi");
36  bool useRK = pset_.getParameter<bool>("useRungeKutta");
37  bool useOldAnalPropLogic = pset_.existsAs<bool>("useOldAnalPropLogic") ?
38  pset_.getParameter<bool>("useOldAnalPropLogic") : true;
39  double ptMin = pset_.existsAs<double>("ptMin") ? pset_.getParameter<double>("ptMin") : -1.0;
40 
41  ESHandle<MagneticField> magfield;
42  std::string mfName = "";
43  if (pset_.exists("SimpleMagneticField"))
44  mfName = pset_.getParameter<std::string>("SimpleMagneticField");
45  iRecord.getRecord<IdealMagneticFieldRecord>().get(mfName,magfield);
46  // edm::ESInputTag mfESInputTag(mfName);
47  // iRecord.getRecord<IdealMagneticFieldRecord>().get(mfESInputTag,magfield);
48  //fixme check that useRK is false when using SimpleMagneticField
49 
51 
52  if (pdir == "oppositeToMomentum") dir = oppositeToMomentum;
53  if (pdir == "alongMomentum") dir = alongMomentum;
54  if (pdir == "anyDirection") dir = anyDirection;
55 
56  _propagator = std::make_shared<PropagatorWithMaterial>(dir, mass, &(*magfield),
57  maxDPhi,useRK,ptMin,
59  return _propagator;
60 }
T getParameter(std::string const &) const
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:186
bool exists(std::string const &parameterName) const
checks if a parameter exists
PropagationDirection
dbl *** dir
Definition: mlp_gen.cc:35

Member Data Documentation

std::shared_ptr<Propagator> PropagatorWithMaterialESProducer::_propagator
private

Definition at line 22 of file PropagatorWithMaterialESProducer.h.

edm::ParameterSet PropagatorWithMaterialESProducer::pset_
private

Definition at line 23 of file PropagatorWithMaterialESProducer.h.