File indexing completed on 2024-04-06 12:06:45
0001 #ifndef Muon_HLTMuonPtFilter_h
0002 #define Muon_HLTMuonPtFilter_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #include "HLTrigger/HLTcore/interface/HLTFilter.h"
0016
0017
0018 class Propagator;
0019
0020
0021 #include <string>
0022
0023
0024
0025
0026
0027 class HLTMuonPtFilter : public HLTFilter {
0028 public:
0029
0030 HLTMuonPtFilter(const edm::ParameterSet&);
0031
0032
0033 ~HLTMuonPtFilter() override;
0034
0035
0036 bool hltFilter(edm::Event&,
0037 const edm::EventSetup&,
0038 trigger::TriggerFilterObjectWithRefs& filterproduct) const override;
0039
0040 private:
0041 std::string theSTAMuonLabel;
0042 double theMinPt;
0043 };
0044 #endif