Skip to content

Commit

Permalink
Merge pull request #38703 from abhih1/AddNoisePlots_Master
Browse files Browse the repository at this point in the history
Add a noise plot and some minor adjustments to ECAL DQM [Master]
  • Loading branch information
cmsbuild authored Jul 15, 2022
2 parents b748e60 + f65b5f8 commit c1e18ac
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
14 changes: 12 additions & 2 deletions DQM/EcalMonitorClient/python/PresampleClient_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@
otype = cms.untracked.string('Ecal3P'),
btype = cms.untracked.string('SuperCrystal'),
description = cms.untracked.string('2D distribution of the presample RMS. Channels with entries less than ' + str(minChannelEntries) + ' are not considered.')
),
MeanMapAll = cms.untracked.PSet(
path = cms.untracked.string('%(subdet)s/%(prefix)sSummaryClient/%(prefix)sPOT%(suffix)s pedestal G12 Mean map'),
kind = cms.untracked.string('TH2F'),
zaxis = cms.untracked.PSet(
title = cms.untracked.string('Mean')
),
otype = cms.untracked.string('Ecal3P'),
btype = cms.untracked.string('SuperCrystal'),
description = cms.untracked.string('2D distribution of the presample Mean. Channels with entries less than ' + str(minChannelEntries) + ' are not considered.')
),
RMSMapAllByLumi = cms.untracked.PSet(
path = cms.untracked.string('%(subdet)s/%(prefix)sSummaryClient/%(prefix)sPOT%(suffix)s pedestal G12 RMS map by lumi'),
Expand Down Expand Up @@ -107,8 +117,8 @@
kind = cms.untracked.string('TH1F'),
otype = cms.untracked.string('SM'),
xaxis = cms.untracked.PSet(
high = cms.untracked.double(230.0),
nbins = cms.untracked.int32(120),
high = cms.untracked.double(270.0),
nbins = cms.untracked.int32(200),
low = cms.untracked.double(170.0)
),
btype = cms.untracked.string('User'),
Expand Down
2 changes: 2 additions & 0 deletions DQM/EcalMonitorClient/src/PresampleClient.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ namespace ecaldqm {
MESet& meRMSMap(MEs_.at("RMSMap"));
MESet& meRMSMapAll(MEs_.at("RMSMapAll"));
MESet& meRMSMapAllByLumi(MEs_.at("RMSMapAllByLumi"));
MESet& meMeanMapAll(MEs_.at("MeanMapAll"));

MESet const& sPedestal(sources_.at("Pedestal"));
MESet const& sPedestalByLS(sources_.at("PedestalByLS"));
Expand Down Expand Up @@ -129,6 +130,7 @@ namespace ecaldqm {
} // qItr

towerAverage_(meRMSMapAll, meRMSMap, -1.);
towerAverage_(meMeanMapAll, sPedestal, -1.);

MESet& meTrendMean(MEs_.at("TrendMean"));
MESet& meTrendRMS(MEs_.at("TrendRMS"));
Expand Down
2 changes: 1 addition & 1 deletion DQM/EcalMonitorTasks/python/TimingTask_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
chi2ThresholdEE = 50.
chi2ThresholdEB = 16.
energyThresholdEE = 4.6
energyThresholdEEFwd = 6.7
energyThresholdEEFwd = 12.
energyThresholdEB = 2.02
timingVsBXThreshold = energyThresholdEB
timeErrorThreshold = 3.
Expand Down

0 comments on commit c1e18ac

Please sign in to comment.