Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007 TtDecaySelection = cms.EDFilter("TtDecaySelection",
00008
00009 src = cms.InputTag("genEvt"),
00010
00011 invert = cms.bool(False),
00012
00013
00014
00015
00016
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
00031
00032
00033
00034 restrictTauDecays = cms.PSet(
00035
00036
00037
00038 )
00039 )
00040