-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSC L1T DQM 2D summary plots: Flip the two endcaps on the y-axis #36328
CSC L1T DQM 2D summary plots: Flip the two endcaps on the y-axis #36328
Conversation
I also modified DQM/L1TMonitor/src/L1TStage2Shower.cc @zuoxunwu because that code was my starting point |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-36328/27068
|
A new Pull Request was created by @dildick (Sven Dildick) for master. It involves the following packages:
@emanueleusai, @ahmad3213, @cmsbuild, @jfernan2, @pmandrik, @pbo0, @rvenditti can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-b6eb40/20925/summary.html Comparison SummarySummary:
|
+1 |
This pull request is fully signed and it will be integrated in one of the next master IBs (tests are also fine). This pull request will now be reviewed by the release team before it's merged. @perrotta, @dpiparo, @qliphy (and backports should be raised in the release meeting by the corresponding L2) |
@@ -97,7 +97,7 @@ void L1TStage2Shower::analyze(const edm::Event& e, const edm::EventSetup& c) { | |||
int ring = detId.ring(); | |||
int chamber = detId.chamber(); | |||
int sr = histIndexCSC.at({station, ring}); | |||
if (endcap == -1) | |||
if (endcap == 1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By the way, since endcap
is only used to check whether it is equal 1 or not, a further simplification could be replacing L95 with
int endcap = detId.endcap();
+1 |
PR description:
I presented #36226 at the CSC Weekly meeting https://indico.cern.ch/event/1101484/contributions/4634324/attachments/2356412/4022809/CSCDQM_SD_20211201.pdf. During the presentation I noticed that the endcaps are flipped on the y-axis. I realized it when I saw the 3-wide gap in ME-1/1 at chamber 9, 10 and 11. It should white for ME+1/1/9, ME+1/1/10, and ME+1/1/11.
In my study I excluded ME+1/1/9, ME+1/1/10, and ME+1/1/11 because there we had downloaded experimental firmware for the HL-LHC (https://twiki.cern.ch/twiki/bin/viewauth/CMS/CSCOTMB2018) in late 2018.
Basically I added a digi filter that I introduced earlier in #35717 after the CSC unpacker and before the CSC trigger emulator
PR validation:
Tested on 10k events of Run 322022 (of 2018D).
CSC_dataVsEmul_CMS_Run_322022_postFlip.pdf
Screenshot after flipping the two endcaps:
if this PR is a backport please specify the original PR and why you need to backport that PR:
N/A
@ptcox @zuoxunwu