Public Member Functions | Public Attributes | Private Member Functions | Private Attributes | List of all members
cluster::DBScan3DAlg Class Reference

#include <DBScan3DAlg.h>

Public Member Functions

 DBScan3DAlg (fhicl::ParameterSet const &pset)
 
void init (const std::vector< art::Ptr< recob::SpacePoint >> &sps, art::FindManyP< recob::Hit > &hitFromSp)
 
void dbscan ()
 

Public Attributes

std::vector< point_tpoints
 

Private Member Functions

node_tcreate_node (unsigned int index)
 
int append_at_end (unsigned int index, epsilon_neighbours_t *en)
 
epsilon_neighbours_tget_epsilon_neighbours (unsigned int index)
 
void destroy_epsilon_neighbours (epsilon_neighbours_t *en)
 
int expand (unsigned int index, unsigned int cluster_id)
 
int spread (unsigned int index, epsilon_neighbours_t *seeds, unsigned int cluster_id)
 
float dist (point_t *a, point_t *b) const
 

Private Attributes

double epsilon
 
unsigned int minpts
 
double badchannelweight
 
unsigned int neighbors
 
std::map< geo::WireID, int > badchannelmap
 

Detailed Description

Definition at line 77 of file DBScan3DAlg.h.

Constructor & Destructor Documentation

cluster::DBScan3DAlg::DBScan3DAlg ( fhicl::ParameterSet const &  pset)

Definition at line 18 of file DBScan3DAlg.cxx.

19  : epsilon(pset.get< float >("epsilon"))
20  , minpts(pset.get<unsigned int>("minpts"))
21  , badchannelweight(pset.get<double>("badchannelweight"))
22  , neighbors(pset.get<unsigned int>("neighbors"))
23 {
24  // square epsilon to eliminate the use of sqrt later on
25  epsilon *= epsilon;
26 }
unsigned int minpts
Definition: DBScan3DAlg.h:92
unsigned int neighbors
Definition: DBScan3DAlg.h:94

Member Function Documentation

int cluster::DBScan3DAlg::append_at_end ( unsigned int  index,
epsilon_neighbours_t en 
)
private

Definition at line 77 of file DBScan3DAlg.cxx.

79 {
81  if (n == NULL) {
82  free(en);
83  return FAILURE;
84  }
85  if (en->head == NULL) {
86  en->head = n;
87  en->tail = n;
88  } else {
89  en->tail->next = n;
90  en->tail = n;
91  }
92  ++(en->num_members);
93  return SUCCESS;
94 }
node_t * next
Definition: DBScan3DAlg.h:65
unsigned int num_members
Definition: DBScan3DAlg.h:70
std::void_t< T > n
node_t * create_node(unsigned int index)
Definition: DBScan3DAlg.cxx:65
#define FAILURE
Definition: DBScan3DAlg.h:40
#define SUCCESS
Definition: DBScan3DAlg.h:39
node_t * cluster::DBScan3DAlg::create_node ( unsigned int  index)
private

Definition at line 65 of file DBScan3DAlg.cxx.

66 {
67  node_t *n = (node_t *) calloc(1, sizeof(node_t));
68  if (n == NULL)
69  perror("Failed to allocate node.");
70  else {
71  n->index = index;
72  n->next = NULL;
73  }
74  return n;
75 }
unsigned int index
Definition: DBScan3DAlg.h:64
node_t * next
Definition: DBScan3DAlg.h:65
std::void_t< T > n
void cluster::DBScan3DAlg::dbscan ( )

Definition at line 133 of file DBScan3DAlg.cxx.

134 {
135  unsigned int i, cluster_id = 0;
136  for (i = 0; i < points.size(); ++i) {
137  if (points[i].cluster_id == UNCLASSIFIED) {
138  if (expand(i, cluster_id) == CORE_POINT)
139  ++cluster_id;
140  }
141  }
142 }
#define UNCLASSIFIED
Definition: DBScan3DAlg.h:33
int expand(unsigned int index, unsigned int cluster_id)
#define CORE_POINT
Definition: DBScan3DAlg.h:36
std::vector< point_t > points
Definition: DBScan3DAlg.h:83
void cluster::DBScan3DAlg::destroy_epsilon_neighbours ( epsilon_neighbours_t en)
private

Definition at line 120 of file DBScan3DAlg.cxx.

121 {
122  if (en) {
123  node_t *t, *h = en->head;
124  while (h) {
125  t = h->next;
126  free(h);
127  h = t;
128  }
129  free(en);
130  }
131 }
node_t * next
Definition: DBScan3DAlg.h:65
float cluster::DBScan3DAlg::dist ( point_t a,
point_t b 
) const
private

Definition at line 207 of file DBScan3DAlg.cxx.

