Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def TotemTimingLocalTrackFitter_TotemTimingDetId_(*args, **kwargs):
0004   mod = cms.EDProducer('TotemTimingLocalTrackFitter<TotemTimingDetId>',
0005     recHitsTag = cms.InputTag('totemTimingRecHits'),
0006     maxPlaneActiveChannels = cms.int32(2),
0007     trackingAlgorithmParams = cms.PSet(
0008       threshold = cms.double(1.5),
0009       thresholdFromMaximum = cms.double(0.5),
0010       resolution = cms.double(0.01),
0011       sigma = cms.double(0),
0012       tolerance = cms.double(0.1),
0013       pixelEfficiencyFunction = cms.string('(x>[0]-0.5*[1]-0.05)*(x<[0]+0.5*[1]-0.05)+0*[2]'),
0014       yPosition = cms.double(0),
0015       yWidth = cms.double(0)
0016     ),
0017     mightGet = cms.optional.untracked.vstring
0018   )
0019   for a in args:
0020     mod.update_(a)
0021   mod.update_(kwargs)
0022   return mod