File indexing completed on 2024-09-24 22:51:05
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def TrackTfClassifier(*args, **kwargs):
0004 mod = cms.EDProducer('TrackTfClassifier',
0005 src = cms.InputTag(''),
0006 beamspot = cms.InputTag('offlineBeamSpot'),
0007 vertices = cms.InputTag('firstStepPrimaryVertices'),
0008 ignoreVertices = cms.bool(False),
0009 qualityCuts = cms.vdouble(
0010 -0.7,
0011 0.1,
0012 0.7
0013 ),
0014 mva = cms.PSet(
0015 tfDnnLabel = cms.string('trackSelectionTf'),
0016 batchSize = cms.int32(16)
0017 ),
0018 mightGet = cms.optional.untracked.vstring
0019 )
0020 for a in args:
0021 mod.update_(a)
0022 mod.update_(kwargs)
0023 return mod