208 {
209  Double32_t const* a_xyz = a->sp->XYZ();
210  Double32_t const* b_xyz = b->sp->XYZ();
211  auto const nbadchannels = a->nbadchannels + b->nbadchannels;
212  float const dx = a_xyz[0] - b_xyz[0];
213  float const dy = a_xyz[1] - b_xyz[1];
214  float const dz = a_xyz[2] - b_xyz[2];
215  float const dist = cet::sum_of_squares(dx, dy, dz) - cet::square(nbadchannels * badchannelweight);
216  // Do not return a distance smaller than 0.
217  return std::max(dist, 0.f);
218 }
art::Ptr< recob::SpacePoint > sp
Definition: DBScan3DAlg.h:57
constexpr T sum_of_squares(T x, T y)
Definition: pow.h:139
constexpr T square(T x)
Definition: pow.h:21
float dist(point_t *a, point_t *b) const
static int max(int a, int b)
const Double32_t * XYZ() const
Definition: SpacePoint.h:76
unsigned int nbadchannels
Definition: DBScan3DAlg.h:58
int cluster::DBScan3DAlg::expand ( unsigned int  index,
unsigned int  cluster_id 
)
private

Definition at line 144 of file DBScan3DAlg.cxx.

146 {
147  int return_value = NOT_CORE_POINT;
150  if (seeds == NULL)
151  return FAILURE;
152 
153  if (seeds->num_members < minpts)
154  points[index].cluster_id = NOISE;
155  else {
156  points[index].cluster_id = cluster_id;
157  node_t *h = seeds->head;
158  while (h) {
159  points[h->index].cluster_id = cluster_id;
160  h = h->next;
161  }
162 
163  h = seeds->head;
164  while (h) {
165  spread(h->index, seeds, cluster_id);
166  h = h->next;
167  }
168 
169  return_value = CORE_POINT;
170  }
172  return return_value;
173 }
unsigned int minpts
Definition: DBScan3DAlg.h:92
unsigned int index
Definition: DBScan3DAlg.h:64
node_t * next
Definition: DBScan3DAlg.h:65
epsilon_neighbours_t * get_epsilon_neighbours(unsigned int index)
Definition: DBScan3DAlg.cxx:96
unsigned int num_members
Definition: DBScan3DAlg.h:70
#define NOT_CORE_POINT
Definition: DBScan3DAlg.h:37
#define CORE_POINT
Definition: DBScan3DAlg.h:36
std::vector< TrajPoint > seeds
Definition: DataStructs.cxx:13
#define FAILURE
Definition: DBScan3DAlg.h:40
std::vector< point_t > points
Definition: DBScan3DAlg.h:83
int spread(unsigned int index, epsilon_neighbours_t *seeds, unsigned int cluster_id)
#define NOISE
Definition: DBScan3DAlg.h:34
void destroy_epsilon_neighbours(epsilon_neighbours_t *en)
epsilon_neighbours_t * cluster::DBScan3DAlg::get_epsilon_neighbours ( unsigned int  index)
private

Definition at line 96 of file DBScan3DAlg.cxx.

97 {
99  calloc(1, sizeof(epsilon_neighbours_t));
100  if (en == NULL) {
101  perror("Failed to allocate epsilon neighbours.");
102  return en;
103  }
104  for (unsigned int i = 0; i < points.size(); ++i) {
105  if (i == index)
106  continue;
107  if (dist(&points[index], &points[i]) > epsilon)
108  continue;
109  else {
110  if (append_at_end(i, en) == FAILURE) {
112  en = NULL;
113  break;
114  }
115  }
116  }
117  return en;
118 }
float dist(point_t *a, point_t *b) const
int append_at_end(unsigned int index, epsilon_neighbours_t *en)
Definition: DBScan3DAlg.cxx:77
#define FAILURE
Definition: DBScan3DAlg.h:40
std::vector< point_t > points
Definition: DBScan3DAlg.h:83
void destroy_epsilon_neighbours(epsilon_neighbours_t *en)
void cluster::DBScan3DAlg::init ( const std::vector< art::Ptr< recob::SpacePoint >> &  sps,
art::FindManyP< recob::Hit > &  hitFromSp 
)

Definition at line 29 of file DBScan3DAlg.cxx.

