Go to the documentation of this file.00001 #ifndef FastSimulation_TrackingRecHitProducer_FastPixelCPEESProducer_h
00002 #define FastSimulation_TrackingRecHitProducer_FastPixelCPEESProducer_h
00003
00004 #include "FWCore/Framework/interface/ESProducer.h"
00005 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00006 #include "RecoLocalTracker/Records/interface/TkPixelCPERecord.h"
00007 #include "RecoLocalTracker/ClusterParameterEstimator/interface/PixelClusterParameterEstimator.h"
00008 #include "FastSimulation/TrackingRecHitProducer/interface/FastPixelCPE.h"
00009 #include <boost/shared_ptr.hpp>
00010
00011 class FastPixelCPEESProducer: public edm::ESProducer{
00012 public:
00013 FastPixelCPEESProducer(const edm::ParameterSet & p);
00014 virtual ~FastPixelCPEESProducer();
00015 boost::shared_ptr<PixelClusterParameterEstimator> produce(const TkPixelCPERecord &);
00016 private:
00017 boost::shared_ptr<PixelClusterParameterEstimator> cpe_;
00018 edm::ParameterSet pset_;
00019 };
00020
00021
00022 #endif
00023
00024
00025
00026