CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 //
29 // class declaration
30 //
31 
32 
33 class HLTInspect : public edm::EDAnalyzer {
34 public:
35  explicit HLTInspect( const edm::ParameterSet & );
36  ~HLTInspect();
37 
38 private:
39  virtual void analyze(const edm::Event& e, const edm::EventSetup& c) override;
40  std::vector<std::string> hlNames_; // name of each HLT algorithm
42  bool init_;
43 };
44 
45 #endif
std::vector< std::string > hlNames_
Definition: HLTInspect.h:40
virtual void analyze(const edm::Event &e, const edm::EventSetup &c) override
Definition: HLTInspect.cc:42
HLTInspect(const edm::ParameterSet &)
Definition: HLTInspect.cc:33
edm::InputTag hlTriggerResults_
Definition: HLTInspect.h:41
bool init_
Definition: HLTInspect.h:42