density_clustering.hpp
Go to the documentation of this file.
std::vector< std::size_t > assign_low_density_frames(const std::vector< std::size_t > &initial_clustering, const Neighborhood &nh_high_dens, const std::vector< float > &free_energy)
Definition: density_clustering.cpp:345
std::vector< std::size_t > normalized_cluster_names(std::size_t first_frame_above_threshold, std::vector< std::size_t > clustering, std::vector< FreeEnergy > &fe_sorted)
return clustered trajectory with new, distinct cluster names.
Definition: density_clustering.cpp:437
Tools mainly for IO and some other functions.
double compute_sigma2(const Neighborhood &nh)
Definition: density_clustering.cpp:334
const int N_NEIGHBOR_BOXES
number of neigbor boxes in 2D grid (including center box).
Definition: density_clustering.hpp:68
bool is_valid_box(const Box box, const BoxGrid &grid)
Definition: density_clustering.cpp:97
std::set< std::size_t > high_density_neighborhood(const float *coords, const std::size_t n_cols, const std::vector< FreeEnergy > &sorted_fe, const std::size_t i_frame, const std::size_t limit, const float max_dist)
Definition: density_clustering.cpp:292
bool lump_initial_clusters(const std::set< std::size_t > &local_nh, std::size_t &distinct_name, std::vector< std::size_t > &clustering, const std::vector< FreeEnergy > &fe_sorted, std::size_t first_frame_above_threshold)
lump clusters based on distance threshold in screening process
Definition: density_clustering.cpp:506
void main(boost::program_options::variables_map args)
user interface and controlling function for density-based geometric clustering.
Definition: density_clustering.cpp:559
Clustering::Tools::Neighborhood Neighborhood
map frame id to neighbors
Definition: density_clustering.hpp:58
std::map< Box, std::vector< int > > boxes
the boxes with a list of assigned frame ids
Definition: density_clustering.hpp:91
std::tuple< Neighborhood, Neighborhood > nearest_neighbors(const float *coords, const std::size_t n_rows, const std::size_t n_cols, const std::vector< float > &free_energy)
Definition: density_clustering.cpp:230
std::pair< std::size_t, float > Neighbor
matches neighbor's frame id to distance
Definition: tools.hpp:64
std::map< std::size_t, Clustering::Tools::Neighbor > Neighborhood
map frame id to neighbors
Definition: tools.hpp:66
std::tuple< std::vector< std::size_t >, std::size_t, double, std::vector< FreeEnergy >, std::set< std::size_t >, std::size_t > prepare_initial_clustering(const std::vector< float > &free_energy, const Neighborhood &nh, const float free_energy_threshold, const std::size_t n_rows, const std::vector< std::size_t > initial_clusters)
Definition: density_clustering.cpp:387
BoxGrid compute_box_grid(const float *coords, const std::size_t n_rows, const std::size_t n_cols, const float radius)
Definition: density_clustering.cpp:41
std::vector< std::size_t > calculate_populations(const float *coords, const std::size_t n_rows, const std::size_t n_cols, const float radius)
calculate population of n-dimensional hypersphere per frame for one fixed radius. ...
Definition: density_clustering.cpp:107
constexpr Box neighbor_box(const Box center, const int i_neighbor)
Definition: density_clustering.cpp:91
void screening_log(const double sigma2, const std::size_t first_frame_above_threshold, const std::vector< FreeEnergy > &fe_sorted)
log output for screening steps
Definition: density_clustering.cpp:362
std::vector< float > calculate_free_energies(const std::vector< std::size_t > &pops)
Definition: density_clustering.cpp:197
std::vector< FreeEnergy > sorted_free_energies(const std::vector< float > &fe)
Definition: density_clustering.cpp:214
bool has2digits(float val)
check if float has at maximum two digits
Definition: density_clustering.cpp:500
std::pair< std::size_t, float > FreeEnergy
matches frame id to free energy
Definition: density_clustering.hpp:54
std::array< int, 2 > Box
encodes 2D box for box-assisted search algorithm
Definition: density_clustering.hpp:60
Clustering::Tools::Neighbor Neighbor
matches neighbor's frame id to distance
Definition: density_clustering.hpp:56
std::vector< Box > assigned_box
matching frame id to the frame's assigned box
Definition: density_clustering.hpp:89
bool compare2DVector(const std::pair< std::size_t, std::size_t > &p1, const std::pair< std::size_t, std::size_t > &p2)
compare two two dimensional pairs by their second entry
Definition: density_clustering.cpp:495
std::vector< std::size_t > sorted_cluster_names(std::vector< std::size_t > clustering)
sorts the cluster by decreasing population and renames them from 1..N
Definition: density_clustering.cpp:458