CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/EventFilter/EcalRawToDigi/plugins/EcalRawToRecHitByproductProducer.h

Go to the documentation of this file.
00001 #ifndef EventFilter_EcalRawToDigi_EcalRawToRecHitByproductProducer_H
00002 #define EventFilter_EcalRawToDigi_EcalRawToRecHitByproductProducer_H
00003 
00004 /* \class EcalRawToRecHitByproductProducer
00005  *
00006  * Description:
00007  * EDProducer which puts in the event all the by-products of the EcalUnpackerWorker
00008  *
00009  * \author J-R Vlimant
00010 */
00011 
00012 // system include files
00013 #include <memory>
00014 
00015 // user include files
00016 #include "FWCore/Framework/interface/Frameworkfwd.h"
00017 #include "FWCore/Framework/interface/EDProducer.h"
00018 
00019 #include "FWCore/Framework/interface/Event.h"
00020 #include "FWCore/Framework/interface/MakerMacros.h"
00021 
00022 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00023 
00024 
00025 //
00026 // class decleration
00027 //
00028 
00029 class EcalRawToRecHitByproductProducer : public edm::EDProducer {
00030 public:
00031   explicit EcalRawToRecHitByproductProducer(const edm::ParameterSet&);
00032   ~EcalRawToRecHitByproductProducer(){};
00033   
00034 private:
00035   virtual void produce(edm::Event&, const edm::EventSetup&);
00036 
00037   std::string workerName_;
00038 };
00039 
00040 #endif