Revision: | 1.2 |
Committed: | Fri Nov 16 18:52:31 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.1: | +2 -0 lines |
Log Message: | add number of good vertices |
# | 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 | bbetchar | 1.2 | #include "FWCore/Utilities/interface/InputTag.h" |
7 | bbetchar | 1.1 | |
8 | class Tuple_Event : public edm::EDProducer { | ||
9 | public: | ||
10 | explicit Tuple_Event(const edm::ParameterSet&); | ||
11 | private: | ||
12 | void produce( edm::Event &, const edm::EventSetup & ); | ||
13 | bbetchar | 1.2 | const edm::InputTag vertexTag; |
14 | bbetchar | 1.1 | }; |
15 | |||
16 | #endif |