00001 #ifndef EgammaIsolationProducers_EgammaPhotonTkIsolationProducer_h 00002 #define EgammaIsolationProducers_EgammaPhotonTkIsolationProducer_h 00003 00004 //***************************************************************************** 00005 // File: EgammaPhotonTkIsolationProducer.h 00006 // ---------------------------------------------------------------------------- 00007 // OrigAuth: Matthias Mozer 00008 // Institute: IIHE-VUB 00009 //============================================================================= 00010 //***************************************************************************** 00011 00012 #include "FWCore/Framework/interface/Frameworkfwd.h" 00013 #include "FWCore/Framework/interface/EDProducer.h" 00014 00015 #include "FWCore/Framework/interface/Event.h" 00016 #include "FWCore/Framework/interface/MakerMacros.h" 00017 00018 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00019 00020 class EgammaPhotonTkIsolationProducer : public edm::EDProducer { 00021 public: 00022 explicit EgammaPhotonTkIsolationProducer(const edm::ParameterSet&); 00023 ~EgammaPhotonTkIsolationProducer(); 00024 00025 virtual void produce(edm::Event&, const edm::EventSetup&); 00026 00027 private: 00028 edm::InputTag photonProducer_; 00029 edm::InputTag trackProducer_; 00030 edm::InputTag beamspotProducer_; 00031 00032 double ptMin_; 00033 double intRadiusBarrel_; 00034 double intRadiusEndcap_; 00035 double stripBarrel_; 00036 double stripEndcap_; 00037 double extRadius_; 00038 double maxVtxDist_; 00039 double drb_; 00040 00041 edm::ParameterSet conf_; 00042 00043 }; 00044 00045 00046 #endif