00001 #ifndef HLTJetL1MatchProducer_h 00002 #define HLTJetL1MatchProducer_h 00003 00004 #include <string> 00005 #include "FWCore/Framework/interface/EDProducer.h" 00006 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00007 #include "FWCore/Framework/interface/Event.h" 00008 #include "FWCore/Framework/interface/EventSetup.h" 00009 00010 #include<typeinfo> 00011 00012 template<typename T> 00013 class HLTJetL1MatchProducer : public edm::EDProducer { 00014 public: 00015 explicit HLTJetL1MatchProducer(const edm::ParameterSet&); 00016 ~HLTJetL1MatchProducer(); 00017 static void fillDescriptions(edm::ConfigurationDescriptions & descriptions); 00018 virtual void beginJob() ; 00019 virtual void produce(edm::Event &, const edm::EventSetup&); 00020 private: 00021 edm::InputTag jetsInput_; 00022 edm::InputTag L1TauJets_; 00023 edm::InputTag L1CenJets_; 00024 edm::InputTag L1ForJets_; 00025 // std::string jetType_; 00026 double DeltaR_; // DeltaR(HLT,L1) 00027 }; 00028 00029 #endif