Function larflow::reco::cluster_sdbscan_spacepoints

Function Documentation

void larflow::reco::cluster_sdbscan_spacepoints(const std::vector<std::vector<float>> &hit_v, std::vector<cluster_t> &cluster_v, const float maxdist, const int minsize, const int maxkd)

cluster spacepoints represented as vector<float> with simple DBScan external library

This is preferred to above.

Parameters
  • hit_v: Vector of larflow3dhit
  • cluster_v: Container of larflow::reco::cluster_t objects made
  • maxdist: maximum distance two points can be connected
  • minsize: minimum size of cluster
  • maxkd: maximum number of connections a node can have