Go to the documentation of this file.00001 #ifndef TrackingTools_TrackFitters_KFTrajectorySmootherESProducer_h
00002 #define TrackingTools_TrackFitters_KFTrajectorySmootherESProducer_h
00003
00012 #include "FWCore/Framework/interface/ESProducer.h"
00013 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00014 #include "TrackingTools/TrackFitters/interface/TrajectoryFitterRecord.h"
00015 #include "TrackingTools/Records/interface/TrackingComponentsRecord.h"
00016 #include "TrackingTools/TrackFitters/interface/KFTrajectorySmoother.h"
00017 #include <boost/shared_ptr.hpp>
00018
00019 class KFTrajectorySmootherESProducer: public edm::ESProducer{
00020 public:
00021 KFTrajectorySmootherESProducer(const edm::ParameterSet & p);
00022 virtual ~KFTrajectorySmootherESProducer();
00023 boost::shared_ptr<TrajectorySmoother> produce(const TrajectoryFitterRecord &);
00024 private:
00025 boost::shared_ptr<TrajectorySmoother> _smoother;
00026 edm::ParameterSet pset_;
00027 };
00028
00029
00030 #endif
00031
00032
00033
00034