00001 #ifndef HLTJetCollectionsForElePlusJets_h 00002 #define HLTJetCollectionsForElePlusJets_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 class HLTJetCollectionsForElePlusJets: public edm::EDProducer { 00040 public: 00041 explicit HLTJetCollectionsForElePlusJets(const edm::ParameterSet&); 00042 ~HLTJetCollectionsForElePlusJets(); 00043 static void fillDescriptions(edm::ConfigurationDescriptions & descriptions); 00044 00045 private: 00046 virtual void beginJob(); 00047 virtual void produce(edm::Event&, const edm::EventSetup&); 00048 virtual void endJob(); 00049 00050 edm::InputTag hltElectronTag; 00051 edm::InputTag sourceJetTag; 00052 00053 // double minJetPt_; // jet pt threshold in GeV 00054 // double maxAbsJetEta_; // jet |eta| range 00055 // unsigned int minNJets_; // number of required jets passing cuts after cleaning 00056 00057 double minDeltaR_; //min dR for jets and electrons not to match 00058 00059 // double minSoftJetPt_; // jet pt threshold for the soft jet in the VBF pair 00060 // double minDeltaEta_; // pseudorapidity separation for the VBF pair 00061 00062 // ----------member data --------------------------- 00063 }; 00064 #endif //HLTJetCollectionsForElePlusJets_h