-
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
Fixing Offline DQM Bug #12103
Fixing Offline DQM Bug #12103
Conversation
A new Pull Request was created by @vkhristenko (Viktor Khristenko) for CMSSW_7_4_X. Fixing Offline DQM Bug It involves the following packages: DQM/HcalMonitorTasks @cmsbuild, @danduggan, @vanbesien, @deguio can you please review it and eventually sign? Thanks. |
@@ -570,6 +570,8 @@ void HcalDigiMonitor::analyze(edm::Event const&e, edm::EventSetup const&s) | |||
i<=FEDNumbering::MAXHCALuTCAFEDID; i++) { | |||
if (i>FEDNumbering::MAXHCALFEDID && i<FEDNumbering::MINHCALuTCAFEDID) | |||
continue; | |||
if (i<1118) |
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.
a comment here may be helpful (e.g. skip uTCA non-HF FEDs
).
this hardcoded choice is not good for maintenance: at some point the HBHE uTCA will need to be monitored as well.
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.
also, shouldn't this be if (i > MAXHCALFEDID && i < 1118 )
if I understand correctly, now only HF uTCA FEDs will pass.
@vkhristenko |
@cmsbuild please test |
The tests are being triggered in jenkins. |
Hi Slava, so the situation is the following: -> Regarding why no comments - module is to be replaced as mentioned above. -> Regarding including my newly introduced if statement into the one just above - would of course be better - yes, the point is to skip uTCA/AMC13-based uHBHE FEDs - no explanation. I just did it like that... I hope that answers all the questions |
@vkhristenko, I think @slava77's comments should be easy to add, could you please do so, then we can test + approve. |
@cmsbuild please test |
The tests are being triggered in jenkins. |
I don't know why this change causes this kind of behavior, in particular for this plot. The changes that Slava asked were actually quite neccessary. VK |
@vkhristenko just in case: the plots I posted were with the first version of this PR (only changes in vkhristenko@2390933) |
@slava77, Yeah yeah, I understood the timeline. |
Well, I'm guseesing what all this might mean... (1) http://cmslxr.fnal.gov/source/EventFilter/HcalRawToDigi/plugins/HcalRawToDigi.cc#0033 (2) here, in the initial 2390933 DQM change
if (i>FEDNumbering::MAXHCALFEDID && i<FEDNumbering::MINHCALuTCAFEDID) (3) emap ( HcalElectronicsMap_v7.05_hlt / HcalElectronicsMap_v7.05_offline or earlier versions) |
@abdoulline, Regarding the unpacker - I don't know.... VK |
OK, thank you for providing HBHE uTCA FEDs (HF ones 1118/1120/1122 is If you say: I'm confused by how it can affect Digi occupancy as reported by Slava. S. On Tue, 27 Oct 2015, Viktor Khristenko wrote:
|
I've dumped/expanded config step3_RAW2DIGI_L1Reco_RECO_EI_PAT_ALCA_DQM.py and can see that GT 'auto:run1_data_Fake' stands for 74X_dataRun1_v3, which in turn includes HcalElectronicsMap_v7.05_offline with a (first) Run 1 IOV available... |
@abdoulline and @vkhristenko, we just discussed this in the ORP, and if you're happy with the current implementation, then I'll sign off. |
I would like to wait for comparison of the tests, which is running now... When it's done, Dan, unless Salavat has objections, I think that we can go ahead. VK |
@vkhristenko perfect. |
On Tue, 27 Oct 2015, Viktor Khristenko wrote:
|
I gotta say that after looking at the comparison (in particular since the newest comparison gives really good match for what didn't match after the initial commit), I gave it a closer look. However, now it seems to be fine. I think we are ready (from Hcal side) VK |
+1 |
This pull request is fully signed and it will be integrated in one of the next CMSSW_7_4_X IBs (tests are also fine) and once validation in the development release cycle CMSSW_7_6_X is complete. This pull request requires discussion in the ORP meeting before it's merged. @davidlange6, @Degano, @smuzaffar |
+1 |
Fixing the bug reported here
https://hypernews.cern.ch/HyperNews/CMS/get/recoDevelopment/1396/1/3/1/2/1/1.html
This is only for Offline DQM!
VK