Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef HLTHcalNZSFilter_h
0002 #define HLTHcalNZSFilter_h
0003 // -*- C++ -*-
0004 //
0005 // Package:    HLTHcalNZSFilter
0006 // Class:      HLTHcalNZSFilter
0007 //
0008 /**\class HLTHcalNZSFilter HLTHcalNZSFilter.cc filter/HLTHcalNZSFilter/src/HLTHcalNZSFilter.cc
0009 
0010 Description: Filter to select HCAL non-ZS events
0011 
0012 Implementation:
0013 <Notes on implementation>
0014 */
0015 //
0016 // Original Author:  Bryan DAHMES
0017 //         Created:  Tue Jan 22 13:55:00 CET 2008
0018 //
0019 //
0020 
0021 // include files
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 // class declaration
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   // ----------member data ---------------------------
0052 
0053   edm::EDGetTokenT<FEDRawDataCollection> dataInputToken_;
0054   edm::InputTag dataInputTag_;
0055 };
0056 
0057 #endif