ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/ShallowTools/interface/ShallowTracksProducer.h
Revision: 1.1
Committed: Sat Jun 6 14:23:09 2009 UTC (15 years, 10 months ago) by bbetchar
Content type: text/plain
Branch: MAIN
CVS Tags: V03-00-02, V03-00-01, V03-00-00, HEAD
Log Message:
Move directories around

File Contents

# User Rev Content
1 bbetchar 1.1 #ifndef SHALLOW_TRACKS_PRODUCER
2     #define SHALLOW_TRACKS_PRODUCER
3    
4     #include "FWCore/Framework/interface/EDProducer.h"
5     #include "FWCore/Framework/interface/Frameworkfwd.h"
6    
7     class ShallowTracksProducer : public edm::EDProducer {
8     public:
9     explicit ShallowTracksProducer(const edm::ParameterSet&);
10     private:
11     edm::InputTag theTracksLabel;
12     std::string Prefix;
13     std::string Suffix;
14     void produce( edm::Event &, const edm::EventSetup & );
15     };
16     #endif