CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalNextToDeadChannelESProducer_cff.py
Go to the documentation of this file.
1 #
2 # Configure the EcalNextToDeadChannel service
3 #
4 # Author: Stefano Argiro
5 #
6 
7 
8 import FWCore.ParameterSet.Config as cms
9 
10 essourceEcalNextToDead = cms.ESSource("EmptyESSource",
11  recordName = cms.string("EcalNextToDeadChannelRcd"),
12  firstValid = cms.vuint32(1),
13  iovIsRunNotTime = cms.bool(True)
14  )
15 
16 
17 ecalNextToDeadChannelESProducer = cms.ESProducer("EcalNextToDeadChannelESProducer",
18  # channels with db status >= this threshold will
19  # be defined as dead
20  channelStatusThresholdForDead=cms.int32(12)
21  )