diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index a3da1b4f8edc8c1af225ac941441a92b14a13f99..c6b3046d2d3591c937dfd98cf75fb7697b90110f 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -776,7 +776,7 @@ INPUT += @top_srcdir@/src/star_formation/EAGLE INPUT += @top_srcdir@/src/tracers/EAGLE INPUT += @top_srcdir@/src/stars/EAGLE INPUT += @top_srcdir@/src/feedback/EAGLE -INPUT += @top_srcdir@/src/black_holes/Default +INPUT += @top_srcdir@/src/black_holes/EAGLE # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses diff --git a/src/black_holes/Default/black_holes_iact.h b/src/black_holes/Default/black_holes_iact.h index e1e075a6f912cf888575e6b2f73ce6b2982831de..4aeb27b4e13a614036962a564d99a80c6990ebec 100644 --- a/src/black_holes/Default/black_holes_iact.h +++ b/src/black_holes/Default/black_holes_iact.h @@ -26,10 +26,11 @@ * @param dx Comoving vector separating both particles (pi - pj). * @param hi Comoving smoothing-length of particle i. * @param hj Comoving smoothing-length of particle j. - * @param bi First bparticle. - * @param pj Second particle (not updated). - * @param a Current scale factor. - * @param H Current Hubble parameter. + * @param bi First particle (black hole). + * @param pj Second particle (gas, not updated). + * @param xpj The extended data of the second particle (not updated). + * @param cosmo The cosmological model. + * @param ti_current Current integer time value (for random numbers). */ __attribute__((always_inline)) INLINE static void runner_iact_nonsym_bh_density( const float r2, const float *dx, const float hi, const float hj, @@ -69,10 +70,11 @@ __attribute__((always_inline)) INLINE static void runner_iact_nonsym_bh_density( * @param dx Comoving vector separating both particles (pi - pj). * @param hi Comoving smoothing-length of particle i. * @param hj Comoving smoothing-length of particle j. - * @param bi First bparticle. - * @param pj Second particle (not updated). - * @param a Current scale factor. - * @param H Current Hubble parameter. + * @param bi First particle (black hole). + * @param pj Second particle (gas) + * @param xpj The extended data of the second particle. + * @param cosmo The cosmological model. + * @param ti_current Current integer time value (for random numbers). */ __attribute__((always_inline)) INLINE static void runner_iact_nonsym_bh_feedback(const float r2, const float *dx, const float hi, diff --git a/src/black_holes/EAGLE/black_holes_iact.h b/src/black_holes/EAGLE/black_holes_iact.h index 267daa91190a70eefe18051bf60ef49c1c24b8ca..3174dea57ade8a9e3a1d9db3aa54cda428e0bc9f 100644 --- a/src/black_holes/EAGLE/black_holes_iact.h +++ b/src/black_holes/EAGLE/black_holes_iact.h @@ -30,10 +30,11 @@ * @param dx Comoving vector separating both particles (pi - pj). * @param hi Comoving smoothing-length of particle i. * @param hj Comoving smoothing-length of particle j. - * @param bi First bparticle. - * @param pj Second particle (not updated). - * @param a Current scale factor. - * @param H Current Hubble parameter. + * @param bi First particle (black hole). + * @param pj Second particle (gas, not updated). + * @param xpj The extended data of the second particle (not updated). + * @param cosmo The cosmological model. + * @param ti_current Current integer time value (for random numbers). */ __attribute__((always_inline)) INLINE static void runner_iact_nonsym_bh_density( const float r2, const float *dx, const float hi, const float hj, @@ -99,10 +100,11 @@ __attribute__((always_inline)) INLINE static void runner_iact_nonsym_bh_density( * @param dx Comoving vector separating both particles (pi - pj). * @param hi Comoving smoothing-length of particle i. * @param hj Comoving smoothing-length of particle j. - * @param bi First bparticle. - * @param pj Second particle (not updated). - * @param a Current scale factor. - * @param H Current Hubble parameter. + * @param bi First particle (black hole). + * @param pj Second particle (gas) + * @param xpj The extended data of the second particle. + * @param cosmo The cosmological model. + * @param ti_current Current integer time value (for random numbers). */ __attribute__((always_inline)) INLINE static void runner_iact_nonsym_bh_feedback(const float r2, const float *dx, const float hi, diff --git a/src/star_formation/EAGLE/star_formation.h b/src/star_formation/EAGLE/star_formation.h index 4d1013c0f6dd13552cb533aa942f47dd588a469c..aaec0197100ab84003180f77ceb2570b5d342cbe 100644 --- a/src/star_formation/EAGLE/star_formation.h +++ b/src/star_formation/EAGLE/star_formation.h @@ -201,7 +201,7 @@ INLINE static double EOS_pressure(const double n_H, * @param hydro_props The properties of the hydro scheme. * @param us The internal system of units. * @param cooling The cooling data struct. - * @param entropy_floor The entropy floor assumed in this run. + * @param entropy_floor_props The entropy floor assumed in this run. */ INLINE static int star_formation_is_star_forming( const struct part* restrict p, const struct xpart* restrict xp, @@ -376,6 +376,10 @@ INLINE static void star_formation_update_part_not_SFR( * @param starform the star formation law properties to use. * @param cosmo the cosmological parameters and properties. * @param with_cosmology if we run with cosmology. + * @param phys_const the physical constants in internal units. + * @param hydro_props The properties of the hydro scheme. + * @param us The internal system of units. + * @param cooling The cooling data struct. */ INLINE static void star_formation_copy_properties( const struct part* p, const struct xpart* xp, struct spart* sp,