Skip to content
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: Remove obsolete forward declaration AbstractVolume #3057

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Core/include/Acts/Visualization/GeometryView3D.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ class Surface;
class SurfaceArray;
class TrackingVolume;
struct Polyhedron;
class AbstractVolume;
class IVisualization3D;

namespace Experimental {
Expand Down Expand Up @@ -78,7 +77,7 @@ struct GeometryView3D {
const ViewConfig& gridConfig = s_viewGrid,
const std::string& outputDir = ".");

/// Helper method to draw AbstractVolume objects
/// Helper method to draw Volume objects
///
/// @param [in,out] helper The visualization helper
/// @param volume The volume to be drawn
Expand Down Expand Up @@ -124,7 +123,7 @@ struct GeometryView3D {
const ViewConfig& unconnected = ViewConfig({255, 0, 0}),
const ViewConfig& viewConfig = s_viewSensitive);

/// Helper method to draw AbstractVolume objects
/// Helper method to draw Layer objects
///
/// @param [in,out] helper The visualization helper
/// @param layer The tracking layer to be drawn
Expand All @@ -140,7 +139,7 @@ struct GeometryView3D {
const ViewConfig& gridConfig = s_viewGrid,
const std::string& outputDir = ".");

/// Helper method to draw AbstractVolume objects
/// Helper method to draw TrackingVolume objects
///
/// @param [in,out] helper The visualization helper
/// @param tVolume The tracking volume to be drawn
Expand Down
Loading