Variables | |
tuple | RecoTauDiscriminantCutMultiplexer |
Multiplex a cut on a PFTauDiscriminator using another PFTauDiscriminator as the index. Used by the anti-electron MVA, which needs to choose what cut to apply on the MVA output depending on what the category is.
00001 cms.EDProducer( 00002 "RecoTauDiscriminantCutMultiplexer", 00003 PFTauProducer = cms.InputTag("fixme"), 00004 toMultiplex = cms.InputTag("fixme"), 00005 Prediscriminants = cms.PSet( 00006 BooleanOperator = cms.string("and"), 00007 decayMode = cms.PSet( 00008 Producer = cms.InputTag("fixme"), 00009 cut = cms.double(0.) 00010 ) 00011 ), 00012 key = cms.InputTag("fixme"), # a discriminator 00013 mapping = cms.VPSet( 00014 cms.PSet( 00015 category = cms.uint32(0), 00016 cut = cms.double(0.5), 00017 ), 00018 cms.PSet( 00019 category = cms.uint32(1), 00020 cut = cms.double(0.2), 00021 ), 00022 ) 00023 )
Definition at line 13 of file RecoTauDiscriminantCutMultiplexer_cfi.py.