00001 #ifndef SHALLOW_RECHITCLUSTERS_PRODUCER 00002 #define SHALLOW_RECHITCLUSTERS_PRODUCER 00003 00004 #include "FWCore/Framework/interface/EDProducer.h" 00005 #include "FWCore/Framework/interface/Frameworkfwd.h" 00006 #include "FWCore/Utilities/interface/InputTag.h" 00007 00008 class ShallowRechitClustersProducer : public edm::EDProducer { 00009 public: 00010 explicit ShallowRechitClustersProducer(const edm::ParameterSet&); 00011 private: 00012 std::string Suffix; 00013 std::string Prefix; 00014 edm::InputTag theClustersLabel; 00015 std::vector<edm::InputTag> inputTags; 00016 void produce( edm::Event &, const edm::EventSetup & ); 00017 }; 00018 00019 #endif