CMS 3D CMS Logo

CMSSW_4_4_3_patch1/src/DPGAnalysis/Skims/interface/PhysDecl.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 PhysDecl_H
00009 #define PhysDecl_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/EDFilter.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 PhysDecl : public edm::EDFilter {
00034 public:
00035   explicit PhysDecl( const edm::ParameterSet & );
00036   ~PhysDecl();
00037   
00038 private:
00039   virtual bool filter ( edm::Event &, const edm::EventSetup & );
00040   
00041   bool applyfilter;
00042   bool debugOn;
00043   bool init_;
00044   std::vector<std::string>  hlNames_;  // name of each HLT algorithm
00045   edm::InputTag hlTriggerResults_;
00046 };
00047 
00048 #endif