CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_13_patch3/src/RecoParticleFlow/Configuration/plugins/HepMCCopy.h

Go to the documentation of this file.
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