Source code for plugins.loaders.mapping_loaders.nxmonitor_loader

# Copyright 2014 Diamond Light Source Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""
.. module:: nxmonitor_loader
   :platform: Unix
   :synopsis: A class for loading nxmonitor data

.. moduleauthor:: Nicola Wadeson <scientificsoftware@diamond.ac.uk>

"""

from savu.plugins.loaders.mapping_loaders.base_multi_modal_loader \
    import BaseMultiModalLoader

from savu.plugins.utils import register_plugin


[docs]@register_plugin class NxmonitorLoader(BaseMultiModalLoader): def __init__(self, name='NxmonitorLoader'): super(NxmonitorLoader, self).__init__(name)
[docs] def setup(self): path = '/instrument/detector/data' data_obj, stxm_entry = \ self.multi_modal_setup('NXmonitor', path, self.parameters['name']) mono_energy = data_obj.backing_file[ stxm_entry.name + '/instrument/monochromator/energy'] self.exp.meta_data.set("mono_energy", mono_energy) self.set_data_reduction_params(data_obj)