ATTPCROOT
0.3.0-alpha
A ROOT-based framework for analyzing data from active target detectors
|
#include "output.h"
#include "pointcloud.h"
#include <stdint.h>
#include <cstdlib>
#include <iostream>
#include <memory>
#include <set>
#include <sstream>
#include <string>
#include <vector>
Go to the source code of this file.
Functions | |
unsigned long | compute_cluster_colour (size_t cluster_index) |
void | find_min_max_point (const PointCloud &cloud, Point &min, Point &max) |
bool | debug_gnuplot (const PointCloud &cloud, const PointCloud &cloud_smooth, const char *fname) |
bool | cloud_to_csv (const PointCloud &cloud, const char *fname) |
void | clusters_to_gnuplot (const PointCloud &cloud, const std::vector< cluster_t > &clusters) |
void | clusters_to_csv (const PointCloud &cloud) |
bool cloud_to_csv | ( | const PointCloud & | cloud, |
const char * | fname | ||
) |
Definition at line 141 of file output.cxx.
void clusters_to_csv | ( | const PointCloud & | cloud | ) |
Definition at line 270 of file output.cxx.
void clusters_to_gnuplot | ( | const PointCloud & | cloud, |
const std::vector< cluster_t > & | clusters | ||
) |
Definition at line 165 of file output.cxx.
unsigned long compute_cluster_colour | ( | size_t | cluster_index | ) |
Definition at line 28 of file output.cxx.
bool debug_gnuplot | ( | const PointCloud & | cloud, |
const PointCloud & | cloud_smooth, | ||
const char * | fname | ||
) |
Definition at line 75 of file output.cxx.
void find_min_max_point | ( | const PointCloud & | cloud, |
Point & | min, | ||
Point & | max | ||
) |
Definition at line 45 of file output.cxx.