Go to the documentation of this file.00001
00002 import FWCore.ParameterSet.Config as cms
00003
00004
00005 from CondTools.SiPixel.SiPixelGainCalibrationService_cfi import *
00006 siPixelClusters = cms.EDProducer("SiPixelClusterProducer",
00007 SiPixelGainCalibrationServiceParameters,
00008 src = cms.InputTag("siPixelDigis"),
00009 ChannelThreshold = cms.int32(1000),
00010 MissCalibrate = cms.untracked.bool(True),
00011 SplitClusters = cms.bool(False),
00012 VCaltoElectronGain = cms.int32(65),
00013 VCaltoElectronOffset = cms.int32(-414),
00014
00015
00016
00017
00018
00019 payloadType = cms.string('Offline'),
00020 SeedThreshold = cms.int32(1000),
00021 ClusterThreshold = cms.double(4000.0),
00022
00023 maxNumberOfClusters = cms.int32(-1),
00024 )
00025
00026