Source code for ess.reduce.nexus.types

"""Domain types for use with Sciline, parametrized by run- and monitor-type."""

from dataclasses import dataclass
from pathlib import Path
from typing import Any, BinaryIO, Generic, NewType, TypeVar

import sciline
import scipp as sc
import scippnexus as snx

FilePath = NewType('FilePath', Path)
"""Full path to a NeXus file on disk."""
NeXusFile = NewType('NeXusFile', BinaryIO)
"""An open NeXus file.

Can be any file handle for reading binary data.

Note that this cannot be used as a parameter in Sciline as there are no
concrete implementations of ``BinaryIO``.
The type alias is provided for callers of load functions outside of pipelines.
"""
NeXusGroup = NewType('NeXusGroup', snx.Group)
"""A ScippNexus group in an open file."""

NeXusEntryName = NewType('NeXusEntryName', str)
"""Name of an entry in a NeXus file."""
NeXusSourceName = NewType('NeXusSourceName', str)
"""Name of a source in a NeXus file."""

DetectorBankSizes = NewType("DetectorBankSizes", dict[str, dict[str, int | Any]])

GravityVector = NewType('GravityVector', sc.Variable)

PreopenNeXusFile = NewType('PreopenNeXusFile', bool)
"""Whether to preopen NeXus files before passing them to the rest of the workflow."""


# 1  TypeVars used to parametrize the generic parts of the workflow

# 1.1  Run types
BackgroundRun = NewType('BackgroundRun', int)
"""Background run such as a run with only a solvent which the sample is placed in."""
EmptyBeamRun = NewType('EmptyBeamRun', int)
"""
Run with empty sample holder, sometimes called 'direct run'.

It is used for reading the data from the transmission monitor.
"""
SampleRun = NewType('SampleRun', int)
"""Sample run."""
VanadiumRun = NewType('VanadiumRun', int)
"""Vanadium run."""

ScatteringRunType = TypeVar(
    'ScatteringRunType',
    BackgroundRun,
    SampleRun,
    VanadiumRun,
)


