Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef PhysDecl_H
00009 #define PhysDecl_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/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
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_;
00045 edm::InputTag hlTriggerResults_;
00046 };
00047
00048 #endif