Skip to content

brahmap.core.GLSResult

A class to store the results of the GLS map-making

Parameters:

Name Type Description Default
solver_type SolverType

description

required
npix int

description

required
new_npix int

description

required
GLS_maps ndarray

description

required
hit_map ndarray

description

required
convergence_status bool

description

required
num_iterations int

description

required
GLSParameters GLSParameters

description

required
Source code in brahmap/core/GLS.py
@dataclass
class GLSResult:
    """A class to store the results of the GLS map-making

    Parameters
    ----------
    solver_type : SolverType
        _description_
    npix : int
        _description_
    new_npix : int
        _description_
    GLS_maps : np.ndarray
        _description_
    hit_map : np.ndarray
        _description_
    convergence_status : bool
        _description_
    num_iterations : int
        _description_
    GLSParameters : GLSParameters
        _description_
    """

    solver_type: SolverType
    npix: int
    new_npix: int
    GLS_maps: np.ndarray
    hit_map: np.ndarray
    convergence_status: bool
    num_iterations: int
    GLSParameters: GLSParameters