Skip to content

Commit

Permalink
Merge branch 'main' into ReseverMemoryForTracks
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Apr 9, 2024
2 parents 47e7b11 + 2bdcb77 commit d54920e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Core/include/Acts/TrackFinding/CombinatorialKalmanFilter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -654,8 +654,7 @@ class CombinatorialKalmanFilter {
// The surface could be either sensitive or passive
bool isSensitive = (surface->associatedDetectorElement() != nullptr);
bool isMaterial = (surface->surfaceMaterial() != nullptr);
std::string type = isSensitive ? "sensitive" : "passive";
ACTS_VERBOSE("Detected " << type
ACTS_VERBOSE("Detected " << (isSensitive ? "sensitive" : "passive")
<< " surface: " << surface->geometryId());
if (isSensitive) {
// Increment of number of passed sensitive surfaces
Expand Down

0 comments on commit d54920e

Please sign in to comment.