Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-20 03:45:10

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def RecoTauDiscriminantCutMultiplexer(*args, **kwargs):
0004   mod = cms.EDProducer('RecoTauDiscriminantCutMultiplexer',
0005     toMultiplex = cms.InputTag('fixme'),
0006     verbosity = cms.int32(0),
0007     mapping = cms.VPSet(
0008       cms.PSet(
0009         category = cms.uint32(0),
0010         cut = cms.string('fixme')
0011       ),
0012       template = cms.PSetTemplate(
0013         category = cms.uint32(0),
0014         cut = cms.required.string,
0015         variable = cms.optional.string
0016       )
0017     ),
0018     rawValues = cms.vstring('discriminator'),
0019     workingPoints = cms.vdouble(0),
0020     inputFileName = cms.FileInPath('RecoTauTag/RecoTau/data/emptyMVAinputFile'),
0021     loadMVAfromDB = cms.bool(True),
0022     PFTauProducer = cms.InputTag('fixme'),
0023     Prediscriminants = cms.PSet(
0024       BooleanOperator = cms.string('AND'),
0025       leadTrack = cms.PSet(
0026         cut = cms.double(0),
0027         Producer = cms.InputTag('fixme')
0028       ),
0029       decayMode = cms.PSet(
0030         cut = cms.double(0),
0031         Producer = cms.InputTag('fixme')
0032       )
0033     ),
0034     mvaOutput_normalization = cms.string(''),
0035     mightGet = cms.optional.untracked.vstring
0036   )
0037   for a in args:
0038     mod.update_(a)
0039   mod.update_(kwargs)
0040   return mod