File indexing completed on 2024-04-06 12:31:13
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006 ttFullLepEvent = cms.EDProducer("TtFullLepEvtBuilder",
0007
0008 decayChannel1 = cms.int32(2),
0009
0010
0011
0012 decayChannel2 = cms.int32(2),
0013
0014
0015
0016
0017
0018
0019 verbosity = cms.int32(0),
0020
0021
0022
0023 genEvent = cms.InputTag("genEvt"),
0024
0025
0026
0027
0028 maxNJets = cms.int32(4),
0029
0030
0031
0032 hypotheses = cms.VInputTag("ttFullLepHypGenMatch",
0033 "ttFullLepHypKinSolution"),
0034
0035
0036 kinSolution = cms.PSet(
0037 solWeight = cms.InputTag("kinSolutionTtFullLepEventHypothesis","solWeight"),
0038 wrongCharge = cms.InputTag("kinSolutionTtFullLepEventHypothesis","isWrongCharge"),
0039 ),
0040
0041
0042 genMatch = cms.PSet(
0043 sumPt = cms.InputTag("ttFullLepJetPartonMatch","SumPt"),
0044 sumDR = cms.InputTag("ttFullLepJetPartonMatch","SumDR"),
0045 ),
0046 )