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 # produce genmatch hypothesis with all necessary 
0005 # ingredients
0006 #
0007 
0008 ## std sequence to produce ttSemiJetPartonMatch
0009 from TopQuarkAnalysis.TopTools.TtSemiLepJetPartonMatch_cfi import *
0010 
0011 ## configure genMatch hypothesis
0012 from TopQuarkAnalysis.TopJetCombination.TtSemiLepHypGenMatch_cfi import *
0013 
0014 ## make hypothesis
0015 makeHypothesis_genMatchTask = cms.Task(
0016     ttSemiLepJetPartonMatch,
0017     ttSemiLepHypGenMatch
0018 )
0019 makeHypothesis_genMatch = cms.Sequence(makeHypothesis_genMatchTask)