ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/ShallowTools/interface/ShallowSimTracksProducer.h
Revision: 1.1
Committed: Thu Jun 11 16:09:15 2009 UTC (15 years, 10 months ago) by bbetchar
Content type: text/plain
Branch: MAIN
Log Message:
Added ShallowSimTracksProducer (sans cfi)

File Contents

# User Rev Content
1 bbetchar 1.1 #ifndef SHALLOW_SIMTRACKS_PRODUCER
2     #define SHALLOW_SIMTRACKS_PRODUCER
3    
4     #include "FWCore/Framework/interface/EDProducer.h"
5     #include "FWCore/Framework/interface/Frameworkfwd.h"
6    
7     class ShallowSimTracksProducer : public edm::EDProducer {
8    
9     public:
10    
11     explicit ShallowSimTracksProducer(const edm::ParameterSet&);
12    
13     private:
14    
15     const std::string& Prefix;
16     const std::string& Suffix;
17     const edm::InputTag& trackingParticles_tag;
18     const edm::ESInputTag& associator_tag;
19     const edm::InputTag& tracks_tag;
20     void produce( edm::Event &, const edm::EventSetup & );
21    
22     };
23     #endif