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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
import FWCore.ParameterSet.Config as cms
from DQM.EcalCommon.CommonParams_cfi import *
from DQM.EcalMonitorTasks.LedTask_cfi import ecalLedTask
forwardFactor = 0.5
minChannelEntries = 3
expectedAmplitude = [200., 10.]
toleranceAmplitude = 0.1
toleranceAmpRMSRatio = 0.5
expectedTiming = [4.4, 4.5]
toleranceTiming = 1.
toleranceTimRMS = 25.
expectedPNAmplitude = [800., 800.]
tolerancePNAmp = 0.1
tolerancePNRMSRatio = 1.
ecalLedClient = cms.untracked.PSet(
params = cms.untracked.PSet(
forwardFactor = cms.untracked.double(forwardFactor),
minChannelEntries = cms.untracked.int32(minChannelEntries),
expectedAmplitude = cms.untracked.vdouble(expectedAmplitude),
toleranceAmplitude = cms.untracked.double(toleranceAmplitude),
toleranceAmpRMSRatio = cms.untracked.double(toleranceAmpRMSRatio),
expectedPNAmplitude = cms.untracked.vdouble(expectedPNAmplitude),
tolerancePNAmp = cms.untracked.double(tolerancePNAmp),
tolerancePNRMSRatio = cms.untracked.double(tolerancePNRMSRatio),
expectedTiming = cms.untracked.vdouble(expectedTiming),
toleranceTiming = cms.untracked.double(toleranceTiming),
toleranceTimRMS = cms.untracked.double(toleranceTimRMS),
ledWavelengths = ecaldqmLedWavelengths
),
sources = cms.untracked.PSet(
Timing = ecalLedTask.MEs.Timing,
PNAmplitude = ecalLedTask.MEs.PNAmplitude,
Amplitude = ecalLedTask.MEs.Amplitude,
CalibStatus = ecalLedTask.MEs.CalibStatus
),
MEs = cms.untracked.PSet(
TimingMean = cms.untracked.PSet(
kind = cms.untracked.string('TH1F'),
multi = cms.untracked.PSet(
wl = ecaldqmLedWavelengths
),
otype = cms.untracked.string('EESM'),
xaxis = cms.untracked.PSet(
high = cms.untracked.double(5.5),
nbins = cms.untracked.int32(100),
low = cms.untracked.double(3.5)
),
btype = cms.untracked.string('User'),
path = cms.untracked.string('EcalEndcap/EELedClient/EELDT led timing L%(wl)s %(sm)s'),
description = cms.untracked.string('Distribution of the timing in each crystal channel. Z scale is in LHC clocks. Channels with less than ' + str(minChannelEntries) + ' are not considered.')
),
PNQualitySummary = cms.untracked.PSet(
path = cms.untracked.string('EcalEndcap/EESummaryClient/EELDT PN led quality summary L%(wl)s'),
otype = cms.untracked.string('EEMEM'),
multi = cms.untracked.PSet(
wl = ecaldqmLedWavelengths
),
kind = cms.untracked.string('TH2F'),
btype = cms.untracked.string('Crystal'),
description = cms.untracked.string('Summary of the led data quality in the PN diodes. A channel is red if mean / expected < ' + str(tolerancePNAmp) + ' or RMS / expected > ' + str(tolerancePNRMSRatio) + '. Expected amplitudes are ' + ('%.1f, %.1f' % tuple(expectedPNAmplitude)) + ' for led 1 and 2 respectively. Channels with less than ' + str(minChannelEntries) + ' are not considered.')
),
TimingRMSMap = cms.untracked.PSet(
path = cms.untracked.string('EcalEndcap/EELedClient/EELDT timing RMS L%(wl)s'),
otype = cms.untracked.string('EE'),
multi = cms.untracked.PSet(
wl = ecaldqmLedWavelengths
),
kind = cms.untracked.string('TH2F'),
btype = cms.untracked.string('Crystal'),
description = cms.untracked.string('2D distribution of the led timing RMS. Z scale is in LHC clocks. Channels with less than ' + str(minChannelEntries) + ' are not considered.')
),
AmplitudeMean = cms.untracked.PSet(
kind = cms.untracked.string('TH1F'),
multi = cms.untracked.PSet(
wl = ecaldqmLedWavelengths
),
otype = cms.untracked.string('EESM'),
xaxis = cms.untracked.PSet(
high = cms.untracked.double(400.0),
nbins = cms.untracked.int32(100),
low = cms.untracked.double(0.0)
),
btype = cms.untracked.string('User'),
path = cms.untracked.string('EcalEndcap/EELedClient/EELDT amplitude L%(wl)s %(sm)s'),
description = cms.untracked.string('Distribution of the mean amplitude seen in each crystal. Channels with less than ' + str(minChannelEntries) + ' are not considered.')
),
QualitySummary = cms.untracked.PSet(
path = cms.untracked.string('EcalEndcap/EESummaryClient/EELDT%(suffix)s led quality summary L%(wl)s'),
otype = cms.untracked.string('EE2P'),
multi = cms.untracked.PSet(
wl = ecaldqmLedWavelengths
),
kind = cms.untracked.string('TH2F'),
btype = cms.untracked.string('SuperCrystal'),
description = cms.untracked.string('Summary of the led data quality. A channel is red either if mean / expected < ' + str(toleranceAmplitude) + ', or if RMS / expected > ' + str(toleranceAmpRMSRatio) + ', or if mean timing is off from expected by ' + str(toleranceTiming) + '. Expected amplitudes and timings are ' + ('%.1f, %.1f' % tuple(expectedAmplitude)) + ' and ' + ('%.1f, %.1f' % tuple(expectedTiming)) + ' for leds 1 and 2 respectively. Channels with less than ' + str(minChannelEntries) + ' are not considered.')
),
Quality = cms.untracked.PSet(
path = cms.untracked.string('EcalEndcap/EELedClient/EELDT led quality L%(wl)s %(sm)s'),
otype = cms.untracked.string('EESM'),
multi = cms.untracked.PSet(
wl = ecaldqmLedWavelengths
),
kind = cms.untracked.string('TH2F'),
btype = cms.untracked.string('Crystal'),
description = cms.untracked.string('Summary of the led data quality. A channel is red either if mean / expected < ' + str(toleranceAmplitude) + ', or if RMS / expected > ' + str(toleranceAmpRMSRatio) + ', or if mean timing is off from expected by ' + str(toleranceTiming) + '. Expected amplitudes and timings are ' + ('%.1f, %.1f' % tuple(expectedAmplitude)) + ' and ' + ('%.1f, %.1f' % tuple(expectedTiming)) + ' for leds 1 and 2 respectively. Channels with less than ' + str(minChannelEntries) + ' are not considered.')
),
AmplitudeRMS = cms.untracked.PSet(
path = cms.untracked.string('EcalEndcap/EELedClient/EELDT amplitude RMS L%(wl)s'),
otype = cms.untracked.string('EE'),
multi = cms.untracked.PSet(
wl = ecaldqmLedWavelengths
),
kind = cms.untracked.string('TH2F'),
btype = cms.untracked.string('Crystal'),
description = cms.untracked.string('2D distribution of the amplitude RMS. Channels with less than ' + str(minChannelEntries) + ' are not considered.')
)
)
)
|