-
Notifications
You must be signed in to change notification settings - Fork 168
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
refactor!: Remove deprecated API #3591
Conversation
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.
On a side-note: I think we didn't include #include "Acts/Surfaces/CurvilinearSurface.hpp"
in each affected file? Also some #include "Acts/Surfaces/PlaneSurface.hpp"
might be unused. I hope we manage a reliable IWYU-solution one day :3
Quality Gate passedIssues Measures |
Removes deprecated API
PlaneSurface(const Vector3& center, const Vector3& normal);
is replaced byCurvilinearSurface(const Vector3& center, const Vector3& normal).planeSurface()
Intersection::operator bool()
is replaced byIntersection::isValid()
ObjectIntersection::operator bool()
is replaced byObjectIntersection::isValid()
Vertex::setPosition(const Vector3& position, ActsScalar time)
is removed and can be replaced bysetPosition
andsetTime
orsetFullPosition