ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Betchart/TopRefTuple/interface/Tuple_Muon.h
Revision: 1.2
Committed: Fri Nov 9 18:03:13 2012 UTC (12 years, 5 months ago) by bbetchar
Content type: text/plain
Branch: MAIN
Changes since 1.1: +6 -539 lines
Log Message:
Tuple_Muon reforms

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.2 const edm::InputTag muonTag;
19     const std::string prefix;
20 bbetchar 1.1 };
21    
22    
23     #endif