00001 #ifndef SHALLOW_TRACKS_PRODUCER 00002 #define SHALLOW_TRACKS_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 ShallowTracksProducer : public edm::EDProducer { 00009 public: 00010 explicit ShallowTracksProducer(const edm::ParameterSet&); 00011 private: 00012 edm::InputTag theTracksLabel; 00013 std::string Prefix; 00014 std::string Suffix; 00015 void produce( edm::Event &, const edm::EventSetup & ); 00016 }; 00017 #endif