ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Betchart/TopRefTuple/interface/Tuple_Event.h
Revision: 1.1
Committed: Wed Nov 7 21:53:10 2012 UTC (12 years, 5 months ago) by bbetchar
Content type: text/plain
Branch: MAIN
Log Message:
Grab ntuplizing codes from UserCode/SusyCAF

File Contents

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