File indexing completed on 2024-04-06 12:18:30
0001 #ifndef HLTAcoFilter_h
0002 #define HLTAcoFilter_h
0003
0004
0005
0006
0007
0008
0009
0010 #include "HLTrigger/HLTcore/interface/HLTFilter.h"
0011 #include <string>
0012 #include <cstring>
0013 #include <cmath>
0014
0015 #include "DataFormats/JetReco/interface/CaloJetCollection.h"
0016 #include "DataFormats/METReco/interface/CaloMET.h"
0017
0018 namespace edm {
0019 class ConfigurationDescriptions;
0020 }
0021
0022
0023
0024
0025
0026 class HLTAcoFilter : public HLTFilter {
0027 public:
0028 explicit HLTAcoFilter(const edm::ParameterSet&);
0029 ~HLTAcoFilter() override;
0030 static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
0031 bool hltFilter(edm::Event&,
0032 const edm::EventSetup&,
0033 trigger::TriggerFilterObjectWithRefs& filterproduct) const override;
0034
0035 private:
0036 edm::EDGetTokenT<reco::CaloJetCollection> m_theJetToken;
0037 edm::EDGetTokenT<trigger::TriggerFilterObjectWithRefs> m_theMETToken;
0038
0039 edm::InputTag inputJetTag_;
0040 edm::InputTag inputMETTag_;
0041 double minEtjet1_;
0042 double minEtjet2_;
0043 double minDPhi_;
0044 double maxDPhi_;
0045 std::string AcoString_;
0046 };
0047
0048 #endif