Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:06:45

0001 // -*- C++ -*-
0002 //
0003 // Package:   PhysDecl
0004 // Class:     PhysDecl
0005 //
0006 // Original Author:  Luca Malgeri
0007 
0008 #ifndef HLTINSPECT_H
0009 #define HLTINSPECT_H
0010 
0011 // system include files
0012 #include <memory>
0013 #include <vector>
0014 #include <map>
0015 #include <set>
0016 
0017 // user include files
0018 #include "FWCore/Utilities/interface/InputTag.h"
0019 #include "FWCore/Framework/interface/Frameworkfwd.h"
0020 #include "FWCore/Framework/interface/one/EDAnalyzer.h"
0021 #include "FWCore/Framework/interface/Event.h"
0022 #include "FWCore/Framework/interface/MakerMacros.h"
0023 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0024 #include "FWCore/Framework/interface/ESHandle.h"
0025 #include "FWCore/MessageLogger/interface/MessageLogger.h"
0026 
0027 //
0028 // class declaration
0029 //
0030 
0031 class HLTInspect : public edm::one::EDAnalyzer<> {
0032 public:
0033   explicit HLTInspect(const edm::ParameterSet&);
0034   ~HLTInspect() override;
0035 
0036 private:
0037   void analyze(const edm::Event& e, const edm::EventSetup& c) override;
0038   std::vector<std::string> hlNames_;  // name of each HLT algorithm
0039   edm::InputTag hlTriggerResults_;
0040   bool init_;
0041 };
0042 
0043 #endif