Skip to content

Commit

Permalink
Added couple of ToDo comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Valerio Pia committed Oct 15, 2024
1 parent cdef53d commit d071dec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/SANDTrackletFinder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ void TrackletFinder::ComputeDriftTime()
}
}

// To Do: find a minimizier able to escape local minima
std::vector<TVectorD> TrackletFinder::FindTracklets()
{
std::vector<TVectorD> minima;
Expand Down Expand Up @@ -188,6 +189,7 @@ std::vector<TVectorD> TrackletFinder::FindTracklets()
double x_width = _cells_intersections[1].X() - _cells_intersections[0].X();
double y_width = _cells_intersections[1].Y() - _cells_intersections[0].Y();

// To Do: should be a config parameter
int subdivisions = 3;
double x_sub_width = x_width / subdivisions;
double y_sub_width = y_width / subdivisions;
Expand Down

0 comments on commit d071dec

Please sign in to comment.