-
Notifications
You must be signed in to change notification settings - Fork 172
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
fix!: Use ActsScalar
in binning tools
#3482
fix!: Use ActsScalar
in binning tools
#3482
Conversation
03e99ad
to
6d763b8
Compare
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.
Looks good overall, waiting for v37 to merge this.
6d763b8
to
382b37f
Compare
fe2827d
to
05f8805
Compare
The current binning tools use floats everywhere, which is prone to conversion warnings. This commit converts that code to use the `ActsScalar` type alias instead.
Quality Gate passedIssues Measures |
always interesting to see what triggers the 3 ttbar events to change |
Huh, that's peculiar. 🤔 |
Ultimately I think this changed the seeding a bit which then changes the track finding a bit. The plots don't scare me too much since we have very low stats there. What I am not sure about is IF we actually want to change the seeding here? @stephenswat @paulgessinger @asalzburger If that is clear I am happy to approve and bring this in. |
Regarding the IF, I have no strong opinion. It's annoying for the low stats, but maybe we should re-run with better stats. I will check the logs, how expensive the individual tests are, but if we are lucky we could upscale them at a cost of an extra minute or so :3 |
Why this affects the seeding is not entirely clear to me. I guess it could affect Fatras and then subsequently reconstruction. |
The current physmon tests take around 11-18 minutes. In the |
Isn't
I think we would need 100-1000 events so I would rather keep it as it is for now if we cannot reach that |
I was under the impression it uses the Grid for the internal binning, but I could be wrong. |
In the seeding we use the |
Invalidated by #3873. |
we could still have this with |
The current binning tools use floats everywhere, which is prone to conversion warnings. This commit converts that code to use the
ActsScalar
type alias instead.