Revision: | 1.1 |
Committed: | Wed Nov 7 21:53:11 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 |
Log Message: | Grab ntuplizing codes from UserCode/SusyCAF |
# | User | Rev | Content |
---|---|---|---|
1 | bbetchar | 1.1 | #ifndef TUPLE__PILEUPSUMMARY |
2 | #define TUPLE__PILEUPSUMMARY | ||
3 | |||
4 | #include "FWCore/Framework/interface/EDProducer.h" | ||
5 | #include "FWCore/Framework/interface/Frameworkfwd.h" | ||
6 | #include "FWCore/Utilities/interface/InputTag.h" | ||
7 | |||
8 | class Tuple_PileupSummary : public edm::EDProducer { | ||
9 | public: | ||
10 | explicit Tuple_PileupSummary(const edm::ParameterSet&); | ||
11 | private: | ||
12 | void produce( edm::Event &, const edm::EventSetup & ); | ||
13 | const edm::InputTag inputTag; | ||
14 | const std::string Prefix,Suffix; | ||
15 | }; | ||
16 | |||
17 | #endif |