-
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
removal of TH1::StatOverflows calls in FastTimerService? #32343
removal of TH1::StatOverflows calls in FastTimerService? #32343
Conversation
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-32343/20173
|
A new Pull Request was created by @missirol (Marino Missiroli) for master. It involves the following packages: HLTrigger/Timer @Martin-Grunewald, @cmsbuild, @fwyzard can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
Thanks Marino, glad to see ROOT has finally implemented a per-object flag.
I'll have to double check, but in principle looks good.
|
please test
|
The tests are being triggered in jenkins.
|
+1 |
Comparison job queued. |
Comparison is ready Comparison Summary:
|
+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. @silviodonato, @dpiparo, @qliphy (and backports should be raised in the release meeting by the corresponding L2) |
Comparison is ready Comparison Summary:
|
The differences in One note: one might wonder why changes don't show up in other wfs as well (assuming |
while
Few enought that it should be simple to make a change in the central DQM code and replace the call to |
@cms-sw/dqm-l2 FYI |
Thanks @fwyzard |
assign dqm |
New categories assigned: dqm @jfernan2,@andrius-k,@fioriNTU,@kmaeshima,@ErnestaP you have been requested to review this Pull request/Issue and eventually sign? Thanks |
I believe the changes are not affecting much the final result in this case, at least with 10 event stats of the workflows, it seems in this case that under/overflows are moving the residual mean closer to 0 in the y-axis |
merge |
+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 be automatically merged. |
PR description:
I stumbled upon the fact that the calls to the static member function
TH1::StatOverflows
in theFastTimerService
change some of the global TH1 settings, and can thus affect histograms produced by unrelated modules in the same job.The PR suggests a change to avoid this, while keeping the outputs of the
FastTimerService
unchanged.PR validation:
Verified that the mean/RMS of some of the
FastTimerService
outputs still include underflows and overflows after these updates (admittedly, a very thorough validation was not done).