File indexing completed on 2023-03-17 11:14:04
0001 import FWCore.ParameterSet.Config as cms
0002
0003 TrackQualityParams = cms.PSet(qualityAlgorithm = cms.string("GBDT"),
0004 ONNXmodel = cms.FileInPath("L1Trigger/TrackTrigger/data/GBDT_default.onnx"),
0005
0006
0007 ONNXInputName = cms.string("feature_input"),
0008
0009 featureNames = cms.vstring(["phi", "eta", "z0", "bendchi2_bin", "nstub",
0010 "nlaymiss_interior", "chi2rphi_bin", "chi2rz_bin"]),
0011
0012
0013 maxZ0 = cms.double ( 15. ) ,
0014 maxEta = cms.double ( 2.4 ) ,
0015 chi2dofMax = cms.double( 40. ),
0016 bendchi2Max = cms.double( 2.4 ),
0017 minPt = cms.double( 2. ),
0018 nStubsmin = cms.int32( 4 ),
0019 )