Skip to content

Commit

Permalink
test: no operator() and no testing
Browse files Browse the repository at this point in the history
  • Loading branch information
cvarni committed Sep 30, 2024
1 parent 10d8196 commit b98827f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Core/include/Acts/Clusterization/TimedClusterization.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ struct TimedConnect : public Acts::Ccl::DefaultConnect<Cell, GridDim> {
: Acts::Ccl::DefaultConnect<Cell, GridDim>(conn), timeTollerance(time) {}

ConnectResult operator()(const Cell& ref, const Cell& iter) const {
/*
Acts::Ccl::ConnectResult conRes =
Acts::Ccl::DefaultConnect<Cell, GridDim>::operator()(ref, iter);
if (conRes != Acts::Ccl::ConnectResult::eConn) {
Expand All @@ -44,7 +45,7 @@ struct TimedConnect : public Acts::Ccl::DefaultConnect<Cell, GridDim> {
if (deltaTime < timeTollerance) {
return Acts::Ccl::ConnectResult::eConn;
}

*/
return Acts::Ccl::ConnectResult::eNoConn;
}
};
Expand Down
2 changes: 1 addition & 1 deletion Tests/UnitTests/Core/Clusterization/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
add_unittest(Clusterization1D ClusterizationTests1D.cpp)
add_unittest(Clusterization2D ClusterizationTests2D.cpp)
add_unittest(TimedClusterization TimedClusterizationTests.cpp)
#add_unittest(TimedClusterization TimedClusterizationTests.cpp)

0 comments on commit b98827f

Please sign in to comment.