File indexing completed on 2023-03-17 11:09:31
0001 #ifndef HLTJetVBFFilter_h
0002 #define HLTJetVBFFilter_h
0003
0004
0005
0006
0007
0008
0009
0010 #include "DataFormats/HLTReco/interface/TriggerTypeDefs.h"
0011 #include "HLTrigger/HLTcore/interface/HLTFilter.h"
0012 #include "DataFormats/HLTReco/interface/TriggerFilterObjectWithRefs.h"
0013
0014 namespace edm {
0015 class ConfigurationDescriptions;
0016 }
0017
0018
0019
0020
0021
0022 template <typename T>
0023 class HLTJetVBFFilter : public HLTFilter {
0024 public:
0025 explicit HLTJetVBFFilter(const edm::ParameterSet&);
0026 ~HLTJetVBFFilter() override;
0027 static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
0028 bool hltFilter(edm::Event&,
0029 const edm::EventSetup&,
0030 trigger::TriggerFilterObjectWithRefs& filterproduct) const override;
0031
0032 private:
0033 edm::InputTag inputTag_;
0034 edm::EDGetTokenT<std::vector<T>> m_theObjectToken;
0035 double minPtLow_;
0036 double minPtHigh_;
0037 bool etaOpposite_;
0038 double minDeltaEta_;
0039 double minInvMass_;
0040 double maxEta_;
0041 bool leadingJetOnly_;
0042 int triggerType_;
0043 };
0044
0045 #endif