Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # module to make the genMatch hypothesis
0005 #
0006 ttFullLepHypGenMatch = cms.EDProducer("TtFullLepHypGenMatch",
0007     electrons = cms.InputTag("selectedPatElectrons"),
0008     muons     = cms.InputTag("selectedPatMuons"),
0009     jets      = cms.InputTag("selectedPatJets"),    
0010     mets      = cms.InputTag("patMETs"),
0011     match     = cms.InputTag("ttFullLepJetPartonMatch"), 
0012     jetCorrectionLevel = cms.string("L3Absolute")   
0013 )
0014 
0015