-
Notifications
You must be signed in to change notification settings - Fork 178
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
feat: middle SP z selection as result of grid binning #3286
Conversation
📊: Physics performance monitoring for e403cd1physmon summary
|
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.
No objections from my side - pinging @LuisFelipeCoelho
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3286 +/- ##
=======================================
Coverage 47.34% 47.35%
=======================================
Files 511 511
Lines 30273 30270 -3
Branches 14686 14684 -2
=======================================
Hits 14333 14333
+ Misses 5400 5397 -3
Partials 10540 10540 ☔ View full report in Codecov by Sentry. |
I only added two questions, but besides that it looks good to me |
) This is trying to simplify the middle space point selection process during seeding. As of now we define a z-range validity for the middle space point candidate and when we loop on all the middle candidates we check the value of the z coordinate. This will do the same, but the selection on the z coordinate would be a consequence of the grid binning. In other words, this adds two new grid bins in the z dimension (covering the range `2700 < |z| < 3000 mm`). These bins will be skipped during grid iteration as middle candidates. Other parameters are adapted accordingly in order to return the same seeds as before. Tagging @noemina @LuisFelipeCoelho @paulgessinger and @andiwand Eventually, we may want to do the same for the r-coordinate and completely remove the checks for the middles space point validity
) This is trying to simplify the middle space point selection process during seeding. As of now we define a z-range validity for the middle space point candidate and when we loop on all the middle candidates we check the value of the z coordinate. This will do the same, but the selection on the z coordinate would be a consequence of the grid binning. In other words, this adds two new grid bins in the z dimension (covering the range `2700 < |z| < 3000 mm`). These bins will be skipped during grid iteration as middle candidates. Other parameters are adapted accordingly in order to return the same seeds as before. Tagging @noemina @LuisFelipeCoelho @paulgessinger and @andiwand Eventually, we may want to do the same for the r-coordinate and completely remove the checks for the middles space point validity
This is trying to simplify the middle space point selection process during seeding. As of now we define a z-range validity for the middle space point candidate and when we loop on all the middle candidates we check the value of the z coordinate.
This will do the same, but the selection on the z coordinate would be a consequence of the grid binning.
In other words, this adds two new grid bins in the z dimension (covering the range
2700 < |z| < 3000 mm
). These bins will be skipped during grid iteration as middle candidates.Other parameters are adapted accordingly in order to return the same seeds as before.
Tagging @noemina @LuisFelipeCoelho @paulgessinger and @andiwand
Eventually, we may want to do the same for the r-coordinate and completely remove the checks for the middles space point validity