Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-04-15 01:47:33

0001 #ifndef RecoTracker_PixelLowPtUtilities_plugins_PixelVertexProducerMedian_h
0002 #define RecoTracker_PixelLowPtUtilities_plugins_PixelVertexProducerMedian_h
0003 
0004 #include "FWCore/Framework/interface/global/EDProducer.h"
0005 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0006 
0007 namespace edm {
0008   class Event;
0009   class EventSetup;
0010 }  // namespace edm
0011 
0012 class PixelVertexProducerMedian : public edm::global::EDProducer<> {
0013 public:
0014   explicit PixelVertexProducerMedian(const edm::ParameterSet& ps);
0015   ~PixelVertexProducerMedian() override;
0016   void produce(edm::StreamID, edm::Event& ev, const edm::EventSetup& es) const override;
0017 
0018 private:
0019   edm::ParameterSet theConfig;
0020   double thePtMin;
0021 };
0022 #endif