00001 #ifndef RecoParticleFlow_Configuration_HepMCCopy_H 00002 #define RecoParticleFlow_Configuration_HepMCCopy_H 00003 00004 #include "FWCore/Framework/interface/EDProducer.h" 00005 00006 class ParameterSet; 00007 class Event; 00008 class EventSetup; 00009 00010 class HepMCCopy : public edm::EDProducer 00011 { 00012 00013 public: 00014 00015 explicit HepMCCopy(edm::ParameterSet const & p); 00016 virtual ~HepMCCopy() {} 00017 virtual void beginRun(edm::Run &, edm::EventSetup const&) {} 00018 virtual void endRun() {} 00019 virtual void produce(edm::Event & e, const edm::EventSetup & c); 00020 00021 private: 00022 00023 }; 00024 00025 #endif