Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef HLTTriggerTypeFilter_h
0002 #define HLTTriggerTypeFilter_h
0003 // -*- C++ -*-
0004 //
0005 // Package:    HLTTriggerTypeFilter
0006 // Class:      HLTTriggerTypeFilter
0007 //
0008 /**\class HLTTriggerTypeFilter HLTTriggerTypeFilter.cc 
0009 
0010 Description: <one line class summary>
0011 
0012 Implementation:
0013 <Notes on implementation>
0014 */
0015 //
0016 // Original Author:  Giovanni FRANZONI
0017 //         Created:  Tue Jan 22 13:55:00 CET 2008
0018 //
0019 //
0020 
0021 // include files
0022 #include "FWCore/Framework/interface/Event.h"
0023 #include "FWCore/Framework/interface/Frameworkfwd.h"
0024 #include "FWCore/Framework/interface/global/EDFilter.h"
0025 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0026 #include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
0027 #include "FWCore/ParameterSet/interface/ParameterSetDescription.h"
0028 
0029 //
0030 // class declaration
0031 //
0032 
0033 class HLTTriggerTypeFilter : public edm::global::EDFilter<> {
0034 public:
0035   explicit HLTTriggerTypeFilter(const edm::ParameterSet &);
0036   ~HLTTriggerTypeFilter() override;
0037 
0038   static void fillDescriptions(edm::ConfigurationDescriptions &descriptions);
0039 
0040 private:
0041   bool filter(edm::StreamID, edm::Event &, edm::EventSetup const &) const final;
0042 
0043   // ----------member data ---------------------------
0044   unsigned short selectedTriggerType_;
0045 };
0046 
0047 #endif