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 00017 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00018 00019 #include <string> 00020 00021 class PixelMatchElectronAlgo; 00022 00023 class ElectronRecalibSuperClusterAssociator : public edm::EDProducer 00024 { 00025 public: 00026 00027 explicit ElectronRecalibSuperClusterAssociator(const edm::ParameterSet& conf); 00028 00029 virtual ~ElectronRecalibSuperClusterAssociator(); 00030 00031 virtual void produce(edm::Event& e, const edm::EventSetup& c); 00032 00033 private: 00034 00035 std::string scProducer_; 00036 std::string scCollection_; 00037 00038 std::string scIslandProducer_; 00039 std::string scIslandCollection_; 00040 00041 std::string electronProducer_; 00042 std::string electronCollection_; 00043 00044 }; 00045 #endif