CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripQualityESProducer_cfi.py
Go to the documentation of this file.
2 
3 siStripQualityESProducer = cms.ESProducer(
4  "SiStripQualityESProducer",
5  appendToDataLabel = cms.string(''),
6  ListOfRecordToMerge = cms.VPSet(
7  cms.PSet( record = cms.string("SiStripDetVOffRcd"), tag = cms.string("") ),
8  cms.PSet( record = cms.string("SiStripDetCablingRcd"), tag = cms.string("") ),
9  cms.PSet( record = cms.string("RunInfoRcd"), tag = cms.string("") ),
10  cms.PSet( record = cms.string("SiStripBadStripRcd"), tag = cms.string("") ),
11  cms.PSet( record = cms.string("SiStripBadChannelRcd"), tag = cms.string("") ),
12  cms.PSet( record = cms.string("SiStripBadFiberRcd"), tag = cms.string("") ),
13  cms.PSet( record = cms.string("SiStripBadModuleRcd"), tag = cms.string("") )
14  ),
15  ReduceGranularity = cms.bool(False),
16  # Minumum percentage of bad strips to set the full apv as bad.
17  ThresholdForReducedGranularity = cms.double(0.3),
18  # True means all the debug output from adding the RunInfo (default is False)
19  PrintDebugOutput = cms.bool(False),
20  # "True" means that the RunInfo is used even if all the feds are off (including other subdetectors).
21  # This means that if the RunInfo was filled with a fake empty object we will still set the full tracker as bad.
22  # With "False", instead, in that case the RunInfo information is discarded.
23  # Default is "False".
24  UseEmptyRunInfo = cms.bool(False),
25 )
26 
27