Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cvarni committed Oct 4, 2024
1 parent 0c74cf9 commit 439653d
Showing 1 changed file with 2 additions and 5 deletions.
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 zAxis(std::move(zValues));
Axis rAxis(std::move(rValues));
return Acts::CylindricalSpacePointGrid<external_spacepoint_t>(
std::make_tuple(std::move(phiAxis), std::move(zAxis), std::move(rAxis)));
}
Expand Down Expand Up @@ -200,9 +200,6 @@ void Acts::CylindricalSpacePointGridCreator::fillGrid(
continue;
}

// store x,y,z values in extent
rRangeSPExtent.extend({spX, spY, spZ});

// fill rbins into grid
std::size_t globIndex = grid.globalBinFromPosition(
Acts::Vector3{sp.phi(), sp.z(), sp.radius()});
Expand Down

0 comments on commit 439653d

Please sign in to comment.