[docs] class TransmissionRun(Generic[ScatteringRunType]): """ Mapping between ScatteringRunType and transmission run. In the case where no transmission run is provided, the transmission run should be the same as the measurement (sample or background) run. """
RunType = TypeVar( 'RunType', BackgroundRun, EmptyBeamRun, SampleRun, # Note that mypy does not seem to like this nesting, may need to find a workaround TransmissionRun[SampleRun], TransmissionRun[BackgroundRun], VanadiumRun, ) """TypeVar used for specifying BackgroundRun, EmptyBeamRun or SampleRun""" # 1.2 Monitor types Monitor1 = NewType('Monitor1', int) """Identifier for an arbitrary monitor""" Monitor2 = NewType('Monitor2', int) """Identifier for an arbitrary monitor""" Monitor3 = NewType('Monitor3', int) """Identifier for an arbitrary monitor""" Monitor4 = NewType('Monitor4', int) """Identifier for an arbitrary monitor""" Monitor5 = NewType('Monitor5', int) """Identifier for an arbitrary monitor""" IncidentMonitor = NewType('IncidentMonitor', int) """Incident monitor""" TransmissionMonitor = NewType('TransmissionMonitor', int) """Transmission monitor""" MonitorType = TypeVar( 'MonitorType', Monitor1, Monitor2, Monitor3, Monitor4, Monitor5, IncidentMonitor, TransmissionMonitor, ) """TypeVar used for specifying the monitor type such as Incident or Transmission""" Component = TypeVar( 'Component', snx.NXdetector, snx.NXsample, snx.NXsource, Monitor1, Monitor2, Monitor3, Monitor4, Monitor5, IncidentMonitor, TransmissionMonitor, ) UniqueComponent = TypeVar('UniqueComponent', snx.NXsample, snx.NXsource) """Components that can be identified by their type as there will only be one."""
[docs] class NeXusName(sciline.Scope[Component, str], str): """Name of a component in a NeXus file."""
[docs] class NeXusClass(sciline.Scope[Component, str], str): """NX_class of a component in a NeXus file."""
NeXusDetectorName = NeXusName[snx.NXdetector] """Name of a detector (bank) in a NeXus file."""
[docs] class NeXusComponent( sciline.ScopeTwoParams[Component, RunType, sc.DataGroup], sc.DataGroup ): """Raw data from a NeXus component."""
[docs] class NeXusData(sciline.ScopeTwoParams[Component, RunType, sc.DataArray], sc.DataArray): """ Data array loaded from an NXevent_data or NXdata group. This must be contained in an NXmonitor or NXdetector group. """
[docs] class Position(sciline.ScopeTwoParams[Component, RunType, sc.Variable], sc.Variable): """Position of a component such as source, sample, monitor, or detector."""
[docs] class DetectorPositionOffset(sciline.Scope[RunType, sc.Variable], sc.Variable): """Offset for the detector position, added to base position."""
[docs] class MonitorPositionOffset( sciline.ScopeTwoParams[RunType, MonitorType, sc.Variable], sc.Variable ): """Offset for the monitor position, added to base position."""
[docs] class CalibratedDetector(sciline.Scope[RunType, sc.DataArray], sc.DataArray): """Calibrated data from a detector."""
[docs] class CalibratedBeamline(sciline.Scope[RunType, sc.DataArray], sc.DataArray): """Calibrated beamline with detector and other components."""
[docs] class CalibratedMonitor( sciline.ScopeTwoParams[RunType, MonitorType, sc.DataArray], sc.DataArray ): """Calibrated data from a monitor."""
[docs] class DetectorData(sciline.Scope[RunType, sc.DataArray], sc.DataArray): """Calibrated detector merged with neutron event or histogram data."""
[docs] class MonitorData( sciline.ScopeTwoParams[RunType, MonitorType, sc.DataArray], sc.DataArray ): """Calibrated monitor merged with neutron event or histogram data."""
[docs] class Filename(sciline.Scope[RunType, Path], Path): ...
[docs] @dataclass class PulseSelection(Generic[RunType]): """Range of neutron pulses to load from NXevent_data or NXdata groups.""" value: snx.typing.ScippIndex | slice
[docs] @dataclass class NeXusFileSpec(Generic[RunType]): value: FilePath | NeXusFile | NeXusGroup
[docs] @dataclass class NeXusLocationSpec: """ NeXus filename and optional parameters to identify (parts of) a component to load. """ filename: FilePath | NeXusFile | NeXusGroup entry_name: NeXusEntryName | None = None component_name: str | None = None selection: snx.typing.ScippIndex | slice = ()
[docs] @dataclass class NeXusComponentLocationSpec(NeXusLocationSpec, Generic[Component, RunType]): """ NeXus filename and optional parameters to identify (parts of) a component to load. """
[docs] @dataclass class NeXusDataLocationSpec(NeXusLocationSpec, Generic[Component, RunType]): """NeXus filename and parameters to identify (parts of) detector data to load."""
T = TypeVar('T', bound='NeXusTransformationChain')
[docs] class NeXusTransformationChain(
sciline.ScopeTwoParams[Component, RunType, snx.TransformationChain], snx.TransformationChain, ): ...
[docs] @dataclass class NeXusTransformation(Generic[Component, RunType]): value: sc.Variable
[docs] @staticmethod def from_chain( chain: NeXusTransformationChain[Component, RunType], ) -> 'NeXusTransformation[Component, RunType]': """ Convert a transformation chain to a single transformation. As transformation chains may be time-dependent, this method will need to select a specific time point to convert to a single transformation. This may include averaging as well as threshold checks. This is not implemented yet and we therefore currently raise an error if the transformation chain does not compute to a scalar. """ transform = chain.compute() if transform.ndim == 0: return NeXusTransformation(value=transform) raise ValueError(f"Expected scalar transformation, got {transform}")