Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:26:12

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # module to make the kinematic fit hypothesis
0005 #
0006 ttSemiLepHypHitFit = cms.EDProducer("TtSemiLepHypHitFit",
0007     ## met input
0008     mets  = cms.InputTag("patMETs"),
0009     ## jet input
0010     jets  = cms.InputTag("selectedPatJetsAK4PF"),
0011     ## lepton input                    
0012     leps  = cms.InputTag("selectedPatMuons"),
0013     ## kin fit results
0014     match       = cms.InputTag("hitFitTtSemiLepEventHypothesis"),
0015     status      = cms.InputTag("hitFitTtSemiLepEventHypothesis","Status"),
0016     leptons     = cms.InputTag("hitFitTtSemiLepEventHypothesis","Leptons"),
0017     neutrinos   = cms.InputTag("hitFitTtSemiLepEventHypothesis","Neutrinos"),                                    
0018     partonsHadP = cms.InputTag("hitFitTtSemiLepEventHypothesis","PartonsHadP"),
0019     partonsHadQ = cms.InputTag("hitFitTtSemiLepEventHypothesis","PartonsHadQ"),
0020     partonsHadB = cms.InputTag("hitFitTtSemiLepEventHypothesis","PartonsHadB"),
0021     partonsLepB = cms.InputTag("hitFitTtSemiLepEventHypothesis","PartonsLepB"),
0022     ## number of considered jets
0023     nJetsConsidered = cms.InputTag("hitFitTtSemiLepEventHypothesis","NumberOfConsideredJets")
0024 )
0025 
0026