Source code for ess.bifrost.data

# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2025 Scipp contributors (https://github.com/scipp)

"""Data for tests and documentation with BIFROST."""

from pathlib import Path

from ess.reduce.data import make_registry

_registry = make_registry(
    'ess/bifrost',
    files={
        "BIFROST_20240914T053723.h5": "md5:0f2fa5c9a851f8e3a4fa61defaa3752e",
        "computed_energy_data_simulated_5x2.h5": "md5:57408fa10aa4689c43630f994cff8d30",
        "BIFROST-simulation-tof-lookup-table.h5": "blake2b:682021920a355f789da37b18029719fe20569d86db26cdaf5f3d916d2f76f9360907960ba86903be4cab489d39f1b6f9f265f3a4ab3f82c5e095afa4a2c456af",  # noqa: E501
        "BIFROST-simulation-lookup-table.h5": "md5:6d776afa591d4a83c91ad0142bbfc53d",
    },
    version="7",
)


[docs] def get_path(name: str) -> Path: """ Return the path to a data file bundled with ess.bifrost. This function only works with example data and cannot handle paths to custom files. """ return _registry.get_path(name)
[docs] def simulated_elastic_incoherent_with_phonon() -> Path: """Simulated data for elastic incoherent scattering including a phonon.""" return get_path("BIFROST_20240914T053723.h5")
[docs] def lookup_table_simulation() -> Path: """Wavelength lookup table for the simulated BIFROST data. This table was computed with `tof <https://github.com/scipp/tof>`_ using `Create a wavelength lookup table for BIFROST <../../user-guide/bifrost/bifrost-make-wavelength-lookup-table.rst>`_ with ``NumberOfSimulatedNeutrons = 5_000_000``. """ return get_path("BIFROST-simulation-lookup-table.h5")
[docs] def computed_energy_data_simulated_5x2() -> Path: """Energy and momentum transfer computed from the simulated BIFROST data. This reference was computed with 10 detectors forming a 5x2 grid (arc=5, channel=2). """ return get_path("computed_energy_data_simulated_5x2.h5")
__all__ = [ "computed_energy_data_simulated_5x2", "get_path", "lookup_table_simulation", "simulated_elastic_incoherent_with_phonon", ]