ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Betchart/TopRefTuple/interface/Tuple_Muon.h
Revision: 1.3
Committed: Fri Nov 9 20:34:32 2012 UTC (12 years, 5 months ago) by bbetchar
Content type: text/plain
Branch: MAIN
CVS Tags: V00-03-02, V00-03-01, V00-02-02, V00-02-01, V00-02-00, V00-01-05, V00-01-04, V00-01-03, V00-01-02, V00-01-01, V00-01-00, HEAD
Changes since 1.2: +1 -1 lines
Log Message:
vertices

File Contents

# User Rev Content
1 bbetchar 1.1 #ifndef TUPLE_MUON
2     #define TUPLE_MUON
3    
4     #include "FWCore/Framework/interface/EDProducer.h"
5     #include "FWCore/Framework/interface/Frameworkfwd.h"
6 bbetchar 1.2 #include "FWCore/Utilities/interface/InputTag.h"
7 bbetchar 1.1 #include "FWCore/Framework/interface/Event.h"
8     #include "FWCore/Framework/interface/ESHandle.h"
9     #include "FWCore/ParameterSet/interface/ParameterSet.h"
10    
11     class Tuple_Muon : public edm::EDProducer {
12 bbetchar 1.2 public:
13 bbetchar 1.1 explicit Tuple_Muon(const edm::ParameterSet&);
14 bbetchar 1.2
15     private:
16 bbetchar 1.1 void produce(edm::Event &, const edm::EventSetup & );
17    
18 bbetchar 1.3 const edm::InputTag muonTag,vertexTag;
19 bbetchar 1.2 const std::string prefix;
20 bbetchar 1.1 };
21    
22    
23     #endif