CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/CalibTracker/SiStripCommon/interface/ShallowTrackClustersProducer.h

Go to the documentation of this file.
00001 #ifndef SHALLOW_TRACKCLUSTERS_PRODUCER
00002 #define SHALLOW_TRACKCLUSTERS_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 ShallowTrackClustersProducer : public edm::EDProducer {
00009 public:
00010   explicit ShallowTrackClustersProducer(const edm::ParameterSet&);
00011 private:
00012   edm::InputTag theTracksLabel;
00013   edm::InputTag theClustersLabel;
00014   std::string Suffix;
00015   std::string Prefix;
00016 
00017   void produce( edm::Event &, const edm::EventSetup & );
00018 };
00019 #endif