Revision: | 1.2 |
Committed: | Fri May 29 22:17:18 2009 UTC (15 years, 11 months ago) by kukartse |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | V00-02-02, gak011410, gak010310, ejterm2010_25nov2009, V00-02-01, V00-02-00, gak112409, CMSSW_22X_branch_base, segala101609, V00-01-15 |
Branch point for: | CMSSW_22X_branch |
Changes since 1.1: | +1 -0 lines |
Log Message: | *** empty log message *** |
# | Content |
---|---|
1 | #include <memory> |
2 | #include <string> |
3 | #include "FWCore/Framework/interface/Frameworkfwd.h" |
4 | #include "FWCore/Framework/interface/EDProducer.h" |
5 | #include "FWCore/Framework/interface/Event.h" |
6 | #include "FWCore/Framework/interface/MakerMacros.h" |
7 | #include "FWCore/ParameterSet/interface/ParameterSet.h" |
8 | |
9 | |
10 | class TtJetEnergyShifter : public edm::EDProducer { |
11 | public: |
12 | explicit TtJetEnergyShifter(const edm::ParameterSet&); |
13 | ~TtJetEnergyShifter(); |
14 | |
15 | private: |
16 | virtual void beginJob(const edm::EventSetup&) ; |
17 | virtual void produce(edm::Event&, const edm::EventSetup&); |
18 | virtual void endJob() ; |
19 | |
20 | std::string _jetSource; |
21 | double _jetEnergyScaleFactor; |
22 | }; |
23 |