CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/DPGAnalysis/Skims/interface/HLTInspect.h

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 //
00003 // Package:   PhysDecl
00004 // Class:     PhysDecl
00005 //
00006 // Original Author:  Luca Malgeri
00007 
00008 #ifndef HLTINSPECT_H
00009 #define HLTINSPECT_H
00010 
00011 // system include files
00012 #include <memory>
00013 #include <vector>
00014 #include <map>
00015 #include <set>
00016 
00017 // user include files
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 // class declaration
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_;  // name of each HLT algorithm
00041   edm::InputTag hlTriggerResults_;
00042   bool init_;
00043 };
00044 
00045 #endif