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
« 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
3"""
4Updated 11, 2021
5by: Tomasz Kacprzak
7Created on Mar 5, 2018
8author: Joerg Herbel
9"""
11from galsbi.ucat.config import common
13for name in [name for name in dir(common) if not name.startswith("__")]:
14 globals()[name] = getattr(common, name)
17plugins = ["ucat.plugins.sample_galaxies"]
20maps_remote_dir = "ucat/resources/"
22# Filter throughputs
23filters_file_name = "filters_collection.h5"
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"
32# Extinction
33extinction_map_file_name = "lambda_sfd_ebv.fits"