Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-11-06 23:38:06

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 totemRPUVPatternFinder = cms.EDProducer('TotemRPUVPatternFinder',
0004   tagRecHit = cms.InputTag('totemRPRecHitProducer'),
0005   verbosity = cms.untracked.uint32(0),
0006   maxHitsPerPlaneToSearch = cms.uint32(5),
0007   minPlanesPerProjectionToSearch = cms.uint32(3),
0008   clusterSize_a = cms.double(0.02),
0009   clusterSize_b = cms.double(0.3),
0010   threshold = cms.double(2.99),
0011   minPlanesPerProjectionToFit = cms.uint32(3),
0012   allowAmbiguousCombination = cms.bool(False),
0013   max_a_toFit = cms.double(10),
0014   exceptionalSettings = cms.VPSet(
0015   ),
0016   mightGet = cms.optional.untracked.vstring
0017 )