00001 #ifndef AlCaGammaJetProducer_AlCaHcalProducers_h 00002 #define AlCaGammaJetProducer_AlCaHcalProducers_h 00003 00004 00005 // -*- C++ -*- 00006 00007 00008 // system include files 00009 #include <memory> 00010 #include <string> 00011 // user include files 00012 #include "FWCore/Framework/interface/Frameworkfwd.h" 00013 #include "FWCore/Framework/interface/EDProducer.h" 00014 #include "FWCore/Framework/interface/Event.h" 00015 #include "FWCore/Framework/interface/MakerMacros.h" 00016 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00017 #include "FWCore/Framework/interface/ESHandle.h" 00018 #include "FWCore/Framework/interface/EventSetup.h" 00019 00020 00021 #include "Geometry/CaloGeometry/interface/CaloGeometry.h" 00022 00023 // 00024 // class declaration 00025 // 00026 namespace edm { 00027 class ParameterSet; 00028 class Event; 00029 class EventSetup; 00030 } 00031 00032 //namespace cms 00033 //{ 00034 00035 class AlCaGammaJetProducer : public edm::EDProducer { 00036 public: 00037 explicit AlCaGammaJetProducer(const edm::ParameterSet&); 00038 ~AlCaGammaJetProducer(); 00039 virtual void beginJob(const edm::EventSetup& ) ; 00040 00041 virtual void produce(edm::Event &, const edm::EventSetup&); 00042 private: 00043 // ----------member data --------------------------- 00044 edm::InputTag hbheLabel_; 00045 edm::InputTag hoLabel_; 00046 edm::InputTag hfLabel_; 00047 std::vector<edm::InputTag> ecalLabels_; 00048 std::vector<edm::InputTag> mInputCalo; 00049 std::string correctedIslandBarrelSuperClusterCollection_; 00050 std::string correctedIslandBarrelSuperClusterProducer_; 00051 std::string correctedIslandEndcapSuperClusterCollection_; 00052 std::string correctedIslandEndcapSuperClusterProducer_; 00053 00054 bool allowMissingInputs_; 00055 std::string m_inputTrackLabel; 00056 // Calo geometry 00057 const CaloGeometry* geo; 00058 00059 }; 00060 //}// end namespace cms 00061 #endif