30 {
31 
32  if (badchannelmap.empty()){
35  // build a map to count bad channels around each wire ID
36  for (auto &pid : geom->IteratePlaneIDs()){
37  for (auto& wid1: geom->IterateWireIDs(pid)) {
38  unsigned int nbadchs = 0;
39  for (auto& wid2: geom->IterateWireIDs(pid)) {
40  if (wid1==wid2) continue;
41  if (util::absDiff(wid1.Wire,wid2.Wire)<neighbors &&
42  !channelStatus.IsGood(geom->PlaneWireToChannel(wid2))) ++nbadchs;
43  }
44  badchannelmap[wid1] = nbadchs;
45  }
46  }
47  std::cout<<"Done building bad channel map."<<std::endl;
48  }
49 
50  points.clear();
51  for (auto& spt : sps){
52  point_t point;
53  point.sp = spt;
54  point.cluster_id = UNCLASSIFIED;
55  // count bad channels
56  point.nbadchannels = 0;
57  auto &hits = hitFromSp.at(spt.key());
58  for (auto & hit : hits){
59  point.nbadchannels += badchannelmap[hit->WireID()];
60  }
61  points.push_back(point);
62  }
63 }
std::map< geo::WireID, int > badchannelmap
Definition: DBScan3DAlg.h:95
art::Ptr< recob::SpacePoint > sp
Definition: DBScan3DAlg.h:57
IteratorBox< plane_id_iterator,&GeometryCore::begin_plane_id,&GeometryCore::end_plane_id > IteratePlaneIDs() const
Enables ranged-for loops on all plane IDs of the detector.
IteratorBox< wire_id_iterator,&GeometryCore::begin_wire_id,&GeometryCore::end_wire_id > IterateWireIDs() const
Enables ranged-for loops on all wire IDs of the detector.
int cluster_id
Definition: DBScan3DAlg.h:59
#define UNCLASSIFIED
Definition: DBScan3DAlg.h:33
virtual bool IsGood(raw::ChannelID_t channel) const
Returns whether the specified channel is physical and good.
Class providing information about the quality of channels.
Description of geometry of one entire detector.
Detector simulation of raw signals on wires.
constexpr auto absDiff(A const &a, B const &b)
Returns the absolute value of the difference between two values.
Definition: NumericUtils.h:43
raw::ChannelID_t PlaneWireToChannel(WireID const &wireid) const
Returns the ID of the TPC channel connected to the specified wire.
unsigned int neighbors
Definition: DBScan3DAlg.h:94
std::vector< point_t > points
Definition: DBScan3DAlg.h:83
unsigned int nbadchannels
Definition: DBScan3DAlg.h:58
QTextStream & endl(QTextStream &s)
int cluster::DBScan3DAlg::spread ( unsigned int  index,
epsilon_neighbours_t seeds,
unsigned int  cluster_id 
)
private

Definition at line 175 of file DBScan3DAlg.cxx.

178 {
181  if (spread == NULL)
182  return FAILURE;
183  if (spread->num_members >= minpts) {
184  node_t *n = spread->head;
185  point_t *d;
186  while (n) {
187  d = &points[n->index];
188  if (d->cluster_id == NOISE ||
189  d->cluster_id == UNCLASSIFIED) {
190  if (d->cluster_id == UNCLASSIFIED) {
191  if (append_at_end(n->index, seeds)
192  == FAILURE) {
194  return FAILURE;
195  }
196  }
197  d->cluster_id = cluster_id;
198  }
199  n = n->next;
200  }
201  }
202 
204  return SUCCESS;
205 }
unsigned int minpts
Definition: DBScan3DAlg.h:92
unsigned int index
Definition: DBScan3DAlg.h:64
node_t * next
Definition: DBScan3DAlg.h:65
epsilon_neighbours_t * get_epsilon_neighbours(unsigned int index)
Definition: DBScan3DAlg.cxx:96
unsigned int num_members
Definition: DBScan3DAlg.h:70
int cluster_id
Definition: DBScan3DAlg.h:59
std::void_t< T > n
#define UNCLASSIFIED
Definition: DBScan3DAlg.h:33
int append_at_end(unsigned int index, epsilon_neighbours_t *en)
Definition: DBScan3DAlg.cxx:77
#define FAILURE
Definition: DBScan3DAlg.h:40
std::vector< point_t > points
Definition: DBScan3DAlg.h:83
int spread(unsigned int index, epsilon_neighbours_t *seeds, unsigned int cluster_id)
#define NOISE
Definition: DBScan3DAlg.h:34
void destroy_epsilon_neighbours(epsilon_neighbours_t *en)
#define SUCCESS
Definition: DBScan3DAlg.h:39

Member Data Documentation

std::map<geo::WireID, int> cluster::DBScan3DAlg::badchannelmap
private

Definition at line 95 of file DBScan3DAlg.h.

double cluster::DBScan3DAlg::badchannelweight
private

Definition at line 93 of file DBScan3DAlg.h.

double cluster::DBScan3DAlg::epsilon
private

Definition at line 91 of file DBScan3DAlg.h.

unsigned int cluster::DBScan3DAlg::minpts
private

Definition at line 92 of file DBScan3DAlg.h.

unsigned int cluster::DBScan3DAlg::neighbors
private

Definition at line 94 of file DBScan3DAlg.h.

std::vector<point_t> cluster::DBScan3DAlg::points

Definition at line 83 of file DBScan3DAlg.h.


The documentation for this class was generated from the following files: