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 |
Error occurred while calculating annotation data. | |
Log Message: | vertices |
# | Content |
---|---|
1 | #ifndef TUPLE_MUON |
2 | #define TUPLE_MUON |
3 | |
4 | #include "FWCore/Framework/interface/EDProducer.h" |
5 | #include "FWCore/Framework/interface/Frameworkfwd.h" |
6 | #include "FWCore/Utilities/interface/InputTag.h" |
7 | #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 | public: |
13 | explicit Tuple_Muon(const edm::ParameterSet&); |
14 | |
15 | private: |
16 | void produce(edm::Event &, const edm::EventSetup & ); |
17 | |
18 | const edm::InputTag muonTag,vertexTag; |
19 | const std::string prefix; |
20 | }; |
21 | |
22 | |
23 | #endif |