Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:18:30

0001 #ifndef HLTRapGapFilter_h
0002 #define HLTRapGapFilter_h
0003 
0004 /** \class HLTRapGapFilter
0005  *
0006  *  \author Monica Vazquez Acosta (CERN)
0007  *
0008  */
0009 
0010 #include "HLTrigger/HLTcore/interface/HLTFilter.h"
0011 
0012 #include "DataFormats/JetReco/interface/CaloJetCollection.h"
0013 
0014 //
0015 // class decleration
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_;  // input tag identifying jets
0030   double absEtaMin_;
0031   double absEtaMax_;
0032   double caloThresh_;
0033 };
0034 
0035 #endif  //HLTRapGapFilter_h