CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackingRecHitPropagatorESProducer.cc
Go to the documentation of this file.
2 
7 
8 
9 #include <string>
10 #include <memory>
11 
12 using namespace edm;
13 
15 {
16  std::string myname = p.getParameter<std::string>("ComponentName");
17  pset_ = p;
18  setWhatProduced(this,myname);
19 }
20 
22 
23 boost::shared_ptr<TrackingRecHitPropagator>
26  iRecord.getRecord<IdealMagneticFieldRecord>().get(magfield );
27  theHitPropagator= boost::shared_ptr<TrackingRecHitPropagator>(new TrackingRecHitPropagator(magfield.product()));
28  return theHitPropagator;
29 }
30 
31 
T getParameter(std::string const &) const
boost::shared_ptr< TrackingRecHitPropagator > produce(const TrackingComponentsRecord &)
T const * product() const
Definition: ESHandle.h:62
TrackingRecHitPropagatorESProducer(const edm::ParameterSet &p)