File indexing completed on 2024-04-06 12:31:13
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006 ttSemiLepEvent = cms.EDProducer("TtSemiLepEvtBuilder",
0007
0008 decayChannel1 = cms.int32(2),
0009
0010
0011
0012
0013 decayChannel2 = cms.int32(0),
0014
0015
0016
0017
0018
0019 verbosity = cms.int32(0),
0020
0021
0022
0023 genEvent = cms.InputTag("genEvt"),
0024
0025
0026
0027
0028
0029 hypotheses = cms.VInputTag("ttSemiLepHypGenMatch"),
0030
0031
0032
0033
0034
0035
0036
0037
0038 kinFit = cms.PSet(
0039 chi2 = cms.InputTag("kinFitTtSemiLepEventHypothesis","Chi2"),
0040 prob = cms.InputTag("kinFitTtSemiLepEventHypothesis","Prob"),
0041 ),
0042
0043
0044 hitFit = cms.PSet(
0045 chi2 = cms.InputTag("hitFitTtSemiLepEventHypothesis","Chi2"),
0046 prob = cms.InputTag("hitFitTtSemiLepEventHypothesis","Prob"),
0047 mt = cms.InputTag("hitFitTtSemiLepEventHypothesis","MT"),
0048 sigmt = cms.InputTag("hitFitTtSemiLepEventHypothesis","SigMT"),
0049 ),
0050
0051
0052 genMatch = cms.PSet(
0053 sumPt = cms.InputTag("ttSemiLepJetPartonMatch","SumPt"),
0054 sumDR = cms.InputTag("ttSemiLepJetPartonMatch","SumDR"),
0055 ),
0056
0057
0058 mvaDisc = cms.PSet(
0059 meth = cms.InputTag("findTtSemiLepJetCombMVA","Method"),
0060 disc = cms.InputTag("findTtSemiLepJetCombMVA","Discriminators")
0061 )
0062 )