Source code for ewoksfluo.tasks.raw_counters.extract_counters

from typing import Optional

from ewokscore import Task
from ewokscore.model import BaseOutputModel
from pydantic import Field

from ...io import hdf5
from .. import hdf5_utils
from .. import nexus_utils
from ..models import FluoInputs


[docs] class Inputs(FluoInputs): bliss_scan_uri: str = Field( description="Bliss scan URI.", examples=["/data/dataset.h5::/1.1"] ) output_root_uri: str = Field( description="Output root URI.", examples=[ "/results/dataset.h5", "/results/dataset.h5::/1.1", "/results/dataset.h5::/1.1/merge", ], ) xrf_results_uri: Optional[str] = Field( default=None, description="Previous XRF NXprocess URI to merge the raw Bliss counters with.", examples=["/results/dataset.h5::/1.1/sum/results"], )
[docs] class Outputs(BaseOutputModel): bliss_scan_uri: str = Field( description="Bliss scan URI.", examples=["/data/dataset.h5::/1.1"] ) output_root_uri: str = Field( description="Output NXentry URI.", examples=["/results/dataset.h5::/1.1"] ) xrf_results_uri: str = Field( description="Output NXprocess results URI.", examples=["/results/dataset.h5::/1.1/merge/results"], )
[docs] class ExtractRawCounters(Task, input_model=Inputs, output_model=Outputs): """Extract raw single-scan counters and save them like XRF results."""
[docs] def run(self): start_time = nexus_utils.now() bliss_scan_uri = self.inputs.bliss_scan_uri output_root_uri = self.inputs.output_root_uri previous_xrf_results_uri = self.inputs.xrf_results_uri input_file, scan_h5path = hdf5.split_h5uri(self.inputs.bliss_scan_uri) if previous_xrf_results_uri: default_nprocess_name = "merge" else: default_nprocess_name = "raw" with nexus_utils.save_in_ewoks_process( output_root_uri, start_time, process_config=dict(), default_levels=(scan_h5path, default_nprocess_name), ) as (process_group, already_existed): if already_existed: merged_xrf_results = process_group["results"] else: merged_xrf_results = process_group.create_group("results") merged_xrf_results.attrs["NX_class"] = "NXcollection" with hdf5.FileReadAccess(input_file) as h5file: _link_raw_counters( h5file[scan_h5path], merged_xrf_results, "rawcounters" ) if previous_xrf_results_uri: input_file, parent_path = hdf5.split_h5uri( previous_xrf_results_uri ) with hdf5.FileReadAccess(input_file) as h5file: _link_xrf_results(h5file[parent_path], merged_xrf_results) self.outputs.xrf_results_uri = ( f"{merged_xrf_results.file.filename}::{merged_xrf_results.name}" ) self.outputs.bliss_scan_uri = bliss_scan_uri self.outputs.output_root_uri = output_root_uri
def _link_raw_counters( raw_scan: hdf5.GroupType, process_group: hdf5.GroupType, name: str ) -> None: destination = nexus_utils.create_nxdata(process_group, name) measurement = raw_scan["measurement"] signals = list() for name, dset in measurement.items(): if dset.ndim == 1: hdf5_utils.create_hdf5_link(destination, name, dset) signals.append(name) nexus_utils.set_nxdata_signals(destination, signals=signals) def _link_xrf_results( xrf_results: hdf5.GroupType, process_group: hdf5.GroupType ) -> None: for name, group in xrf_results.items(): hdf5_utils.create_hdf5_link(process_group, name, group)