1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import FWCore.ParameterSet.Config as cms
from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
LaserAlignmentT0ProducerDQM = DQMEDAnalyzer( 'LaserAlignmentT0ProducerDQM',
# specify the input digi collections to run on
DigiProducerList = cms.VPSet(
cms.PSet(
DigiLabel = cms.string( 'ZeroSuppressed' ),
DigiType = cms.string( 'Processed' ),
DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' )
),
cms.PSet(
DigiLabel = cms.string( 'VirginRaw' ),
DigiType = cms.string( 'Raw' ),
DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' )
),
cms.PSet(
DigiLabel = cms.string( 'ProcessedRaw' ),
DigiType = cms.string( 'Raw' ),
DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' )
),
cms.PSet(
DigiLabel = cms.string( 'ScopeMode' ),
DigiType = cms.string( 'Raw' ),
DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' )
)
),
# the lower threshold for the strip amplitude;
# profiles with digis above will be considered containing signal
LowerAdcThreshold = cms.uint32( 15 ),
# the upper threshold for the strip amplitude;
# profiles with digis below will be considered containing a signal
UpperAdcThreshold = cms.uint32( 220 ),
# the dqm folder name to write to
FolderName = cms.string( "TkAlLAS" ),
# additionally dump in plain ROOT file?
OutputInPlainROOT = cms.bool( False ),
# if plain ROOT output, then write to this file
PlainOutputFileName = cms.string( "TkAlLAS.dqm.root" )
)
|