Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:21

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def TotemRPUVPatternFinder(*args, **kwargs):
0004   mod = cms.EDProducer('TotemRPUVPatternFinder',
0005     tagRecHit = cms.InputTag('totemRPRecHitProducer'),
0006     verbosity = cms.untracked.uint32(0),
0007     maxHitsPerPlaneToSearch = cms.uint32(5),
0008     minPlanesPerProjectionToSearch = cms.uint32(3),
0009     clusterSize_a = cms.double(0.02),
0010     clusterSize_b = cms.double(0.3),
0011     threshold = cms.double(2.99),
0012     minPlanesPerProjectionToFit = cms.uint32(3),
0013     allowAmbiguousCombination = cms.bool(False),
0014     max_a_toFit = cms.double(10),
0015     exceptionalSettings = cms.VPSet(
0016     ),
0017     mightGet = cms.optional.untracked.vstring
0018   )
0019   for a in args:
0020     mod.update_(a)
0021   mod.update_(kwargs)
0022   return mod