Skip to content

Commit

Permalink
Move to Open Axis Bound
Browse files Browse the repository at this point in the history
  • Loading branch information
cvarni authored and cvarni committed Oct 9, 2024
1 parent cc83b72 commit bd645d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ template <typename external_spacepoint_t>
using CylindricalSpacePointGrid = Acts::Grid<
std::vector<const external_spacepoint_t*>,
Acts::Axis<Acts::AxisType::Equidistant, Acts::AxisBoundaryType::Closed>,
Acts::Axis<Acts::AxisType::Variable, Acts::AxisBoundaryType::Bound>,
Acts::Axis<Acts::AxisType::Variable, Acts::AxisBoundaryType::Bound>>;
Acts::Axis<Acts::AxisType::Variable, Acts::AxisBoundaryType::Open>,
Acts::Axis<Acts::AxisType::Variable, Acts::AxisBoundaryType::Open>>;

/// Cylindrical Binned Group
template <typename external_spacepoint_t>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ Acts::CylindricalSpacePointGridCreator::createGrid(
config.rBinEdges.end());
}

Axis<AxisType::Variable, AxisBoundaryType::Bound> zAxis(std::move(zValues));
Axis<AxisType::Variable, AxisBoundaryType::Bound> rAxis(std::move(rValues));
Axis<AxisType::Variable, AxisBoundaryType::Open> zAxis(std::move(zValues));
Axis<AxisType::Variable, AxisBoundaryType::Open> rAxis(std::move(rValues));
return Acts::CylindricalSpacePointGrid<external_spacepoint_t>(
std::make_tuple(std::move(phiAxis), std::move(zAxis), std::move(rAxis)));
}
Expand Down

0 comments on commit bd645d5

Please sign in to comment.