File indexing completed on 2024-04-06 12:09:14
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 LaserAlignmentT0ProducerDQM = DQMEDAnalyzer( 'LaserAlignmentT0ProducerDQM',
0005
0006 DigiProducerList = cms.VPSet(
0007 cms.PSet(
0008 DigiLabel = cms.string( 'ZeroSuppressed' ),
0009 DigiType = cms.string( 'Processed' ),
0010 DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' )
0011 ),
0012 cms.PSet(
0013 DigiLabel = cms.string( 'VirginRaw' ),
0014 DigiType = cms.string( 'Raw' ),
0015 DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' )
0016 ),
0017 cms.PSet(
0018 DigiLabel = cms.string( 'ProcessedRaw' ),
0019 DigiType = cms.string( 'Raw' ),
0020 DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' )
0021 ),
0022 cms.PSet(
0023 DigiLabel = cms.string( 'ScopeMode' ),
0024 DigiType = cms.string( 'Raw' ),
0025 DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' )
0026 )
0027 ),
0028
0029
0030
0031 LowerAdcThreshold = cms.uint32( 15 ),
0032
0033
0034
0035 UpperAdcThreshold = cms.uint32( 220 ),
0036
0037
0038 FolderName = cms.string( "TkAlLAS" ),
0039
0040
0041 OutputInPlainROOT = cms.bool( False ),
0042
0043
0044 PlainOutputFileName = cms.string( "TkAlLAS.dqm.root" )
0045
0046 )