Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:13

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def DisplacedRegionSeedingVertexProducer(*args, **kwargs):
0004   mod = cms.EDProducer('DisplacedRegionSeedingVertexProducer',
0005     rParam = cms.double(1),
0006     minRadius = cms.double(-1),
0007     nearThreshold = cms.double(9999),
0008     farThreshold = cms.double(-1),
0009     discriminatorCut = cms.double(-1),
0010     input_names = cms.vstring(
0011       'phi_0',
0012       'phi_1'
0013     ),
0014     output_names = cms.vstring('model_5/activation_10/Softmax'),
0015     maxPseudoROIs = cms.uint32(10000),
0016     nThreads = cms.untracked.uint32(1),
0017     graph_path = cms.FileInPath('RecoTracker/DisplacedRegionalTracking/data/FullData_Phi-64-128-256_16-32-64_F-128-64-32_Model.pb'),
0018     beamSpot = cms.InputTag('offlineBeamSpot'),
0019     trackClusters = cms.InputTag('generalV0Candidates', 'Kshort'),
0020     mightGet = cms.optional.untracked.vstring
0021   )
0022   for a in args:
0023     mod.update_(a)
0024   mod.update_(kwargs)
0025   return mod