00001 #ifndef RecoEcal_EgammaClusterProducers_UncleanSCRecoveryProducer_h_ 00002 #define RecoEcal_EgammaClusterProducers_UncleanSCRecoveryProducer_h_ 00003 00004 #include <memory> 00005 00006 #include "FWCore/Framework/interface/Frameworkfwd.h" 00007 #include "FWCore/Framework/interface/EDProducer.h" 00008 #include "FWCore/Framework/interface/Event.h" 00009 #include "FWCore/Framework/interface/EventSetup.h" 00010 00011 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00012 00013 #include "FWCore/Utilities/interface/InputTag.h" 00014 00015 // $Id: UncleanSCRecoveryProducer.h,v 1.5 2011/07/18 18:05:40 argiro Exp $ 00016 00017 class UncleanSCRecoveryProducer : public edm::EDProducer 00018 { 00019 00020 public: 00021 00022 UncleanSCRecoveryProducer(const edm::ParameterSet& ps); 00023 00024 ~UncleanSCRecoveryProducer(); 00025 00026 virtual void produce(edm::Event&, const edm::EventSetup&); 00027 00028 private: 00029 // the clean collection 00030 edm::InputTag cleanBcCollection_; 00031 edm::InputTag cleanScCollection_; 00032 // the uncleaned collection 00033 edm::InputTag uncleanBcCollection_; 00034 edm::InputTag uncleanScCollection_; 00035 // the names of the products to be produced: 00036 std::string bcCollection_; 00037 std::string scCollection_; 00038 00039 00040 }; 00041 00042 00043 #endif 00044 00045