File indexing completed on 2024-04-06 12:18:30
0001 #ifndef HLTRapGapFilter_h
0002 #define HLTRapGapFilter_h
0003
0004
0005
0006
0007
0008
0009
0010 #include "HLTrigger/HLTcore/interface/HLTFilter.h"
0011
0012 #include "DataFormats/JetReco/interface/CaloJetCollection.h"
0013
0014
0015
0016
0017
0018 class HLTRapGapFilter : public HLTFilter {
0019 public:
0020 explicit HLTRapGapFilter(const edm::ParameterSet&);
0021 ~HLTRapGapFilter() override;
0022 bool hltFilter(edm::Event&,
0023 const edm::EventSetup&,
0024 trigger::TriggerFilterObjectWithRefs& filterproduct) const override;
0025 static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
0026
0027 private:
0028 edm::EDGetTokenT<reco::CaloJetCollection> m_theJetToken;
0029 edm::InputTag inputTag_;
0030 double absEtaMin_;
0031 double absEtaMax_;
0032 double caloThresh_;
0033 };
0034
0035 #endif