CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/EventFilter/HcalRawToDigi/plugins/HcalLaserEventFiltProducer2012.h

Go to the documentation of this file.
00001 #ifndef HcalLaserEventFiltProducer2012_h
00002 #define HcalLaserEventFiltProducer2012_h
00003 
00004 #include "FWCore/Framework/interface/EDProducer.h"
00005 #include "FWCore/Framework/interface/Frameworkfwd.h"
00006 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00007 #include "EventFilter/HcalRawToDigi/interface/HcalLaserEventFilter2012.h"
00008 
00009 class HcalLaserEventFiltProducer2012 : public edm::EDProducer {
00010 
00011  public:
00012   explicit HcalLaserEventFiltProducer2012(const edm::ParameterSet& iConfig);
00013   virtual ~HcalLaserEventFiltProducer2012(){
00014     delete hcalLaserEventFilter2012;
00015 } 
00016   virtual void produce(edm::Event&, const edm::EventSetup&);
00017 
00018  private:
00019   virtual void endJob() override;
00020   HcalLaserEventFilter2012 *hcalLaserEventFilter2012;
00021 };
00022 
00023 
00024 #endif