#ifndef TOOLS_H #define TOOLS_H #include "Parameters.h" void find_planet_particles(int *flag_planet, int ID0, double R0); void clump_finding(int count_c[NSIZEX], int c_index[][NSIZEX], double m_clump[NSIZEX]); void output_COM_of_clumps(int count_c[NSIZEX], int c_index[][NSIZEX], double m_clump[NSIZEX]); void output_mass_of_clumps(int count_c[NSIZEX], int c_index[][NSIZEX], double m_clump[NSIZEX]); void output_clumps(int count_c[NSIZEX], int c_index[][NSIZEX], double m_clump[NSIZEX]); int check_if_particles_are_in_touch(struct particle p1, struct particle p2); #endif