File indexing completed on 2024-04-06 12:18:41
0001 #ifndef HLTHcalNZSFilter_h
0002 #define HLTHcalNZSFilter_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022 #include "FWCore/Framework/interface/Frameworkfwd.h"
0023 #include "FWCore/Framework/interface/Event.h"
0024 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0025 #include "HLTrigger/HLTcore/interface/HLTFilter.h"
0026
0027 #include "DataFormats/FEDRawData/interface/FEDRawData.h"
0028 #include "DataFormats/FEDRawData/interface/FEDRawDataCollection.h"
0029
0030 #include <string>
0031
0032 namespace edm {
0033 class ConfigurationDescriptions;
0034 }
0035
0036
0037
0038
0039
0040 class HLTHcalNZSFilter : public HLTFilter {
0041 public:
0042 explicit HLTHcalNZSFilter(const edm::ParameterSet&);
0043 ~HLTHcalNZSFilter() override;
0044 static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
0045
0046 private:
0047 bool hltFilter(edm::Event&,
0048 const edm::EventSetup&,
0049 trigger::TriggerFilterObjectWithRefs& filterproduct) const override;
0050
0051
0052
0053 edm::EDGetTokenT<FEDRawDataCollection> dataInputToken_;
0054 edm::InputTag dataInputTag_;
0055 };
0056
0057 #endif