Go to the documentation of this file.00001 #ifndef EVENTFILTER_FEDINTERFACE_PLUGINS_EVFFEDSELECTOR
00002 #define EVENTFILTER_FEDINTERFACE_PLUGINS_EVFFEDSELECTOR
00003
00004 #include <FWCore/Framework/interface/MakerMacros.h>
00005 #include <FWCore/Framework/interface/EDProducer.h>
00006 #include <FWCore/Framework/interface/Event.h>
00007
00008 #include "FWCore/Utilities/interface/InputTag.h"
00009
00010 #include <vector>
00011
00012 namespace evf{
00013 class EvFFEDSelector : public edm::EDProducer
00014 {
00015 public:
00016
00017 explicit EvFFEDSelector( const edm::ParameterSet& );
00018 ~EvFFEDSelector(){};
00019
00020 void produce(edm::Event & e, const edm::EventSetup& c);
00021
00022 private:
00023 edm::InputTag label_;
00024 std::vector<unsigned int> fedlist_;
00025
00026 };
00027 }
00028
00029 #endif