#include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/EDProducer.h" #include "FWCore/Framework/interface/Event.h" #include "FWCore/Framework/interface/MakerMacros.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" class Producer : public edm::EDProducer { public: Producer(const edm::ParameterSet&); ~Producer(); virtual void produce(edm::Event&, const edm::EventSetup&); private: };