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 kinSolution hypothesis with all necessary 
0005 # ingredients
0006 #
0007 
0008 ## std sequence to perform kinematic fit
0009 import TopQuarkAnalysis.TopKinFitter.TtFullLepKinSolutionProducer_cfi
0010 kinSolutionTtFullLepEventHypothesis = TopQuarkAnalysis.TopKinFitter.TtFullLepKinSolutionProducer_cfi.kinSolutionTtFullLepEvent.clone()
0011 kinSolutionTtFullLepEventHypothesis.mumuChannel=True
0012 
0013 ## configure kinSolution hypothesis
0014 from TopQuarkAnalysis.TopJetCombination.TtFullLepHypKinSolution_cfi import *
0015 
0016 ## make hypothesis
0017 makeHypothesis_kinSolutionTask = cms.Task(
0018     kinSolutionTtFullLepEventHypothesis,
0019     ttFullLepHypKinSolution
0020 )
0021 makeHypothesis_kinSolution = cms.Sequence(makeHypothesis_kinSolutionTask)