CMS 3D CMS Logo

HLTInspect.h
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: PhysDecl
4 // Class: PhysDecl
5 //
6 // Original Author: Luca Malgeri
7 
8 #ifndef HLTINSPECT_H
9 #define HLTINSPECT_H
10 
11 // system include files
12 #include <memory>
13 #include <vector>
14 #include <map>
15 #include <set>
16 
17 // user include files
26 
27 //
28 // class declaration
29 //
30 
31 class HLTInspect : public edm::one::EDAnalyzer<> {
32 public:
33  explicit HLTInspect(const edm::ParameterSet&);
34  ~HLTInspect() override;
35 
36 private:
37  void analyze(const edm::Event& e, const edm::EventSetup& c) override;
38  std::vector<std::string> hlNames_; // name of each HLT algorithm
40  bool init_;
41 };
42 
43 #endif
~HLTInspect() override
Definition: HLTInspect.cc:38
std::vector< std::string > hlNames_
Definition: HLTInspect.h:38
void analyze(const edm::Event &e, const edm::EventSetup &c) override
Definition: HLTInspect.cc:39
HLTInspect(const edm::ParameterSet &)
Definition: HLTInspect.cc:33
edm::InputTag hlTriggerResults_
Definition: HLTInspect.h:39
bool init_
Definition: HLTInspect.h:40