Coverage for src/galsbi/models.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-11-04 23:26 +0000

1# Copyright (C) 2024 ETH Zurich 

2# Institute for Particle Physics and Astrophysics 

3# Author: Silvan Fischbacher 

4# created: Fri Aug 30 2024 

5 

6# This file contains the model names and citations for the models. 

7 

8ALL_MODELS = ["Moser+24", "Fischbacher+24"] 

9 

10CITE_MOSER24 = """ 

11@article{Moser2024, 

12 title = {{Simulation-based inference of deep fields: galaxy population model and redshift distributions}}, 

13 author = {Moser, Beatrice and Kacprzak, Tomasz and Fischbacher, Silvan and Refregier, Alexandre and Grimm, Dominic and Tortorelli, Luca}, 

14 year = 2024, 

15 journal = {JCAP}, 

16 volume = {05}, 

17 pages = {049}, 

18 doi = {10.1088/1475-7516/2024/05/049}, 

19 eprint = {2401.06846}, 

20 archiveprefix = {arXiv}, 

21 primaryclass = {astro-ph.CO} 

22} 

23 

24""" 

25 

26CITE_FISCHBACHER24 = """ 

27@article{Fischbacher2025_GalSBI_phenomenological, 

28 author = "Fischbacher, Silvan and Kacprzak, Tomasz and Tortorelli, Luca and Moser, Beatrice and Refregier, Alexandre and Gebhardt, Patrick and Gruen, Daniel", 

29 title = "{GalSBI: phenomenological galaxy population model for cosmology using simulation-based inference}", 

30 eprint = "2412.08701", 

31 archivePrefix = "arXiv", 

32 primaryClass = "astro-ph.CO", 

33 doi = "10.1088/1475-7516/2025/06/007", 

34 journal = "JCAP", 

35 volume = "06", 

36 pages = "007", 

37 year = "2025" 

38} 

39""" 

40 

41CITE_UFIG = """ 

42@article{Fischbacher2025_ufig, 

43 title = {UFig v1: The ultra-fast image generator}, 

44 author = {Fischbacher, Silvan and Moser, Beatrice and Kacprzak, Tomasz and Tortorelli, Luca and Herbel, Joerg and Bruderer, Claudio and Schmitt, Uwe and Refregier, Alexandre and Berge, Joel and Gamper, Lukas and Amara, Adam}, 

45 year = 2025, 

46 journal = {Journal of Open Source Software}, 

47 publisher = {The Open Journal}, 

48 volume = 10, 

49 number = 113, 

50 pages = 8697, 

51 doi = {10.21105/joss.08697}, 

52 url = {https://doi.org/10.21105/joss.08697} 

53} 

54""" 

55 

56CITE_GALSBI = """ 

57@article{Fischbacher2025_galsbi_package, 

58 title = {galsbi: A Python package for the GalSBI galaxy population model}, 

59 author = {Fischbacher, Silvan and Moser, Beatrice and Kacprzak, Tomasz and Herbel, Joerg and Tortorelli, Luca and Schmitt, Uwe and Refregier, Alexandre and Amara, Adam}, 

60 year = 2025, 

61 journal = {Journal of Open Source Software}, 

62 publisher = {The Open Journal}, 

63 volume = 10, 

64 number = 114, 

65 pages = 8766, 

66 doi = {10.21105/joss.08766}, 

67 url = {https://doi.org/10.21105/joss.08766} 

68} 

69"""