00001 import FWCore.ParameterSet.Config as cms 00002 00003 # 00004 # module to make the genMatch hypothesis 00005 # 00006 TtFullHadHypGenMatch = cms.EDProducer("TtFullHadHypGenMatch", 00007 ## jet input 00008 jets = cms.InputTag("selectedPatJets"), 00009 ## gen match hypothesis input 00010 match = cms.InputTag("ttFullHadJetPartonMatch"), 00011 ## specify jet correction level as, Uncorrected, L1Offset, L2Relative, L3Absolute, L4Emf, 00012 ## L5Hadron, L6UE, L7Parton, a flavor specification will be added automatically, when chosen 00013 jetCorrectionLevel = cms.string("L3Absolute") 00014 ) 00015 00016