00001 #ifndef ElectronRecalibSuperClusterAssociator_h 00002 #define ElectronRecalibSuperClusterAssociator_h 00003 00004 // 00005 // Package: RecoEgamma/EgammaElectronProducers 00006 // Class: ElectronRecalibSuperClusterAssociator 00007 // 00008 // Description: 00009 00010 00011 #include "FWCore/Framework/interface/EDProducer.h" 00012 #include "FWCore/Framework/interface/Event.h" 00013 #include "DataFormats/Common/interface/Handle.h" 00014 #include "FWCore/Framework/interface/EventSetup.h" 00015 00016 #include "DataFormats/Common/interface/EDProduct.h" 00017 00018 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00019 00020 #include <string> 00021 00022 class PixelMatchElectronAlgo; 00023 00024 class ElectronRecalibSuperClusterAssociator : public edm::EDProducer 00025 { 00026 public: 00027 00028 explicit ElectronRecalibSuperClusterAssociator(const edm::ParameterSet& conf); 00029 00030 virtual ~ElectronRecalibSuperClusterAssociator(); 00031 00032 virtual void produce(edm::Event& e, const edm::EventSetup& c); 00033 00034 private: 00035 00036 std::string scProducer_; 00037 std::string scCollection_; 00038 00039 std::string scIslandProducer_; 00040 std::string scIslandCollection_; 00041 00042 std::string electronProducer_; 00043 std::string electronCollection_; 00044 00045 }; 00046 #endif