ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/LJMet/MultivariateAnalysis/interface/TtJetWeightProducer.h
Revision: 1.1
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
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 TtJetWeightProducer : public edm::EDProducer {
11 public:
12 explicit TtJetWeightProducer(const edm::ParameterSet&);
13 ~TtJetWeightProducer();
14
15 private:
16 virtual void beginJob() ;
17 virtual void produce(edm::Event&, const edm::EventSetup&);
18 virtual void endJob() ;
19
20 // ----------member data ---------------------------
21
22 std::string _jetSource;
23 double _jet1_weight;
24 double _jet2_weight;
25 double _jet3_weight;
26 double _jet4_weight;
27 double weight;
28
29 };
30