yaw.config.default#

This module implements the default values for the different configuration objects. Each of the *Config objects has a corresponding class holding just the default values, as listed below.

class Scales:
    rweight = None
    rbin_num = 50


class Binning:
    method = "linear"
    zbin_num = 30


AutoBinning = Binning  # keep for backwards compatibilty


class Backend:
    thread_num = None
    crosspatch = True
    rbin_slop = 0.01


class Configuration:
    scales = Scales
    binning = Binning
    backend = Backend
    cosmology = "Planck15"


class Resampling:
    method = "jackknife"
    crosspatch = True
    n_boot = 500
    global_norm = False
    seed = 12345


backend = "scipy"