ATTPCROOT  0.3.0-alpha
A ROOT-based framework for analyzing data from active target detectors
dnn.h
Go to the documentation of this file.
1 //
2 // dnn.h
3 // Functions for computing the characteristic length dnn
4 //
5 // Author: Jens Wilberg, Lukas Aymans, Christoph Dalitz
6 // Date: 2018-08-30
7 // License: see ../LICENSE
8 //
9 
10 #ifndef DNN_H
11 #define DNN_H
12 class PointCloud;
13 
14 // compute first quartile of the mean squared distance from the points
15 double first_quartile(const PointCloud &cloud);
16 
17 #endif
first_quartile
double first_quartile(const PointCloud &cloud)
Definition: dnn.cxx:63
PointCloud
Definition: pointcloud.h:60