CMS 3D CMS Logo

CMSSW_4_4_3_patch1/src/RecoPixelVertexing/PixelLowPtUtilities/plugins/PixelVertexProducerMedian.h

Go to the documentation of this file.
00001 #ifndef PixelVertexProducerMedian_H
00002 #define PixelVertexProducerMedian_H
00003 
00004 #include "FWCore/Framework/interface/EDProducer.h"
00005 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00006 
00007 namespace edm { class Event; class EventSetup; }
00008 
00009 class PixelVertexProducerMedian : public edm::EDProducer
00010 {
00011 public:
00012   explicit PixelVertexProducerMedian(const edm::ParameterSet& ps);
00013   ~PixelVertexProducerMedian();
00014   virtual void produce(edm::Event& ev, const edm::EventSetup& es);
00015  
00016 private:
00017   edm::ParameterSet theConfig;
00018   double thePtMin;
00019 };
00020 #endif