CMS 3D CMS Logo

TtSemiLepHypHitFit_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # module to make the kinematic fit hypothesis
5 #
6 ttSemiLepHypHitFit = cms.EDProducer("TtSemiLepHypHitFit",
7 
8  mets = cms.InputTag("patMETs"),
9 
10  jets = cms.InputTag("selectedPatJetsAK4PF"),
11 
12  leps = cms.InputTag("selectedPatMuons"),
13 
14  match = cms.InputTag("hitFitTtSemiLepEventHypothesis"),
15  status = cms.InputTag("hitFitTtSemiLepEventHypothesis","Status"),
16  leptons = cms.InputTag("hitFitTtSemiLepEventHypothesis","Leptons"),
17  neutrinos = cms.InputTag("hitFitTtSemiLepEventHypothesis","Neutrinos"),
18  partonsHadP = cms.InputTag("hitFitTtSemiLepEventHypothesis","PartonsHadP"),
19  partonsHadQ = cms.InputTag("hitFitTtSemiLepEventHypothesis","PartonsHadQ"),
20  partonsHadB = cms.InputTag("hitFitTtSemiLepEventHypothesis","PartonsHadB"),
21  partonsLepB = cms.InputTag("hitFitTtSemiLepEventHypothesis","PartonsLepB"),
22 
23  nJetsConsidered = cms.InputTag("hitFitTtSemiLepEventHypothesis","NumberOfConsideredJets")
24 )
25 
26