Skip to content

Commit 3a1c8a5

Browse files
authored
Merge pull request #48354 from kyungminparkdrums/151X_SpikeKillerEcalDQM
[15_1_X] Update in ECAL DQM some ECAL TP Et monitoring plot displays from GeV to ADC
2 parents 4e5eac5 + d586d5a commit 3a1c8a5

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

DQM/EcalMonitorTasks/python/TrigPrimTask_cfi.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,10 @@
264264
kind = cms.untracked.string('TH1F'),
265265
otype = cms.untracked.string('Ecal3P'),
266266
xaxis = cms.untracked.PSet(
267-
high = cms.untracked.double(128.0),
267+
high = cms.untracked.double(256.0),
268268
nbins = cms.untracked.int32(128),
269269
low = cms.untracked.double(0.0),
270-
title = cms.untracked.string('Et threshold (GeV)')
270+
title = cms.untracked.string('Et threshold (ADC)')
271271
),
272272
btype = cms.untracked.string('User'),
273273
description = cms.untracked.string('Distribution of the trigger primitive Et.')
@@ -277,10 +277,10 @@
277277
kind = cms.untracked.string('TH1F'),
278278
otype = cms.untracked.string('Ecal3P'),
279279
xaxis = cms.untracked.PSet(
280-
high = cms.untracked.double(128.0),
280+
high = cms.untracked.double(256.0),
281281
nbins = cms.untracked.int32(128),
282282
low = cms.untracked.double(0.0),
283-
title = cms.untracked.string('Et threshold (GeV)')
283+
title = cms.untracked.string('Et threshold (ADC)')
284284
),
285285
btype = cms.untracked.string('User'),
286286
description = cms.untracked.string('Distribution of the trigger primitive Et. for TT matched to spikes')
@@ -290,10 +290,10 @@
290290
kind = cms.untracked.string('TH1F'),
291291
otype = cms.untracked.string('Ecal3P'),
292292
xaxis = cms.untracked.PSet(
293-
high = cms.untracked.double(128.0),
293+
high = cms.untracked.double(256.0),
294294
nbins = cms.untracked.int32(128),
295295
low = cms.untracked.double(0.0),
296-
title = cms.untracked.string('Et threshold (GeV)')
296+
title = cms.untracked.string('Et threshold (ADC)')
297297
),
298298
btype = cms.untracked.string('User'),
299299
description = cms.untracked.string('Efficiency of spike killer matching')
@@ -303,10 +303,10 @@
303303
kind = cms.untracked.string('TH1F'),
304304
otype = cms.untracked.string('Ecal3P'),
305305
xaxis = cms.untracked.PSet(
306-
high = cms.untracked.double(128.0),
306+
high = cms.untracked.double(256.0),
307307
nbins = cms.untracked.int32(128),
308308
low = cms.untracked.double(0.0),
309-
title = cms.untracked.string('Et threshold (GeV)'),
309+
title = cms.untracked.string('Et threshold (ADC)'),
310310
),
311311
btype = cms.untracked.string('User'),
312312
description = cms.untracked.string('Rate (TP Et > threshold)')
@@ -316,10 +316,10 @@
316316
kind = cms.untracked.string('TH1F'),
317317
otype = cms.untracked.string('Ecal3P'),
318318
xaxis = cms.untracked.PSet(
319-
high = cms.untracked.double(128.0),
319+
high = cms.untracked.double(256.0),
320320
nbins = cms.untracked.int32(128),
321321
low = cms.untracked.double(0.0),
322-
title = cms.untracked.string('Et threshold (GeV)'),
322+
title = cms.untracked.string('Et threshold (ADC)'),
323323
),
324324
btype = cms.untracked.string('User'),
325325
description = cms.untracked.string('Rate (TP Et > threshold) for spike matched')

DQM/EcalMonitorTasks/src/TrigPrimTask.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,13 @@ namespace ecaldqm {
231231
meEtSummary.fill(getEcalDQMSetupObjects(), ttid, et);
232232
meEtSummaryByLumi.fill(getEcalDQMSetupObjects(), ttid, et);
233233

234-
if (et > 30)
234+
if (et > 60)
235235
etSum_ += et;
236236

237237
if (ttid.subDet() == EcalBarrel) {
238238
if (mapTowerOfflineSpikes_[ttid] == 1) {
239239
meEtRealSpikeMatched.fill(getEcalDQMSetupObjects(), ttid, et);
240-
if (et > 30)
240+
if (et > 60)
241241
etSpikeMatchSum_ += et;
242242
}
243243
}

0 commit comments

Comments
 (0)