APRILContent
Algorithm of Particle Reconstruction for ILC - implementation with PandoraSDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations
dbscan.h
Go to the documentation of this file.
1 
3 #ifndef APRIL_DBSCAN_H
4 #define APRIL_DBSCAN_H
5 
6 // this an example to use mlpack and dlib
7 // For dlib, we have to define __COMPILE_DLIB__ from cmake configuration.
8 
9 namespace april_content
10 {
11 
13 {
14 public:
15 
16  APRILDBSCAN();
17 
18 #if __COMPILE_DLIB__
19  void DoClustering();
20  void DoGraph();
21 #endif
22 
23 private:
24 
25 };
26 
27 }
28 
29 #endif
Definition: dbscan.h:12