Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:53

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PFRecoTauDiscriminationAgainstMuon(**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 k,v in kwargs.items():
0023     setattr(mod, k, v)
0024   return mod