DUNE-DAQ
DUNE Trigger and Data Acquisition software
|
#include <dbscan.hpp>
Public Member Functions | |
Cluster (int index_) | |
bool | maybe_add_new_hit (Hit *new_hit, float eps, int minPts) |
void | add_hit (Hit *h) |
void | steal_hits (Cluster &other) |
Public Attributes | |
int | index { -1 } |
Completeness | completeness { Completeness::kIncomplete } |
float | latest_time { 0 } |
Hit * | latest_core_point { nullptr } |
HitSet | hits |
Definition at line 22 of file dbscan.hpp.
|
inline |
Definition at line 24 of file dbscan.hpp.
void triggeralgs::dbscan::Cluster::add_hit | ( | Hit * | h | ) |
Definition at line 63 of file dbscan.cpp.
bool triggeralgs::dbscan::Cluster::maybe_add_new_hit | ( | Hit * | new_hit, |
float | eps, | ||
int | minPts ) |
Definition at line 31 of file dbscan.cpp.
void triggeralgs::dbscan::Cluster::steal_hits | ( | Cluster & | other | ) |
Definition at line 76 of file dbscan.cpp.
Completeness triggeralgs::dbscan::Cluster::completeness { Completeness::kIncomplete } |
Definition at line 32 of file dbscan.hpp.
HitSet triggeralgs::dbscan::Cluster::hits |
Definition at line 38 of file dbscan.hpp.
int triggeralgs::dbscan::Cluster::index { -1 } |
Definition at line 28 of file dbscan.hpp.
Hit* triggeralgs::dbscan::Cluster::latest_core_point { nullptr } |
Definition at line 36 of file dbscan.hpp.
float triggeralgs::dbscan::Cluster::latest_time { 0 } |
Definition at line 34 of file dbscan.hpp.