Skip to content

Commit

Permalink
Update BinUtility.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
AJPfleger committed Nov 14, 2023
1 parent 534bddf commit cab0aca
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions Core/include/Acts/Utilities/BinUtility.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,21 +228,6 @@ class BinUtility {
return true;
}

/// Check if bin is inside from Vector2 - no optional transform applied
///
/// @param lposition is the local position to be evaluated
/// @return is a boolean check
bool inside(const Vector2& lposition) const {
return true;
std::vector<BinningData>::const_iterator bdIter = m_binningData.begin();
for (; bdIter != m_binningData.end(); ++bdIter) {
if (!(*bdIter).inside(lposition)) {
return false;
}
}
return true;
}

/// First bin maximal value
/// @return the dimension of the binning data
std::size_t dimensions() const { return m_binningData.size(); }
Expand Down

0 comments on commit cab0aca

Please sign in to comment.