CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoLocalTracker/SiPixelClusterizer/python/SiPixelClusterizer_cfi.py

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     # ****  payLoadType Options         ****
00016     # ****  HLT - column granularity    ****
00017     # ****  Offline - gain:col/ped:pix  ****
00018     # **************************************
00019     payloadType = cms.string('Offline'),
00020     SeedThreshold = cms.int32(1000),
00021     ClusterThreshold = cms.double(4000.0),
00022     # **************************************
00023     maxNumberOfClusters = cms.int32(-1), # -1 means no limit.
00024 )
00025 
00026