CMS 3D CMS Logo

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     ## allow different types of tau decay channels
00031     allowedTauDecays = cms.PSet(
00032       leptonic   = cms.bool(False),
00033       oneProng   = cms.bool(False),
00034       threeProng = cms.bool(False)
00035     )
00036 )
00037 
00038 

Generated on Tue Jun 9 17:48:06 2009 for CMSSW by  doxygen 1.5.4