Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:27

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 NearbyPixelClustersProducer = cms.EDProducer('NearbyPixelClustersProducer',
0004                                              clusterCollection = cms.InputTag('siPixelClusters'), # input clusters
0005                                              trajectoryInput = cms.InputTag('TrackerRefitter'),   # input trajectories
0006                                              throwBadComponents = cms.bool(False),                # do not use bad components
0007                                              dumpWholeDetIds = cms.bool(False)                    # write all clusters in Det
0008                                              )