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 TrackMVAClassifierDetached(**kwargs):
0004   mod = cms.EDProducer('TrackMVAClassifierDetached',
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       GBRForestLabel = cms.string(''),
0016       GBRForestFileName = cms.string('')
0017     ),
0018     mightGet = cms.optional.untracked.vstring
0019   )
0020   for k,v in kwargs.items():
0021     setattr(mod, k, v)
0022   return mod