File indexing completed on 2023-11-06 23:38:05
0001 import FWCore.ParameterSet.Config as cms
0002
0003 siPixelRawToClusterCUDAPhase1 = cms.EDProducer('SiPixelRawToClusterCUDAPhase1',
0004 IncludeErrors = cms.bool(True),
0005 UseQualityInfo = cms.bool(False),
0006 clusterThreshold_layer1 = cms.int32(2000),
0007 clusterThreshold_otherLayers = cms.int32(4000),
0008 VCaltoElectronGain = cms.double(47),
0009 VCaltoElectronGain_L1 = cms.double(50),
0010 VCaltoElectronOffset = cms.double(-60),
0011 VCaltoElectronOffset_L1 = cms.double(-670),
0012 InputLabel = cms.InputTag('rawDataCollector'),
0013 Regions = cms.PSet(
0014 inputs = cms.optional.VInputTag,
0015 deltaPhi = cms.optional.vdouble,
0016 maxZ = cms.optional.vdouble,
0017 beamSpot = cms.optional.InputTag
0018 ),
0019 CablingMapLabel = cms.string(''),
0020 mightGet = cms.optional.untracked.vstring
0021 )