ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/ShallowTools/interface/ShallowSimTracksProducer.h
Revision: 1.2
Committed: Sat Jun 13 00:35:36 2009 UTC (15 years, 10 months ago) by bbetchar
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +5 -5 lines
Log Message:
Member variables shouldn't be references (the sources can be deleted)

File Contents

# Content
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