Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-24 22:51:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def TrackLwtnnClassifier(*args, **kwargs):
0004   mod = cms.EDProducer('TrackLwtnnClassifier',
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       lwtnnLabel = cms.string('trackSelectionLwtnn')
0016     ),
0017     mightGet = cms.optional.untracked.vstring
0018   )
0019   for a in args:
0020     mod.update_(a)
0021   mod.update_(kwargs)
0022   return mod