Source code for gemseo_calibration.measures.factory

# Copyright 2021 IRT Saint Exupéry, https://www.irt-saintexupery.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 3 as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
"""A factory to create instances of :class:`.CalibrationMeasure`."""

from __future__ import annotations

from gemseo.core.base_factory import BaseFactory

from gemseo_calibration.measure import CalibrationMeasure
from gemseo_calibration.measures.integrated_measure import IntegratedMeasure


[docs] class CalibrationMeasureFactory(BaseFactory): """A factory to create instances of :class:`.CalibrationMeasure`.""" _CLASS = CalibrationMeasure _MODULE_NAMES = ("gemseo_calibration.measures",)
[docs] def is_integrated_measure(self, name: str) -> bool: """Return whether a calibration measure is an :class:`.IntegratedMeasure`. Args: name: The name of the class of the calibration measure. Returns: Whether the calibration measure is an :class:`.IntegratedMeasure`. """ return issubclass(self.get_class(name), IntegratedMeasure)
@property def measures(self) -> list[str]: """The names of the available calibration measures.""" return self.class_names