00001 #ifndef GsfTrajectorySmootherESProducer_h_ 00002 #define GsfTrajectorySmootherESProducer_h_ 00003 00004 #include "FWCore/Framework/interface/ESProducer.h" 00005 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00006 #include "TrackingTools/Records/interface/TrackingComponentsRecord.h" 00007 #include "TrackingTools/PatternTools/interface/TrajectorySmoother.h" 00008 #include <boost/shared_ptr.hpp> 00009 00012 class GsfTrajectorySmootherESProducer: public edm::ESProducer{ 00013 public: 00014 GsfTrajectorySmootherESProducer(const edm::ParameterSet & p); 00015 virtual ~GsfTrajectorySmootherESProducer(); 00016 boost::shared_ptr<TrajectorySmoother> produce(const TrackingComponentsRecord &); 00017 private: 00018 edm::ParameterSet pset_; 00019 }; 00020 00021 00022 #endif 00023 00024 00025 00026