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/TrackFitters/interface/TrajectoryFitterRecord.h" 00008 #include "TrackingTools/PatternTools/interface/TrajectorySmoother.h" 00009 #include <boost/shared_ptr.hpp> 00010 00013 class GsfTrajectorySmootherESProducer: public edm::ESProducer{ 00014 public: 00015 GsfTrajectorySmootherESProducer(const edm::ParameterSet & p); 00016 virtual ~GsfTrajectorySmootherESProducer(); 00017 boost::shared_ptr<TrajectorySmoother> produce(const TrajectoryFitterRecord &); 00018 private: 00019 edm::ParameterSet pset_; 00020 }; 00021 00022 00023 #endif 00024 00025 00026 00027