00001 # 00002 # Configure the EcalNextToDeadChannel service 00003 # 00004 # Author: Stefano Argiro 00005 # 00006 00007 00008 import FWCore.ParameterSet.Config as cms 00009 00010 essourceEcalNextToDead = cms.ESSource("EmptyESSource", 00011 recordName = cms.string("EcalNextToDeadChannelRcd"), 00012 firstValid = cms.vuint32(1), 00013 iovIsRunNotTime = cms.bool(True) 00014 ) 00015 00016 00017 EcalNextToDeadChannelESProducer = cms.ESProducer("EcalNextToDeadChannelESProducer", 00018 # channels with db status >= this threshold will 00019 # be defined as dead 00020 channelStatusThresholdForDead=cms.int32(12) 00021 )