Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef HLTINSPECT_H
00009 #define HLTINSPECT_H
00010
00011
00012 #include <memory>
00013 #include <vector>
00014 #include <map>
00015 #include <set>
00016
00017
00018 #include "FWCore/Utilities/interface/InputTag.h"
00019 #include "FWCore/Framework/interface/Frameworkfwd.h"
00020 #include "FWCore/Framework/interface/EDAnalyzer.h"
00021 #include "FWCore/Framework/interface/Event.h"
00022 #include "FWCore/Framework/interface/MakerMacros.h"
00023 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00024 #include "FWCore/Framework/interface/ESHandle.h"
00025 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00026
00027
00028
00029
00030
00031
00032
00033 class HLTInspect : public edm::EDAnalyzer {
00034 public:
00035 explicit HLTInspect( const edm::ParameterSet & );
00036 ~HLTInspect();
00037
00038 private:
00039 virtual void analyze(const edm::Event& e, const edm::EventSetup& c) override;
00040 std::vector<std::string> hlNames_;
00041 edm::InputTag hlTriggerResults_;
00042 bool init_;
00043 };
00044
00045 #endif