ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/LJMet/MultivariateAnalysis/interface/TtJetEnergyShifter.h
Revision: 1.3
Committed: Wed Mar 31 15:08:24 2010 UTC (15 years, 1 month ago) by msegala
Content type: text/plain
Branch: MAIN
CVS Tags: V00-03-01, ZMorph_BASE_20100408, gak040610_morphing, HEAD
Branch point for: ZMorph-V00-03-01
Changes since 1.2: +0 -1 lines
Error occurred while calculating annotation data.
Log Message:
3_5_6 edition

File Contents

# 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 produce(edm::Event&, const edm::EventSetup&);
17 virtual void endJob() ;
18
19 std::string _jetSource;
20 double _jetEnergyScaleFactor;
21 };
22