Skip to content

Commit

Permalink
re-introduce TrackingVolume python binding
Browse files Browse the repository at this point in the history
  • Loading branch information
asalzburger committed Jul 12, 2023
1 parent 1e0a3a1 commit dae9c4f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Examples/Python/src/Geometry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ void addGeometry(Context& ctx) {
&Acts::TrackingGeometry::highestTrackingVolumeShared);
}

{
py::class_<Acts::TrackingVolume, Acts::Volume,
std::shared_ptr<Acts::TrackingVolume>>(m, "TrackingVolume");
}

{
py::class_<Acts::Volume, std::shared_ptr<Acts::Volume>>(m, "Volume")
.def_static(
Expand Down

0 comments on commit dae9c4f

Please sign in to comment.