Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:13

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # module to fill the full-leptonic ttbar event structure
0005 #
0006 ttFullLepEvent = cms.EDProducer("TtFullLepEvtBuilder",
0007     ## choose leptonic decay modes
0008     decayChannel1 = cms.int32(2),  # 0: none
0009                                   # 1: electron
0010                                   # 2: muon
0011                                   # 3: tau
0012     decayChannel2 = cms.int32(2),  # 0: none
0013                                   # 1: electron
0014                                   # 2: muon
0015                                   # 3: tau
0016 
0017 
0018     ## set verbosity level
0019     verbosity = cms.int32(0),  # 0: no additional printout
0020                                # 1: print a summary for each event
0021 
0022     ## add genEvt (if available)
0023     genEvent = cms.InputTag("genEvt"),
0024 
0025     ## maximum number of jets taken into account per event for each hypothesis
0026     ## (this parameter is used in the ttFullLepEvtBuilder_cff to synchronize
0027     ## the individual maxNJets parameters)
0028     maxNJets = cms.int32(4),  # has to be >= 2
0029                               # can be set to -1 to take all jets
0030 
0031     ## labels for event hypotheses
0032     hypotheses = cms.VInputTag("ttFullLepHypGenMatch",
0033                                "ttFullLepHypKinSolution"),
0034                                 
0035     ## add extra information on kinSolution
0036     kinSolution = cms.PSet(
0037         solWeight   = cms.InputTag("kinSolutionTtFullLepEventHypothesis","solWeight"),
0038     wrongCharge = cms.InputTag("kinSolutionTtFullLepEventHypothesis","isWrongCharge"),
0039     ),
0040 
0041     ## add extra information on genMatch
0042     genMatch = cms.PSet(
0043         sumPt = cms.InputTag("ttFullLepJetPartonMatch","SumPt"),
0044         sumDR = cms.InputTag("ttFullLepJetPartonMatch","SumDR"),
0045     ),
0046 )