Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def ClusterCheckerEDProducer(*args, **kwargs):
0004   mod = cms.EDProducer('ClusterCheckerEDProducer',
0005     doClusterCheck = cms.bool(True),
0006     MaxNumberOfStripClusters = cms.uint32(400000),
0007     ClusterCollectionLabel = cms.InputTag('siStripClusters'),
0008     MaxNumberOfPixelClusters = cms.uint32(40000),
0009     PixelClusterCollectionLabel = cms.InputTag('siPixelClusters'),
0010     cut = cms.string('strip < 400000 && pixel < 40000 && (strip < 50000 + 10*pixel) && (pixel < 5000 + 0.1*strip)'),
0011     DontCountDetsAboveNClusters = cms.uint32(0),
0012     silentClusterCheck = cms.untracked.bool(False),
0013     mightGet = cms.optional.untracked.vstring
0014   )
0015   for a in args:
0016     mod.update_(a)
0017   mod.update_(kwargs)
0018   return mod