Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-05-05 02:47:01

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 TrackMVAClassifierDetached = cms.EDProducer('TrackMVAClassifierDetached',
0004   src = cms.InputTag(''),
0005   beamspot = cms.InputTag('offlineBeamSpot'),
0006   vertices = cms.InputTag('firstStepPrimaryVertices'),
0007   ignoreVertices = cms.bool(False),
0008   qualityCuts = cms.vdouble(
0009     -0.7,
0010     0.1,
0011     0.7
0012   ),
0013   mva = cms.PSet(
0014     GBRForestLabel = cms.string(''),
0015     GBRForestFileName = cms.string('')
0016   ),
0017   mightGet = cms.optional.untracked.vstring
0018 )