-
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
DQM: Remove dqmEndRun in DQMEDAnalyzer #28552
Conversation
The code-checks are being triggered in jenkins. |
-code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-28552/13023
Code check has found code style and quality issues which could be resolved by applying following patch(s)
|
2b4f4af
to
699071f
Compare
The code-checks are being triggered in jenkins. |
Properly rebased to CMSSW_11_1_X_2019-12-04-2300 and fixed the code-format. |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-28552/13041
|
A new Pull Request was created by @schneiml (Marcel Schneider) for master. It involves the following packages: DQM/CTPPS @SiewYan, @andrius-k, @schneiml, @kpedro88, @Martin-Grunewald, @rekovic, @fioriNTU, @alberto-sanchez, @santocch, @peruzzim, @civanch, @cmsbuild, @agrohsje, @fwyzard, @efeyazgan, @mdhildreth, @jfernan2, @qliphy, @benkrikler, @mkirsano, @kmaeshima, @fgolf can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
please test No changes expected. |
The tests are being triggered in jenkins. |
+1 Comparison is all clean now. |
@schneiml the move back to |
@fabiocos as of today, all The modules which are moved to The modules moved to The plan is that after #28622, we can change |
+1 |
+upgrade |
@santocch @efeyazgan @rekovic @benkrikler @civanch @peruzzim Could you please have look and sign this PR? The changes should be rather trivial. |
+1 |
Still waiting for signatures, no real objections as far as I remember (@fabiocos ?). |
This PR seems ready to be merged but several signatures are still missing: |
+1 |
please merge |
merge |
PR description:
Another step forward on the way towards
edm::stream
modules, I decided that we cannot supportendRun
operations inDQMEDAnalyzer
. Same goes for begin/end lumi, but they are less common. I allowdqmBeginRun
, since it logically makes sense and is also mostly save (It's hard to do anything illegal with DQM objects beforebookHistograms
).The full API is still available in
DQMOneEDAnalyzer
, and the few modules having non-trivialendRun
today where migrated to it. However, the majority was just debug printouts, which I simply removed.This is separate PR (separate form the coming bigger changes, PR #28622 ), to make the changes affecting subsystem code more visible and allow a validation independent from the coming bigger PR.
PR validation:
Compiles, and no changes to file output are expected. There will be less log output in some configurations.
Some "summary" printouts where removed; these might be useful, but should not be part of DQM modules.