Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:52

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 siStripQualityESProducer = cms.ESProducer(
0004     "SiStripQualityESProducer",
0005     appendToDataLabel = cms.string(''),
0006     ListOfRecordToMerge = cms.VPSet(
0007     cms.PSet( record = cms.string("SiStripDetVOffRcd"),    tag    = cms.string("") ),
0008     cms.PSet( record = cms.string("SiStripDetCablingRcd"), tag    = cms.string("") ),
0009     cms.PSet( record = cms.string("RunInfoRcd"),           tag    = cms.string("") ),
0010     cms.PSet( record = cms.string("SiStripBadStripRcd"),   tag    = cms.string("") ),
0011     cms.PSet( record = cms.string("SiStripBadChannelRcd"), tag    = cms.string("") ),
0012     cms.PSet( record = cms.string("SiStripBadFiberRcd"),   tag    = cms.string("") ),
0013     cms.PSet( record = cms.string("SiStripBadModuleRcd"),  tag    = cms.string("") )
0014     ),
0015     ReduceGranularity = cms.bool(False),
0016     # Minumum percentage of bad strips to set the full apv as bad.
0017     ThresholdForReducedGranularity = cms.double(0.3),
0018     # True means all the debug output from adding the RunInfo (default is False)
0019     PrintDebugOutput = cms.bool(False),
0020     # "True" means that the RunInfo is used even if all the feds are off (including other subdetectors).
0021     # This means that if the RunInfo was filled with a fake empty object we will still set the full tracker as bad.
0022     # With "False", instead, in that case the RunInfo information is discarded.
0023     # Default is "False".
0024     UseEmptyRunInfo = cms.bool(False),
0025 )
0026 
0027