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 ttFullHadHypGenMatch = cms.EDProducer("TtFullHadHypGenMatch",
0007     ## jet input
0008     jets  = cms.InputTag("selectedPatJets"),
0009     ## gen match hypothesis input
0010     match = cms.InputTag("ttFullHadJetPartonMatch"),
0011     ## specify jet correction level as, Uncorrected, L1Offset, L2Relative, L3Absolute, L4Emf,
0012     ## L5Hadron, L6UE, L7Parton, a flavor specification will be added automatically, when chosen                                      
0013     jetCorrectionLevel = cms.string("L3Absolute")   
0014 )
0015 
0016