Skip to content

Commit

Permalink
fixing mistake made when cherry picking
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosie-Hasan committed Jan 22, 2025
1 parent c8fb6ef commit e9af305
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
4 changes: 1 addition & 3 deletions Core/include/Acts/Seeding/GbtsDataStorage.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ struct GbtsSP {
};
float phi() const { return m_phi; }
float r() const { return m_r; }
bool ClusterWidth() const { return m_ClusterWidth; }
float ClusterWidth() const { return m_ClusterWidth; }
};

template <typename space_point_t>
Expand Down Expand Up @@ -177,8 +177,6 @@ class GbtsDataStorage {
} else {
if (useClusterWidth) {
float cluster_width = sp.ClusterWidth();
// if (cluster_width == 0) {continue;} //catch for casses that dont have
// cluster width available
if (cluster_width > 0.2) {
return -3;
}
Expand Down
12 changes: 6 additions & 6 deletions Core/include/Acts/Seeding/SeedFinderGbts.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -303,12 +303,12 @@ void SeedFinderGbts<external_spacepoint_t>::runGbts_TrackFinder(
nEdges++;
}
} // loop over n2 (outer) nodes
} // loop over n1 (inner) nodes
} // loop over source eta bins
} // loop over dst eta bins
} // loop over L2(L1) layers
} // loop over dst layers
} // loop over the stages of doublet making
} // loop over n1 (inner) nodes
} // loop over source eta bins
} // loop over dst eta bins
} // loop over L2(L1) layers
} // loop over dst layers
} // loop over the stages of doublet making

std::vector<const GbtsNode<external_spacepoint_t>*> vNodes;

Expand Down

0 comments on commit e9af305

Please sign in to comment.