From f65b5f8144263920657261c8b993c9b8b6616122 Mon Sep 17 00:00:00 2001 From: Abhirami Harilal Date: Tue, 12 Jul 2022 15:26:00 +0200 Subject: [PATCH] Add noise plot and change thresholds --- .../python/PresampleClient_cfi.py | 14 ++++++++++++-- DQM/EcalMonitorClient/src/PresampleClient.cc | 2 ++ DQM/EcalMonitorTasks/python/TimingTask_cfi.py | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/DQM/EcalMonitorClient/python/PresampleClient_cfi.py b/DQM/EcalMonitorClient/python/PresampleClient_cfi.py index 356351f652cb6..f3c94249d0e84 100644 --- a/DQM/EcalMonitorClient/python/PresampleClient_cfi.py +++ b/DQM/EcalMonitorClient/python/PresampleClient_cfi.py @@ -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'), @@ -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'), diff --git a/DQM/EcalMonitorClient/src/PresampleClient.cc b/DQM/EcalMonitorClient/src/PresampleClient.cc index 1ca59c7baf506..6ad07c5236eb6 100644 --- a/DQM/EcalMonitorClient/src/PresampleClient.cc +++ b/DQM/EcalMonitorClient/src/PresampleClient.cc @@ -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")); @@ -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")); diff --git a/DQM/EcalMonitorTasks/python/TimingTask_cfi.py b/DQM/EcalMonitorTasks/python/TimingTask_cfi.py index 07fb36bf3c791..6342b96e7879f 100644 --- a/DQM/EcalMonitorTasks/python/TimingTask_cfi.py +++ b/DQM/EcalMonitorTasks/python/TimingTask_cfi.py @@ -29,7 +29,7 @@ chi2ThresholdEE = 50. chi2ThresholdEB = 16. energyThresholdEE = 4.6 -energyThresholdEEFwd = 6.7 +energyThresholdEEFwd = 12. energyThresholdEB = 2.02 timingVsBXThreshold = energyThresholdEB timeErrorThreshold = 3.