Go to the documentation of this file.00001 #ifndef FastSimulation_TrackingRecHitProducer_FastStripCPEESProducer_h
00002 #define FastSimulation_TrackingRecHitProducer_FastStripCPEESProducer_h
00003
00004 #include "FWCore/Framework/interface/ESProducer.h"
00005 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00006 #include "RecoLocalTracker/Records/interface/TkStripCPERecord.h"
00007 #include "RecoLocalTracker/ClusterParameterEstimator/interface/StripClusterParameterEstimator.h"
00008 #include <boost/shared_ptr.hpp>
00009
00010 class FastStripCPEESProducer: public edm::ESProducer{
00011 public:
00012 FastStripCPEESProducer(const edm::ParameterSet & p);
00013 ~FastStripCPEESProducer();
00014 boost::shared_ptr<StripClusterParameterEstimator> produce(const TkStripCPERecord &);
00015 private:
00016 boost::shared_ptr<StripClusterParameterEstimator> _cpe;
00017 edm::ParameterSet pset_;
00018 };
00019
00020
00021 #endif