Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:31

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PFRecoTauDiscriminationByIPCut(**kwargs):
0004   mod = cms.EDProducer('PFRecoTauDiscriminationByIPCut',
0005     tausTIP = cms.InputTag('hltTauIPCollection'),
0006     cut = cms.string('abs(dxy) > -999.'),
0007     PFTauProducer = cms.InputTag('fixme'),
0008     Prediscriminants = cms.PSet(
0009       BooleanOperator = cms.string('AND'),
0010       leadTrack = cms.PSet(
0011         cut = cms.double(0),
0012         Producer = cms.InputTag('fixme')
0013       ),
0014       decayMode = cms.PSet(
0015         cut = cms.double(0),
0016         Producer = cms.InputTag('fixme')
0017       )
0018     ),
0019     mightGet = cms.optional.untracked.vstring
0020   )
0021   for k,v in kwargs.items():
0022     setattr(mod, k, v)
0023   return mod