Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def ClusterCheckerEDProducer(**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     silentClusterCheck = cms.untracked.bool(False),
0012     mightGet = cms.optional.untracked.vstring
0013   )
0014   for k,v in kwargs.items():
0015     setattr(mod, k, v)
0016   return mod