Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:12

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PFRecoTauDiscriminationAgainstMuon(*args, **kwargs):
0004   mod = cms.EDProducer('PFRecoTauDiscriminationAgainstMuon',
0005     a = cms.double(0.5),
0006     c = cms.double(0),
0007     b = cms.double(0.5),
0008     PFTauProducer = cms.InputTag('pfRecoTauProducer'),
0009     Prediscriminants = cms.PSet(
0010       BooleanOperator = cms.string('and'),
0011       leadTrack = cms.PSet(
0012         cut = cms.required.double,
0013         Producer = cms.required.InputTag
0014       )
0015     ),
0016     discriminatorOption = cms.string('noSegMatch'),
0017     HoPMin = cms.double(0.2),
0018     maxNumberOfMatches = cms.int32(0),
0019     checkNumMatches = cms.bool(False),
0020     mightGet = cms.optional.untracked.vstring
0021   )
0022   for a in args:
0023     mod.update_(a)
0024   mod.update_(kwargs)
0025   return mod