00001 #ifndef HLTJetCollForElePlusJets_h 00002 #define HLTJetCollForElePlusJets_h 00003 00022 // user include files 00023 #include "FWCore/Framework/interface/Frameworkfwd.h" 00024 #include "FWCore/Framework/interface/EDProducer.h" 00025 00026 #include "FWCore/Framework/interface/Event.h" 00027 00028 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00029 00030 00031 namespace edm { 00032 class ConfigurationDescriptions; 00033 } 00034 00035 // 00036 // class declaration 00037 // 00038 00039 template <typename T> 00040 class HLTJetCollForElePlusJets: public edm::EDProducer { 00041 public: 00042 explicit HLTJetCollForElePlusJets(const edm::ParameterSet&); 00043 ~HLTJetCollForElePlusJets(); 00044 static void fillDescriptions(edm::ConfigurationDescriptions & descriptions); 00045 00046 private: 00047 virtual void produce(edm::Event&, const edm::EventSetup&); 00048 00049 edm::InputTag hltElectronTag; 00050 edm::InputTag sourceJetTag; 00051 00052 double minJetPt_; // jet pt threshold in GeV 00053 double maxAbsJetEta_; // jet |eta| range 00054 unsigned int minNJets_; // number of required jets passing cuts after cleaning 00055 00056 double minDeltaR_; //min dR for jets and electrons not to match 00057 00058 double minSoftJetPt_; // jet pt threshold for the soft jet in the VBF pair 00059 double minDeltaEta_; // pseudorapidity separation for the VBF pair 00060 00061 // ----------member data --------------------------- 00062 }; 00063 #endif //HLTJetCollForElePlusJets_h