Coverage for src/galsbi/ucat/config/galaxy_catalog.py: 100%

11 statements  

« prev     ^ index     » next       coverage.py v7.6.9, created at 2024-12-13 03:24 +0000

1# Copyright (C) 2018 ETH Zurich, Institute for Particle Physics and Astrophysics 

2 

3""" 

4Updated 11, 2021 

5by: Tomasz Kacprzak 

6 

7Created on Mar 5, 2018 

8author: Joerg Herbel 

9""" 

10 

11from galsbi.ucat.config import common 

12 

13for name in [name for name in dir(common) if not name.startswith("__")]: 

14 globals()[name] = getattr(common, name) 

15 

16 

17plugins = ["ucat.plugins.sample_galaxies"] 

18 

19 

20maps_remote_dir = "ucat/resources/" 

21 

22# Filter throughputs 

23filters_file_name = "filters_collection.h5" 

24 

25# Template spectra & integration tables 

26n_templates = 5 

27magnitude_calculation = "table" 

28templates_file_name = "ucat/sed_templates/template_spectra_BlantonRoweis07.h5" 

29templates_int_tables_file_name = "sed_integrals__template_spectra_BlantonRoweis07.h5" 

30 

31 

32# Extinction 

33extinction_map_file_name = "lambda_sfd_ebv.fits"