CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/CalibTracker/SiStripESProducers/python/SiStripQualityESProducer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 SiStripQualityESProducer = cms.ESProducer(
00004     "SiStripQualityESProducer",
00005     appendToDataLabel = cms.string(''),
00006     ListOfRecordToMerge = cms.VPSet(
00007     cms.PSet( record = cms.string("SiStripDetVOffRcd"),    tag    = cms.string("") ),
00008     cms.PSet( record = cms.string("SiStripDetCablingRcd"), tag    = cms.string("") ),
00009     cms.PSet( record = cms.string("RunInfoRcd"),           tag    = cms.string("") ),
00010     cms.PSet( record = cms.string("SiStripBadStripRcd"),   tag    = cms.string("") ),
00011     cms.PSet( record = cms.string("SiStripBadChannelRcd"), tag    = cms.string("") ),
00012     cms.PSet( record = cms.string("SiStripBadFiberRcd"),   tag    = cms.string("") ),
00013     cms.PSet( record = cms.string("SiStripBadModuleRcd"),  tag    = cms.string("") )
00014     ),
00015     ReduceGranularity = cms.bool(False),
00016     # Minumum percentage of bad strips to set the full apv as bad.
00017     ThresholdForReducedGranularity = cms.double(0.3),
00018     # True means all the debug output from adding the RunInfo (default is False)
00019     PrintDebugOutput = cms.bool(False),
00020     # "True" means that the RunInfo is used even if all the feds are off (including other subdetectors).
00021     # This means that if the RunInfo was filled with a fake empty object we will still set the full tracker as bad.
00022     # With "False", instead, in that case the RunInfo information is discarded.
00023     # Default is "False".
00024     UseEmptyRunInfo = cms.bool(False),
00025 )
00026 
00027