00001 #ifndef SHALLOW_EXAMPLE_PRODUCER 00002 #define SHALLOW_EXAMPLE_PRODUCER 00003 00004 #include "FWCore/Framework/interface/EDProducer.h" 00005 #include "FWCore/Framework/interface/Frameworkfwd.h" 00006 00007 class ShallowExampleProducer : public edm::EDProducer { 00008 public: 00009 explicit ShallowExampleProducer(const edm::ParameterSet&); 00010 private: 00011 void produce( edm::Event &, const edm::EventSetup & ); 00012 }; 00013 00014 #endif