File indexing completed on 2023-03-17 11:26:12
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006 ttSemiLepHypHitFit = cms.EDProducer("TtSemiLepHypHitFit",
0007
0008 mets = cms.InputTag("patMETs"),
0009
0010 jets = cms.InputTag("selectedPatJetsAK4PF"),
0011
0012 leps = cms.InputTag("selectedPatMuons"),
0013
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
0023 nJetsConsidered = cms.InputTag("hitFitTtSemiLepEventHypothesis","NumberOfConsideredJets")
0024 )
0025
0026