Skip to content
Snippets Groups Projects
Commit 447086d3 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Doxygen documentation fixes.

parent 5d17d400
No related branches found
No related tags found
1 merge request!804Implementation of black hole accretion and feedback
......@@ -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
......
......@@ -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,
......
......@@ -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,
......
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment