CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/TopQuarkAnalysis/TopEventProducers/python/producers/TtDecaySelection_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 # module to perform a selection of specific top
00005 # deecays based on the genEvt
00006 #
00007 TtDecaySelection = cms.EDFilter("TtDecaySelection",
00008     ## input source for decay channel selection
00009     src    = cms.InputTag("genEvt"),
00010     ## invert the selection choice                                
00011     invert = cms.bool(False),
00012 
00013     ## allow given lepton in corresponding decay
00014     ## branch for a given decay channel selection;
00015     ## all leptons to 'False' corresponds to the
00016     ## full hadronic decay channel
00017     allowedTopDecays = cms.PSet(
00018       decayBranchA = cms.PSet(
00019         electron = cms.bool(False),
00020         muon     = cms.bool(False),
00021         tau      = cms.bool(False)
00022       ),
00023       decayBranchB= cms.PSet(
00024         electron = cms.bool(False),
00025         muon     = cms.bool(False),
00026         tau      = cms.bool(False)
00027       )
00028     ),
00029 
00030     ## add a restriction to the decay channel of taus
00031     ## by redefining the following ParameterSet in
00032     ## your cfg file; the following restrictions are
00033     ## available:
00034     restrictTauDecays = cms.PSet(
00035     #  leptonic   = cms.bool(False),
00036     #  oneProng   = cms.bool(False),
00037     #  threeProng = cms.bool(False)
00038     )
00039 )
00040