Skip to content

Commit

Permalink
no operator
Browse files Browse the repository at this point in the history
  • Loading branch information
cvarni committed Sep 30, 2024
1 parent b98827f commit 9dd4441
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Core/include/Acts/Clusterization/TimedClusterization.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ struct TimedConnect : public Acts::Ccl::DefaultConnect<Cell, GridDim> {
explicit TimedConnect(Acts::ActsScalar time, bool conn = true)
// requires(GridDim == 2)
: 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 @@ -45,11 +45,12 @@ struct TimedConnect : public Acts::Ccl::DefaultConnect<Cell, GridDim> {
if (deltaTime < timeTollerance) {
return Acts::Ccl::ConnectResult::eConn;
}
*/
return Acts::Ccl::ConnectResult::eNoConn;
}
*/
};

} // namespace Acts::Ccl

#include "Acts/Clusterization/TimedClusterization.ipp"
//#include "Acts/Clusterization/TimedClusterization.ipp"

0 comments on commit 9dd4441

Please sign in to comment.