-
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
feat: Gen 3 portal shells #3564
Merged
kodiakhq
merged 26 commits into
acts-project:main
from
paulgessinger:feat/gen3-portal-shells
Oct 4, 2024
Merged
feat: Gen 3 portal shells #3564
kodiakhq
merged 26 commits into
acts-project:main
from
paulgessinger:feat/gen3-portal-shells
Oct 4, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Open
paulgessinger
force-pushed
the
feat/gen3-portal-shells
branch
2 times, most recently
from
August 28, 2024 07:48
fd8bf1f
to
5ba9615
Compare
paulgessinger
force-pushed
the
feat/gen3-portal-shells
branch
4 times, most recently
from
September 20, 2024 12:32
5e90245
to
6bec609
Compare
paulgessinger
force-pushed
the
feat/gen3-portal-shells
branch
from
October 1, 2024 08:32
6bec609
to
96b1468
Compare
paulgessinger
force-pushed
the
feat/gen3-portal-shells
branch
from
October 1, 2024 09:02
96b1468
to
7f517d4
Compare
fixup: PortalShell.cpp in cmakelists
This works for single cylinders and for cylinder stacks
E.g. the cylinder stack shell will return nullptr on phi plane portal access, instead of throwing an exception.
paulgessinger
force-pushed
the
feat/gen3-portal-shells
branch
from
October 2, 2024 08:06
426b2ef
to
7e079e5
Compare
andiwand
approved these changes
Oct 2, 2024
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.
LGTM 👍 left two conceptional questions
Open
Open
Quality Gate passedIssues Measures |
acts-project-service
added
the
Fails Athena tests
This PR causes a failure in the Athena tests
label
Oct 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Component - Core
Affects the Core module
Fails Athena tests
This PR causes a failure in the Athena tests
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Part of #3502
Blocked by:
This pull request introduces the new
PortalShell
classes to the Acts geometry module, along with corresponding unit tests. The changes are primarily focused on adding new functionality for handling portal shells in tracking volumes.New Functionality:
Core/include/Acts/Geometry/PortalShell.hpp
: Introduced newPortalShell
classes, includingPortalShellBase
,CylinderPortalShell
,SingleCylinderPortalShell
, andCylinderStackPortalShell
. These classes provide interfaces and implementations for managing portals within cylindrical tracking volumes.Core/src/Geometry/PortalShell.cpp
: Implemented the methods for the newPortalShell
classes, including portal management and validation logic.Build System Updates:
Core/src/Geometry/CMakeLists.txt
: Added the newPortalShell.cpp
source file to the build system.Tests/UnitTests/Core/Geometry/CMakeLists.txt
: Added a new unit test forPortalShell
to ensure the new functionality is properly tested.