Skip to content

Commit

Permalink
Merge pull request #45999 from makortel/patch-6
Browse files Browse the repository at this point in the history
Fix a compilation warning in TracksterLinkingbySkeletons in DBG_X
  • Loading branch information
cmsbuild authored Sep 25, 2024
2 parents cb70def + 7aa19b3 commit 42e150e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RecoHGCal/TICL/plugins/TracksterLinkingbySkeletons.cc
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ bool TracksterLinkingbySkeletons::areCompatible(const ticl::Trackster &myTrackst
LogDebug("TracksterLinkingbySkeletons") << "Distance between closest point " << d << " Distance in z "
<< max_z_distance_closest_points_[isEE] << std::endl;
bool isInCyl = isInCylinder(mySkeleton, otherSkeleton, cylinder_radius_sqr_[isEE]);
LogDebug("TracksterLinkingbySkeletons") << "Two Points are in Cylinder " << isInCylinder << std::endl;
LogDebug("TracksterLinkingbySkeletons") << "Two Points are in Cylinder " << isInCyl << std::endl;
if (isInCyl) {
LogDebug("TracksterLinkingbySkeletons") << "\t\t\t Linked! " << d << std::endl;
}
Expand Down

0 comments on commit 42e150e

Please sign in to comment.