Compare commits
77 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 29d406a290 | |||
| 5d9c0879b4 | |||
| 7f0e6f1026 | |||
| 30574cdf7e | |||
| 6298487bf3 | |||
| 3a7f3cde53 | |||
| dafff07e68 | |||
| 9afd15bcb4 | |||
| 6a4f1c6205 | |||
| 6aacbd5f22 | |||
| dc7dd2a6f2 | |||
| a22c23658f | |||
| 246c179481 | |||
| 30f616d3ab | |||
| 20d3bf45c9 | |||
| f07a06370f | |||
| 7c951a2f14 | |||
| 493095331f | |||
| c78d5412d5 | |||
| 389d485476 | |||
| 9db1d399dc | |||
| 9facb0e04f | |||
| 198fc07421 | |||
| 80ec3da039 | |||
| 09ea513aad | |||
| 4ecf6252a9 | |||
| 0cb7f5ceb2 | |||
| 2df7fd9e7c | |||
| 42234d86fd | |||
| bc84b2e841 | |||
| 26b6057941 | |||
| 1d8fea7498 | |||
| d2fff51787 | |||
| 8347942c15 | |||
| f55d840b8e | |||
| 327d6a0ff8 | |||
| 22943bc513 | |||
|
|
01873d60db | ||
| 654251a194 | |||
| 9e30970d9b | |||
| 7b6f2045cc | |||
| e3d15a1142 | |||
|
|
98244327eb | ||
| 61ba1cf084 | |||
| 54f2169888 | |||
| 24cc0a4287 | |||
| a3d342e5d7 | |||
| c92e4e4d17 | |||
| 4d74237669 | |||
| 6144200551 | |||
| f2c681ffba | |||
| a56f29191d | |||
| 6597ca22d1 | |||
| ce31dcb190 | |||
| 41c5218413 | |||
| 8abd977656 | |||
| 432d85c9b3 | |||
| c222f42a89 | |||
| fbced41b9f | |||
| dfb5aa319f | |||
| c073fae269 | |||
| 447b81d09d | |||
| 003a8c04ce | |||
| 4cd25dec3d | |||
| b38eeb8eb3 | |||
| d722228079 | |||
| 493c2bf802 | |||
| c429429dd2 | |||
| 0550e725e8 | |||
| 5c8b9a8cd6 | |||
| 4e5d085ad7 | |||
| 2d8d1c66c6 | |||
| 14ea89e243 | |||
| 322c00ca54 | |||
| 0b7a56628f | |||
| 77641412ab | |||
| fc1bd66c3d |
58
.github/workflows/release.yml
vendored
58
.github/workflows/release.yml
vendored
@@ -22,7 +22,35 @@ on:
|
|||||||
- all_incl_release
|
- all_incl_release
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
test:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: ['3.8', '3.9', '3.10', '3.12']
|
||||||
|
fail-fast: false
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout LFS objects
|
||||||
|
run: git clone https://${{secrets.GITHUB_TOKEN}}@gitea.psi.ch/${{ github.repository }}.git .
|
||||||
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install pytest
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
- name: Test with pytest
|
||||||
|
run: |
|
||||||
|
python -m pytest tests
|
||||||
|
|
||||||
|
|
||||||
build-ubuntu-latest:
|
build-ubuntu-latest:
|
||||||
|
needs: [test]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: ${{ (github.event_name != 'workflow_dispatch') || (contains(fromJson('["all", "linux", "all_incl_release"]'), github.event.inputs.build-items)) }}
|
if: ${{ (github.event_name != 'workflow_dispatch') || (contains(fromJson('["all", "linux", "all_incl_release"]'), github.event.inputs.build-items)) }}
|
||||||
permissions:
|
permissions:
|
||||||
@@ -31,30 +59,28 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v5
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.11'
|
python-version: '3.12'
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install build
|
pip install build
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
pip install wheel build twine
|
||||||
- name: Build PyPI package
|
- name: Build PyPI package
|
||||||
run: |
|
run: |
|
||||||
python3 -m build
|
python3 -m build
|
||||||
- name: Archive distribution
|
# - name: Archive distribution
|
||||||
uses: actions/upload-artifact@v4
|
# uses: actions/upload-artifact@v3
|
||||||
with:
|
# with:
|
||||||
name: linux-dist
|
# name: linux-dist
|
||||||
path: |
|
# path: |
|
||||||
dist/*.tar.gz
|
# dist/*.tar.gz
|
||||||
- name: Upload to PyPI
|
- name: Upload to PyPI
|
||||||
#if: github.event_name != 'workflow_dispatch'
|
run: |
|
||||||
uses: pypa/gh-action-pypi-publish@release/v1
|
twine upload dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }} --skip-existing
|
||||||
with:
|
|
||||||
# user: __token__
|
|
||||||
# password: ${{ secrets.PYPI_TOKEN }}
|
|
||||||
skip-existing: true
|
|
||||||
|
|
||||||
build-windows:
|
build-windows:
|
||||||
|
needs: [test]
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
if: ${{ (github.event_name != 'workflow_dispatch') || (contains(fromJson('["all", "windows", "all_incl_release"]'), github.event.inputs.build-items)) }}
|
if: ${{ (github.event_name != 'workflow_dispatch') || (contains(fromJson('["all", "windows", "all_incl_release"]'), github.event.inputs.build-items)) }}
|
||||||
|
|
||||||
@@ -74,7 +100,7 @@ jobs:
|
|||||||
cd dist\eos
|
cd dist\eos
|
||||||
Compress-Archive -Path .\* -Destination ..\..\eos.zip
|
Compress-Archive -Path .\* -Destination ..\..\eos.zip
|
||||||
- name: Archive distribution
|
- name: Archive distribution
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: windows-dist
|
name: windows-dist
|
||||||
path: |
|
path: |
|
||||||
@@ -89,10 +115,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
fetch-tags: true
|
fetch-tags: true
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: linux-dist
|
name: linux-dist
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: windows-dist
|
name: windows-dist
|
||||||
- name: get latest version tag
|
- name: get latest version tag
|
||||||
|
|||||||
12
.github/workflows/unit_tests.yml
vendored
12
.github/workflows/unit_tests.yml
vendored
@@ -10,18 +10,18 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
test:
|
||||||
|
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
|
python-version: ['3.8', '3.9', '3.10', '3.12']
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: Checkout LFS objects
|
||||||
with:
|
run: git clone https://${{secrets.GITHUB_TOKEN}}@gitea.psi.ch/${{ github.repository }}.git .
|
||||||
lfs: 'true'
|
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -2,5 +2,5 @@
|
|||||||
Package to handle data redction at AMOR instrument to be used by __main__.py script.
|
Package to handle data redction at AMOR instrument to be used by __main__.py script.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = '3.0.2'
|
__version__ = '3.2.2'
|
||||||
__date__ = '2025-10-10'
|
__date__ = '2026-02-27'
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ from typing import List, Type
|
|||||||
from .options import ArgParsable
|
from .options import ArgParsable
|
||||||
|
|
||||||
|
|
||||||
def commandLineArgs(config_items: List[Type[ArgParsable]], program_name=None):
|
def commandLineArgs(config_items: List[Type[ArgParsable]], program_name=None, extra_args=[]):
|
||||||
"""
|
"""
|
||||||
Process command line argument.
|
Process command line argument.
|
||||||
The type of the default values is used for conversion and validation.
|
The type of the default values is used for conversion and validation.
|
||||||
@@ -36,4 +36,7 @@ def commandLineArgs(config_items: List[Type[ArgParsable]], program_name=None):
|
|||||||
f'--{cpc.argument}', **cpc.add_argument_args
|
f'--{cpc.argument}', **cpc.add_argument_args
|
||||||
)
|
)
|
||||||
|
|
||||||
|
for ma in extra_args:
|
||||||
|
clas.add_argument(**ma)
|
||||||
|
|
||||||
return clas.parse_args()
|
return clas.parse_args()
|
||||||
|
|||||||
18
eos/const.py
18
eos/const.py
@@ -1,7 +1,11 @@
|
|||||||
"""
|
"""
|
||||||
Constants used in data reduction.
|
Constants used in data reduction.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
hdm = 6.626176e-34/1.674928e-27 # h / m
|
hdm = 6.626176e-34/1.674928e-27 # h / m
|
||||||
lamdaCut = 2.5 # Aa
|
lamdaCut = 2.5 # Aa
|
||||||
lamdaMax = 15.0 # Aa
|
lamdaMax = 15.0 # Aa
|
||||||
|
|
||||||
|
polarizationConfigs = ['unpolarized', 'unpolarized', 'po', 'mo', 'op', 'pp', 'mp', 'om', 'pm', 'mm']
|
||||||
|
polarizationLabels = ['undetermined', 'unpolarized', 'spin-up', 'spin-down', 'op',
|
||||||
|
'up-up', 'down-up', 'om', 'up-down', 'down-down']
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ from typing import Tuple
|
|||||||
|
|
||||||
from . import const
|
from . import const
|
||||||
from .event_data_types import EventDataAction, EventDatasetProtocol, append_fields, EVENT_BITMASKS
|
from .event_data_types import EventDataAction, EventDatasetProtocol, append_fields, EVENT_BITMASKS
|
||||||
from .helpers import filter_project_x, merge_frames, extract_walltime
|
from .helpers import filter_project_x, merge_frames, extract_walltime, add_log_to_pulses
|
||||||
from .instrument import Detector
|
from .instrument import Detector
|
||||||
from .options import IncidentAngle
|
from .options import IncidentAngle
|
||||||
from .header import Header
|
from .header import Header
|
||||||
@@ -25,8 +25,15 @@ class ExtractWalltime(EventDataAction):
|
|||||||
dataset.data.events = new_events
|
dataset.data.events = new_events
|
||||||
|
|
||||||
class MergeFrames(EventDataAction):
|
class MergeFrames(EventDataAction):
|
||||||
|
def __init__(self, lamdaCut=None):
|
||||||
|
self.lamdaCut=lamdaCut
|
||||||
|
|
||||||
def perform_action(self, dataset: EventDatasetProtocol)->None:
|
def perform_action(self, dataset: EventDatasetProtocol)->None:
|
||||||
tofCut = const.lamdaCut*dataset.geometry.chopperDetectorDistance/const.hdm*1e-13
|
if self.lamdaCut is None:
|
||||||
|
lamdaCut = const.lamdaCut
|
||||||
|
else:
|
||||||
|
lamdaCut = self.lamdaCut
|
||||||
|
tofCut = lamdaCut*dataset.geometry.chopperDetectorDistance/const.hdm*1e-13
|
||||||
total_offset = (tofCut +
|
total_offset = (tofCut +
|
||||||
dataset.timing.tau * (dataset.timing.ch1TriggerPhase + dataset.timing.chopperPhase/2)/180)
|
dataset.timing.tau * (dataset.timing.ch1TriggerPhase + dataset.timing.chopperPhase/2)/180)
|
||||||
dataset.data.events.tof = merge_frames(dataset.data.events.tof, tofCut, dataset.timing.tau, total_offset)
|
dataset.data.events.tof = merge_frames(dataset.data.events.tof, tofCut, dataset.timing.tau, total_offset)
|
||||||
@@ -117,5 +124,40 @@ class FilterQzRange(EventDataAction):
|
|||||||
if not 'qz' in dataset.data.events.dtype.names:
|
if not 'qz' in dataset.data.events.dtype.names:
|
||||||
raise ValueError("FilterQzRange requires dataset with qz values per events, perform WavelengthAndQ first")
|
raise ValueError("FilterQzRange requires dataset with qz values per events, perform WavelengthAndQ first")
|
||||||
|
|
||||||
if self.qzRange[1]<0.5:
|
d.events.mask += EVENT_BITMASKS["qRange"]*((self.qzRange[0]>d.events.qz) | (d.events.qz>self.qzRange[1]))
|
||||||
d.events.mask += EVENT_BITMASKS["qRange"]*((self.qzRange[0]>d.events.qz) | (d.events.qz>self.qzRange[1]))
|
|
||||||
|
class FilterByLog(EventDataAction):
|
||||||
|
|
||||||
|
def __init__(self, filter_string, remove_switchpulse=False):
|
||||||
|
if filter_string.startswith('!'):
|
||||||
|
filter_string = filter_string[1:]
|
||||||
|
remove_switchpulse = True
|
||||||
|
self.filter_string = filter_string
|
||||||
|
self.remove_switchpulse = remove_switchpulse
|
||||||
|
|
||||||
|
def perform_action(self, dataset: EventDatasetProtocol) -> None:
|
||||||
|
filter_variable = None
|
||||||
|
# go through existing keys in reverse order of their length to insure a name containing another is used
|
||||||
|
existing_keys = list(dataset.data.device_logs.keys())
|
||||||
|
existing_keys.sort(key=lambda x: -len(x))
|
||||||
|
for key in existing_keys:
|
||||||
|
if key in self.filter_string:
|
||||||
|
filter_variable = key
|
||||||
|
break
|
||||||
|
if filter_variable is None:
|
||||||
|
logging.warning(f' could not find suitable parameter to filter on in {self.filter_string}, '
|
||||||
|
f'available parameters are: {list(sorted(existing_keys))}')
|
||||||
|
return
|
||||||
|
logging.debug(f' using parameter {filter_variable} to apply filter {self.filter_string}')
|
||||||
|
if not filter_variable in EVENT_BITMASKS:
|
||||||
|
EVENT_BITMASKS[filter_variable] = max(EVENT_BITMASKS.values())*2
|
||||||
|
if not filter_variable in dataset.data.pulses.dtype.names:
|
||||||
|
# interpolate the parameter values for all existing pulses
|
||||||
|
add_log_to_pulses(filter_variable, dataset)
|
||||||
|
fltr_pulses = eval(self.filter_string, {filter_variable: dataset.data.pulses[filter_variable]})
|
||||||
|
if self.remove_switchpulse:
|
||||||
|
switched = fltr_pulses[:-1] & ~fltr_pulses[1:]
|
||||||
|
fltr_pulses[:-1] &= ~switched
|
||||||
|
goodTimeS = dataset.data.pulses.time[fltr_pulses]
|
||||||
|
filter_e = np.logical_not(np.isin(dataset.data.events.wallTime, goodTimeS))
|
||||||
|
dataset.data.events.mask += EVENT_BITMASKS[filter_variable]*filter_e
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
"""
|
"""
|
||||||
Specify the data type and protocol used for event datasets.
|
Specify the data type and protocol used for event datasets.
|
||||||
"""
|
"""
|
||||||
from typing import List, Optional, Protocol, Tuple
|
from typing import Dict, List, Optional, Protocol, Tuple
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass, field
|
||||||
from .header import Header
|
from .header import Header
|
||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
from hashlib import sha256
|
from hashlib import sha256
|
||||||
@@ -34,6 +34,7 @@ EVENT_TYPE = np.dtype([('tof', np.float64), ('pixelID', np.uint32), ('mask', np.
|
|||||||
PACKET_TYPE = np.dtype([('start_index', np.uint32), ('time', np.int64)])
|
PACKET_TYPE = np.dtype([('start_index', np.uint32), ('time', np.int64)])
|
||||||
PULSE_TYPE = np.dtype([('time', np.int64), ('monitor', np.float32)])
|
PULSE_TYPE = np.dtype([('time', np.int64), ('monitor', np.float32)])
|
||||||
PC_TYPE = np.dtype([('current', np.float32), ('time', np.int64)])
|
PC_TYPE = np.dtype([('current', np.float32), ('time', np.int64)])
|
||||||
|
LOG_TYPE = np.dtype([('value', np.float32), ('time', np.int64)])
|
||||||
|
|
||||||
# define the bitmask for individual event filters
|
# define the bitmask for individual event filters
|
||||||
EVENT_BITMASKS = {
|
EVENT_BITMASKS = {
|
||||||
@@ -60,6 +61,7 @@ class AmorEventStream:
|
|||||||
packets: np.recarray # PACKET_TYPE
|
packets: np.recarray # PACKET_TYPE
|
||||||
pulses: np.recarray # PULSE_TYPE
|
pulses: np.recarray # PULSE_TYPE
|
||||||
proton_current: np.recarray # PC_TYPE
|
proton_current: np.recarray # PC_TYPE
|
||||||
|
device_logs: Dict[str, np.recarray] = field(default_factory=dict) # LOG_TYPE
|
||||||
|
|
||||||
class EventDatasetProtocol(Protocol):
|
class EventDatasetProtocol(Protocol):
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ class ApplyParameterOverwrites(EventDataAction):
|
|||||||
with open(self.config.sampleModel, 'r') as model_yml:
|
with open(self.config.sampleModel, 'r') as model_yml:
|
||||||
model = yaml.safe_load(model_yml)
|
model = yaml.safe_load(model_yml)
|
||||||
else:
|
else:
|
||||||
logging.warning(f' ! the file {self.config.sampleModel}.yml does not exist. Ignored!')
|
logging.warning(f' ! the file {self.config.sampleModel} does not exist. Ignored!')
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
model = dict(stack=self.config.sampleModel)
|
model = dict(stack=self.config.sampleModel)
|
||||||
@@ -71,6 +71,8 @@ class CorrectSeriesTime(EventDataAction):
|
|||||||
dataset.data.pulses.time -= self.seriesStartTime
|
dataset.data.pulses.time -= self.seriesStartTime
|
||||||
dataset.data.events.wallTime -= self.seriesStartTime
|
dataset.data.events.wallTime -= self.seriesStartTime
|
||||||
dataset.data.proton_current.time -= self.seriesStartTime
|
dataset.data.proton_current.time -= self.seriesStartTime
|
||||||
|
for value in dataset.data.device_logs.values():
|
||||||
|
value.time -= self.seriesStartTime
|
||||||
start, stop = dataset.data.events.wallTime[0], dataset.data.events.wallTime[-1]
|
start, stop = dataset.data.events.wallTime[0], dataset.data.events.wallTime[-1]
|
||||||
logging.debug(f' wall time from {start/1e9:6.1f} s to {stop/1e9:6.1f} s, '
|
logging.debug(f' wall time from {start/1e9:6.1f} s to {stop/1e9:6.1f} s, '
|
||||||
f'series time = {self.seriesStartTime/1e9:6.1f}')
|
f'series time = {self.seriesStartTime/1e9:6.1f}')
|
||||||
@@ -166,7 +168,7 @@ class ApplyMask(EventDataAction):
|
|||||||
# TODO: why is this action time consuming?
|
# TODO: why is this action time consuming?
|
||||||
d = dataset.data
|
d = dataset.data
|
||||||
pre_filter = d.events.shape[0]
|
pre_filter = d.events.shape[0]
|
||||||
if logging.getLogger().level == logging.DEBUG:
|
if logging.getLogger().level <= logging.DEBUG:
|
||||||
# only run this calculation if debug level is actually active
|
# only run this calculation if debug level is actually active
|
||||||
filtered_by_mask = {}
|
filtered_by_mask = {}
|
||||||
for key, value in EVENT_BITMASKS.items():
|
for key, value in EVENT_BITMASKS.items():
|
||||||
@@ -181,3 +183,20 @@ class ApplyMask(EventDataAction):
|
|||||||
d.events = d.events[fltr]
|
d.events = d.events[fltr]
|
||||||
post_filter = d.events.shape[0]
|
post_filter = d.events.shape[0]
|
||||||
logging.info(f' number of events: total = {pre_filter:7d}, filtered = {post_filter:7d}')
|
logging.info(f' number of events: total = {pre_filter:7d}, filtered = {post_filter:7d}')
|
||||||
|
if d.device_logs == {} or not hasattr(dataset, 'update_info_from_logs'):
|
||||||
|
return
|
||||||
|
# filter pulses and logs to allow update of header information
|
||||||
|
from .helpers import add_log_to_pulses
|
||||||
|
times = np.unique(d.events.wallTime)
|
||||||
|
# make sure all log variables are associated with pulses
|
||||||
|
for key, log in d.device_logs.items():
|
||||||
|
if not key in d.pulses.dtype.names:
|
||||||
|
# interpolate the parameter values for all existing pulses
|
||||||
|
add_log_to_pulses(key, dataset)
|
||||||
|
# remove all pulses that have no more events
|
||||||
|
d.pulses = d.pulses[np.isin(d.pulses.time, times)]
|
||||||
|
for key, log in d.device_logs.items():
|
||||||
|
d.device_logs[key] = np.recarray(d.pulses.shape, dtype = log.dtype)
|
||||||
|
d.device_logs[key].time = d.pulses.time
|
||||||
|
d.device_logs[key].value = d.pulses[key]
|
||||||
|
dataset.update_info_from_logs()
|
||||||
@@ -3,9 +3,9 @@ Reading of Amor NeXus data files to extract metadata and event stream.
|
|||||||
"""
|
"""
|
||||||
from typing import BinaryIO, List, Union
|
from typing import BinaryIO, List, Union
|
||||||
|
|
||||||
|
import sys
|
||||||
import h5py
|
import h5py
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import platform
|
|
||||||
import logging
|
import logging
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
@@ -16,7 +16,8 @@ from orsopy.fileio.model_language import SampleModel
|
|||||||
|
|
||||||
from . import const
|
from . import const
|
||||||
from .header import Header
|
from .header import Header
|
||||||
from .event_data_types import AmorGeometry, AmorTiming, AmorEventStream, PACKET_TYPE, EVENT_TYPE, PULSE_TYPE, PC_TYPE
|
from .event_data_types import AmorGeometry, AmorTiming, AmorEventStream, LOG_TYPE, PACKET_TYPE, EVENT_TYPE, PULSE_TYPE, \
|
||||||
|
PC_TYPE
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import zoneinfo
|
import zoneinfo
|
||||||
@@ -27,27 +28,53 @@ except ImportError:
|
|||||||
|
|
||||||
# Time zone used to interpret time strings
|
# Time zone used to interpret time strings
|
||||||
AMOR_LOCAL_TIMEZONE = zoneinfo.ZoneInfo(key='Europe/Zurich')
|
AMOR_LOCAL_TIMEZONE = zoneinfo.ZoneInfo(key='Europe/Zurich')
|
||||||
|
UTC = zoneinfo.ZoneInfo(key='UTC')
|
||||||
if platform.node().startswith('amor'):
|
|
||||||
NICOS_CACHE_DIR = '/home/amor/nicosdata/amor/cache/'
|
|
||||||
GREP = '/usr/bin/grep "value"'
|
|
||||||
else:
|
|
||||||
NICOS_CACHE_DIR = None
|
|
||||||
|
|
||||||
class AmorHeader:
|
class AmorHeader:
|
||||||
"""
|
"""
|
||||||
Collects header information from Amor NeXus fiel without reading event data.
|
Collects header information from Amor NeXus fiel without reading event data.
|
||||||
"""
|
"""
|
||||||
|
# mapping of names to (hdf_path, dtype, nicos_key[, suffix])
|
||||||
|
hdf_paths = dict(
|
||||||
|
title=('entry1/title', str),
|
||||||
|
proposal_id=('entry1/proposal_id', str),
|
||||||
|
user_name=('entry1/user/name', str),
|
||||||
|
user_email=('entry1/user/email', str),
|
||||||
|
sample_name=('entry1/sample/name', str),
|
||||||
|
source_name=('entry1/Amor/source/name', str),
|
||||||
|
sample_model=('entry1/sample/model', str),
|
||||||
|
start_time=('entry1/start_time', str),
|
||||||
|
start_time_fallback=('entry1/Amor/instrument_control_parameters/start_time', str),
|
||||||
|
|
||||||
|
chopper_separation=('entry1/Amor/chopper/pair_separation', float),
|
||||||
|
detector_distance=('entry1/Amor/detector/transformation/distance', float),
|
||||||
|
chopper_distance=('entry1/Amor/chopper/distance', float),
|
||||||
|
sample_temperature=('entry1/sample/temperature', float),
|
||||||
|
sample_magnetic_field=('entry1/sample/magnetic_field', float),
|
||||||
|
|
||||||
|
mu=('entry1/Amor/instrument_control_parameters/mu', float, 'mu'),
|
||||||
|
nu=('entry1/Amor/instrument_control_parameters/nu', float, 'nu'),
|
||||||
|
kap=('entry1/Amor/instrument_control_parameters/kappa', float, 'kappa'),
|
||||||
|
kad=('entry1/Amor/instrument_control_parameters/kappa_offset', float, 'kappa_offset'),
|
||||||
|
div=('entry1/Amor/instrument_control_parameters/div', float, 'div'),
|
||||||
|
ch1_trigger_phase=('entry1/Amor/chopper/ch1_trigger_phase', float, 'ch1_trigger_phase'),
|
||||||
|
ch2_trigger_phase=('entry1/Amor/chopper/ch2_trigger_phase', float, 'ch2_trigger_phase'),
|
||||||
|
chopper_speed=('entry1/Amor/chopper/rotation_speed', float, 'chopper_phase'),
|
||||||
|
chopper_phase=('entry1/Amor/chopper/phase', float, 'chopper_phase'),
|
||||||
|
polarization_config_label=('entry1/Amor/polarization/configuration', int, 'polarization_config_label', '/*'),
|
||||||
|
)
|
||||||
|
|
||||||
def __init__(self, fileName:Union[str, h5py.File, BinaryIO]):
|
def __init__(self, fileName:Union[str, h5py.File, BinaryIO]):
|
||||||
if type(fileName) is str:
|
if type(fileName) is str:
|
||||||
logging.debug(f' opening file {fileName}')
|
logging.warning(f' {fileName.split("/")[-1]}')
|
||||||
self.hdf = h5py.File(fileName, 'r', swmr=True)
|
self.hdf = h5py.File(fileName, 'r', swmr=True)
|
||||||
elif type(fileName) is h5py.File:
|
elif type(fileName) is h5py.File:
|
||||||
self.hdf = fileName
|
self.hdf = fileName
|
||||||
else:
|
else:
|
||||||
self.hdf = h5py.File(fileName, 'r')
|
self.hdf = h5py.File(fileName, 'r')
|
||||||
|
|
||||||
|
self._log_keys = []
|
||||||
|
|
||||||
self.read_header_info()
|
self.read_header_info()
|
||||||
self.read_instrument_configuration()
|
self.read_instrument_configuration()
|
||||||
|
|
||||||
@@ -57,45 +84,89 @@ class AmorHeader:
|
|||||||
del(self.hdf)
|
del(self.hdf)
|
||||||
|
|
||||||
def _replace_if_missing(self, key, nicos_key, dtype=float, suffix=''):
|
def _replace_if_missing(self, key, nicos_key, dtype=float, suffix=''):
|
||||||
|
from .nicos_interface import lookup_nicos_value
|
||||||
|
year = self.fileDate.strftime('%Y')
|
||||||
|
return lookup_nicos_value(key, nicos_key, dtype, suffix, year)
|
||||||
|
|
||||||
|
def rv(self, key):
|
||||||
|
"""
|
||||||
|
Generic read value methos based on key in hdf_paths dictionary.
|
||||||
|
"""
|
||||||
|
hdf_path, dtype, *nicos = self.hdf_paths[key]
|
||||||
try:
|
try:
|
||||||
return dtype(self.hdf[f'/entry1/Amor/{key}'][0])
|
hdfgrp = self.hdf[hdf_path]
|
||||||
except(KeyError, IndexError):
|
if hdfgrp.attrs.get('NX_class', None) == 'NXlog':
|
||||||
if NICOS_CACHE_DIR:
|
# use the last value that was recoreded before the count started
|
||||||
|
time_column = hdfgrp['time'][:]
|
||||||
try:
|
try:
|
||||||
logging.info(f" using parameter {nicos_key} from nicos cache")
|
start_index = np.where(time_column<=self._start_time_ns)[0][0]
|
||||||
year_date = self.fileDate.strftime('%Y')
|
except IndexError:
|
||||||
call = f'{GREP} {NICOS_CACHE_DIR}nicos-{nicos_key}/{year_date}{suffix}'
|
start_index = 0
|
||||||
value = str(subprocess.getoutput(call)).split('\t')[-1]
|
if hdfgrp['value'].ndim==1:
|
||||||
return dtype(value)
|
output = dtype(hdfgrp['value'][start_index])
|
||||||
except Exception:
|
else:
|
||||||
logging.error(f"Couldn't get value from nicos cache {nicos_key}, {call}")
|
output = dtype(hdfgrp['value'][start_index, 0])
|
||||||
return dtype(0)
|
# make sure key is only appended if no exception was raised
|
||||||
|
self._log_keys.append(key)
|
||||||
|
return output
|
||||||
|
elif dtype is str:
|
||||||
|
return self.read_string(hdf_path)
|
||||||
else:
|
else:
|
||||||
logging.warning(f" parameter {key} not found, relpace by zero")
|
if len(hdfgrp.shape)==1:
|
||||||
return dtype(0)
|
return dtype(hdfgrp[0])
|
||||||
|
else:
|
||||||
|
return dtype(hdfgrp[()])
|
||||||
|
except (KeyError, IndexError):
|
||||||
|
if nicos:
|
||||||
|
nicos_key = nicos[0]
|
||||||
|
suffix = nicos[1] if len(nicos)>1 else ''
|
||||||
|
return self._replace_if_missing(key, nicos_key, dtype, suffix)
|
||||||
|
else:
|
||||||
|
raise
|
||||||
|
|
||||||
|
|
||||||
|
def read_string(self, path):
|
||||||
|
if not np.shape(self.hdf[path]):
|
||||||
|
return self.hdf[path][()].decode('utf-8')
|
||||||
|
else:
|
||||||
|
# format until 2025
|
||||||
|
return self.hdf[path][0].decode('utf-8')
|
||||||
|
|
||||||
def read_header_info(self):
|
def read_header_info(self):
|
||||||
|
self._start_time_ns = np.uint64(0)
|
||||||
|
try:
|
||||||
|
start_time = self.rv('start_time')
|
||||||
|
except KeyError:
|
||||||
|
start_time = self.rv('start_time_fallback')
|
||||||
|
|
||||||
|
# extract start time as unix time, adding UTC offset of 1h to time string
|
||||||
|
if start_time.endswith('Z') and sys.version_info.minor<11:
|
||||||
|
# older python versions did not support Z format
|
||||||
|
start_time = start_time[:-1]
|
||||||
|
TZ = UTC
|
||||||
|
else:
|
||||||
|
TZ = AMOR_LOCAL_TIMEZONE
|
||||||
|
start_date = datetime.fromisoformat(start_time)
|
||||||
|
self.fileDate = start_date.replace(tzinfo=TZ)
|
||||||
|
self._start_time_ns = np.uint64(self.fileDate.timestamp()*1e9)
|
||||||
|
|
||||||
# read general information and first data set
|
# read general information and first data set
|
||||||
title = self.hdf['entry1/title'][0].decode('utf-8')
|
title = self.rv('title')
|
||||||
proposal_id = self.hdf['entry1/proposal_id'][0].decode('utf-8')
|
proposal_id = self.rv('proposal_id')
|
||||||
user_name = self.hdf['entry1/user/name'][0].decode('utf-8')
|
user_name = self.rv('user_name')
|
||||||
user_affiliation = 'unknown'
|
user_affiliation = 'unknown'
|
||||||
user_email = self.hdf['entry1/user/email'][0].decode('utf-8')
|
user_email = self.rv('user_email')
|
||||||
user_orcid = None
|
user_orcid = None
|
||||||
sampleName = self.hdf['entry1/sample/name'][0].decode('utf-8')
|
sampleName = self.rv('sample_name')
|
||||||
model = self.hdf['entry1/sample/model'][0].decode('utf-8')
|
instrumentName = 'Amor'
|
||||||
if 'stack:' in model:
|
source = self.rv('source_name')
|
||||||
|
sourceProbe = 'neutron'
|
||||||
|
model = self.rv('sample_model')
|
||||||
|
if 'stack' in model:
|
||||||
import yaml
|
import yaml
|
||||||
model = yaml.safe_load(model)
|
model = yaml.safe_load(model)
|
||||||
else:
|
else:
|
||||||
model = dict(stack=model)
|
model = dict(stack=model)
|
||||||
instrumentName = 'Amor'
|
|
||||||
source = self.hdf['entry1/Amor/source/name'][0].decode('utf-8')
|
|
||||||
sourceProbe = 'neutron'
|
|
||||||
start_time = self.hdf['entry1/start_time'][0].decode('utf-8')
|
|
||||||
# extract start time as unix time, adding UTC offset of 1h to time string
|
|
||||||
start_date = datetime.fromisoformat(start_time)
|
|
||||||
self.fileDate = start_date.replace(tzinfo=AMOR_LOCAL_TIMEZONE)
|
|
||||||
|
|
||||||
self.owner = fileio.Person(
|
self.owner = fileio.Person(
|
||||||
name=user_name,
|
name=user_name,
|
||||||
@@ -113,26 +184,42 @@ class AmorHeader:
|
|||||||
facility=source,
|
facility=source,
|
||||||
proposalID=proposal_id
|
proposalID=proposal_id
|
||||||
)
|
)
|
||||||
|
if model['stack'] == '':
|
||||||
|
om = None
|
||||||
|
else:
|
||||||
|
om = SampleModel.from_dict(model)
|
||||||
self.sample = fileio.Sample(
|
self.sample = fileio.Sample(
|
||||||
name=sampleName,
|
name=sampleName,
|
||||||
model=SampleModel.from_dict(model),
|
model=om,
|
||||||
sample_parameters=None,
|
sample_parameters={},
|
||||||
)
|
)
|
||||||
|
# while event times are not evaluated, use average_value reported in file for SEE
|
||||||
|
if self.hdf['entry1/sample'].get('temperature', None) is not None:
|
||||||
|
try:
|
||||||
|
sample_temperature = self.rv('sample_temperature')
|
||||||
|
except IndexError: pass
|
||||||
|
else:
|
||||||
|
self.sample.sample_parameters['temperature'] = fileio.Value(sample_temperature, unit='K')
|
||||||
|
if self.hdf['entry1/sample'].get('magnetic_field', None) is not None:
|
||||||
|
try:
|
||||||
|
sample_magnetic_field = self.rv('sample_magnetic_field')
|
||||||
|
except IndexError: pass
|
||||||
|
else:
|
||||||
|
self.sample.sample_parameters['magnetic_field'] = fileio.Value(sample_magnetic_field, unit='T')
|
||||||
|
|
||||||
def read_instrument_configuration(self):
|
def read_instrument_configuration(self):
|
||||||
chopperSeparation = float(np.take(self.hdf['entry1/Amor/chopper/pair_separation'], 0))
|
chopperSeparation = self.rv('chopper_separation')
|
||||||
detectorDistance = float(np.take(self.hdf['entry1/Amor/detector/transformation/distance'], 0))
|
detectorDistance = self.rv('detector_distance')
|
||||||
chopperDetectorDistance = detectorDistance-float(np.take(self.hdf['entry1/Amor/chopper/distance'], 0))
|
chopperDistance = self.rv('chopper_distance')
|
||||||
|
chopperDetectorDistance = detectorDistance - chopperDistance
|
||||||
|
|
||||||
polarizationConfigs = ['unpolarized', 'unpolarized', 'po', 'mo', 'op', 'pp', 'mp', 'om', 'pm', 'mm']
|
mu = self.rv('mu')
|
||||||
|
nu = self.rv('nu')
|
||||||
mu = self._replace_if_missing('instrument_control_parameters/mu', 'mu', float)
|
kap = self.rv('kap')
|
||||||
nu = self._replace_if_missing('instrument_control_parameters/nu', 'nu', float)
|
kad = self.rv('kad')
|
||||||
kap = self._replace_if_missing('instrument_control_parameters/kappa', 'kappa', float)
|
div = self.rv('div')
|
||||||
kad = self._replace_if_missing('instrument_control_parameters/kappa_offset', 'kad', float)
|
ch1TriggerPhase = self.rv('ch1_trigger_phase')
|
||||||
div = self._replace_if_missing('instrument_control_parameters/div', 'div', float)
|
ch2TriggerPhase = self.rv('ch2_trigger_phase')
|
||||||
ch1TriggerPhase = self._replace_if_missing('chopper/ch1_trigger_phase', 'ch1_trigger_phase', float)
|
|
||||||
ch2TriggerPhase = self._replace_if_missing('chopper/ch2_trigger_phase', 'ch2_trigger_phase', float)
|
|
||||||
try:
|
try:
|
||||||
chopperTriggerTime = (float(self.hdf['entry1/Amor/chopper/ch2_trigger/event_time_zero'][7]) \
|
chopperTriggerTime = (float(self.hdf['entry1/Amor/chopper/ch2_trigger/event_time_zero'][7]) \
|
||||||
-float(self.hdf['entry1/Amor/chopper/ch2_trigger/event_time_zero'][0])) \
|
-float(self.hdf['entry1/Amor/chopper/ch2_trigger/event_time_zero'][0])) \
|
||||||
@@ -140,8 +227,8 @@ class AmorHeader:
|
|||||||
chopperTriggerTimeDiff = float(self.hdf['entry1/Amor/chopper/ch2_trigger/event_time_offset'][2])
|
chopperTriggerTimeDiff = float(self.hdf['entry1/Amor/chopper/ch2_trigger/event_time_offset'][2])
|
||||||
except (KeyError, IndexError):
|
except (KeyError, IndexError):
|
||||||
logging.debug(' chopper speed and phase taken from .hdf file')
|
logging.debug(' chopper speed and phase taken from .hdf file')
|
||||||
chopperSpeed = self._replace_if_missing('chopper/rotation_speed', 'chopper_phase', float)
|
chopperSpeed = self.rv('chopper_speed')
|
||||||
chopperPhase = self._replace_if_missing('chopper/phase', 'chopper_phase', float)
|
chopperPhase = self.rv('chopper_phase')
|
||||||
tau = 30/chopperSpeed
|
tau = 30/chopperSpeed
|
||||||
else:
|
else:
|
||||||
tau = int(1e-6*chopperTriggerTime/2+0.5)*(1e-3)
|
tau = int(1e-6*chopperTriggerTime/2+0.5)*(1e-3)
|
||||||
@@ -153,8 +240,8 @@ class AmorHeader:
|
|||||||
chopperSeparation, detectorDistance, chopperDetectorDistance)
|
chopperSeparation, detectorDistance, chopperDetectorDistance)
|
||||||
self.timing = AmorTiming(ch1TriggerPhase, ch2TriggerPhase, chopperSpeed, chopperPhase, tau)
|
self.timing = AmorTiming(ch1TriggerPhase, ch2TriggerPhase, chopperSpeed, chopperPhase, tau)
|
||||||
|
|
||||||
polarizationConfigLabel = self._replace_if_missing('polarization/configuration/average_value', 'polarization_config_label', int, suffix='/*')
|
polarizationConfigLabel = self.rv('polarization_config_label')
|
||||||
polarizationConfig = fileio.Polarization(polarizationConfigs[polarizationConfigLabel])
|
polarizationConfig = fileio.Polarization(const.polarizationConfigs[polarizationConfigLabel])
|
||||||
logging.debug(f' polarization configuration: {polarizationConfig} (index {polarizationConfigLabel})')
|
logging.debug(f' polarization configuration: {polarizationConfig} (index {polarizationConfigLabel})')
|
||||||
|
|
||||||
|
|
||||||
@@ -163,9 +250,11 @@ class AmorHeader:
|
|||||||
round(mu+kap+kad+0.5*div, 3),
|
round(mu+kap+kad+0.5*div, 3),
|
||||||
'deg'),
|
'deg'),
|
||||||
wavelength = fileio.ValueRange(const.lamdaCut, const.lamdaMax, 'angstrom'),
|
wavelength = fileio.ValueRange(const.lamdaCut, const.lamdaMax, 'angstrom'),
|
||||||
#polarization = fileio.Polarization.unpolarized,
|
|
||||||
polarization = fileio.Polarization(polarizationConfig)
|
polarization = fileio.Polarization(polarizationConfig)
|
||||||
)
|
)
|
||||||
|
self.instrument_settings.qz = fileio.ValueRange(round(4*np.pi*np.sin(np.deg2rad(mu+kap+kad-0.5*div))/const.lamdaMax, 3),
|
||||||
|
round(4*np.pi*np.sin(np.deg2rad(mu+kap+kad+0.5*div))/const.lamdaCut, 3),
|
||||||
|
'1/angstrom')
|
||||||
self.instrument_settings.mu = fileio.Value(
|
self.instrument_settings.mu = fileio.Value(
|
||||||
round(mu, 3),
|
round(mu, 3),
|
||||||
'deg',
|
'deg',
|
||||||
@@ -223,7 +312,7 @@ class AmorEventData(AmorHeader):
|
|||||||
|
|
||||||
def __init__(self, fileName:Union[str, h5py.File, BinaryIO], first_index:int=0, max_events:int=100_000_000):
|
def __init__(self, fileName:Union[str, h5py.File, BinaryIO], first_index:int=0, max_events:int=100_000_000):
|
||||||
if type(fileName) is str:
|
if type(fileName) is str:
|
||||||
logging.debug(f' opening file {fileName}')
|
logging.warning(f' {fileName.split("/")[-1]}')
|
||||||
self.file_list = [fileName]
|
self.file_list = [fileName]
|
||||||
hdf = h5py.File(fileName, 'r', swmr=True)
|
hdf = h5py.File(fileName, 'r', swmr=True)
|
||||||
elif type(fileName) is h5py.File:
|
elif type(fileName) is h5py.File:
|
||||||
@@ -237,7 +326,13 @@ class AmorEventData(AmorHeader):
|
|||||||
|
|
||||||
super().__init__(hdf)
|
super().__init__(hdf)
|
||||||
self.hdf = hdf
|
self.hdf = hdf
|
||||||
self.read_event_stream()
|
try:
|
||||||
|
self.read_event_stream()
|
||||||
|
except EOFError:
|
||||||
|
self.hdf.close()
|
||||||
|
del(self.hdf)
|
||||||
|
raise
|
||||||
|
self.read_log_streams()
|
||||||
|
|
||||||
if type(fileName) is str:
|
if type(fileName) is str:
|
||||||
# close the input file to free memory, only if the file was opened in this object
|
# close the input file to free memory, only if the file was opened in this object
|
||||||
@@ -260,15 +355,26 @@ class AmorEventData(AmorHeader):
|
|||||||
raise EOFError(f'No event packet found starting at event #{self.first_index}, '
|
raise EOFError(f'No event packet found starting at event #{self.first_index}, '
|
||||||
f'number of events is {self.hdf["/entry1/Amor/detector/data/event_time_offset"].shape[0]}')
|
f'number of events is {self.hdf["/entry1/Amor/detector/data/event_time_offset"].shape[0]}')
|
||||||
packets = packets[start_packet:]
|
packets = packets[start_packet:]
|
||||||
|
if packets.shape[0]==0:
|
||||||
|
raise EOFError(f'No more packets left after start_packet filter')
|
||||||
|
|
||||||
nevts = self.hdf['/entry1/Amor/detector/data/event_time_offset'].shape[0]
|
nevts = self.hdf['/entry1/Amor/detector/data/event_time_offset'].shape[0]
|
||||||
if (nevts-self.first_index)>self.max_events:
|
if (nevts-self.first_index)>self.max_events:
|
||||||
end_packet = np.where(packets.start_index<=(self.first_index+self.max_events))[0][-1]
|
end_packet = np.where(packets.start_index<=(self.first_index+self.max_events))[0][-1]
|
||||||
self.last_index = packets.start_index[end_packet]-1
|
end_packet = max(1, end_packet)
|
||||||
|
if len(packets)==1:
|
||||||
|
self.last_index = nevts-1
|
||||||
|
else:
|
||||||
|
self.last_index = packets.start_index[end_packet]-1
|
||||||
packets = packets[:end_packet]
|
packets = packets[:end_packet]
|
||||||
else:
|
else:
|
||||||
self.last_index = nevts-1
|
self.last_index = nevts-1
|
||||||
self.EOF = True
|
self.EOF = True
|
||||||
|
|
||||||
|
if packets.shape[0]==0:
|
||||||
|
raise EOFError(f'No more packets left after end_packet filter, first_index={self.first_index}, '
|
||||||
|
f'max_events={self.max_events}, nevts={nevts}')
|
||||||
|
|
||||||
nevts = self.last_index+1-self.first_index
|
nevts = self.last_index+1-self.first_index
|
||||||
|
|
||||||
# adapte packet to event index relation
|
# adapte packet to event index relation
|
||||||
@@ -287,6 +393,45 @@ class AmorEventData(AmorHeader):
|
|||||||
# label the file name if not all events were used
|
# label the file name if not all events were used
|
||||||
self.file_list[0] += f'[{self.first_index}:{self.last_index}]'
|
self.file_list[0] += f'[{self.first_index}:{self.last_index}]'
|
||||||
|
|
||||||
|
def read_log_streams(self):
|
||||||
|
"""
|
||||||
|
Read the individual NXlog datasets that can later be used for filtering etc.
|
||||||
|
"""
|
||||||
|
for key in self._log_keys:
|
||||||
|
hdf_path, dtype, *_ = self.hdf_paths[key]
|
||||||
|
hdfgroup = self.hdf[hdf_path]
|
||||||
|
shape = hdfgroup['time'].shape
|
||||||
|
data = np.recarray(shape, dtype=np.dtype([('value', self.hdf_paths[key][1]), ('time', np.int64)]))
|
||||||
|
data.time = hdfgroup['time'][:]
|
||||||
|
if len(hdfgroup['value'].shape)==1:
|
||||||
|
data.value = hdfgroup['value'][:]
|
||||||
|
else:
|
||||||
|
data.value = hdfgroup['value'][:, 0]
|
||||||
|
self.data.device_logs[key] = data
|
||||||
|
|
||||||
|
def update_info_from_logs(self):
|
||||||
|
RELEVANT_ITEMS = ['sample_temperature', 'sample_magnetic_field', 'polarization_config_label']
|
||||||
|
for key, log in self.data.device_logs.items():
|
||||||
|
if key not in RELEVANT_ITEMS:
|
||||||
|
continue
|
||||||
|
if log.value.dtype in [np.int8, np.int16, np.int32, np.int64]:
|
||||||
|
# for integer items (flags) report the most common one
|
||||||
|
value = np.bincount(log.value).argmax()
|
||||||
|
if logging.getLogger().getEffectiveLevel() <= logging.DEBUG \
|
||||||
|
and np.unique(log.value).shape[0]>1:
|
||||||
|
logging.debug(f' filtered values for {key} not unique, '
|
||||||
|
f'has {np.unique(log.value).shape[0]} values')
|
||||||
|
else:
|
||||||
|
value = log.value.mean()
|
||||||
|
if key == 'polarization_config_label':
|
||||||
|
self.instrument_settings.polarization = fileio.Polarization(const.polarizationConfigs[value])
|
||||||
|
elif key == 'sample_temperature':
|
||||||
|
self.sample.sample_parameters['temperature'].magnitue = value
|
||||||
|
elif key == 'sample_magnetic_field':
|
||||||
|
self.sample.sample_parameters['magnetic_field'].magnitue = value
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def read_chopper_trigger_stream(self, packets):
|
def read_chopper_trigger_stream(self, packets):
|
||||||
chopper1TriggerTime = np.array(self.hdf['entry1/Amor/chopper/ch2_trigger/event_time_zero'][:-2], dtype=np.int64)
|
chopper1TriggerTime = np.array(self.hdf['entry1/Amor/chopper/ch2_trigger/event_time_zero'][:-2], dtype=np.int64)
|
||||||
#self.chopper2TriggerTime = self.chopper1TriggerTime + np.array(self.hdf['entry1/Amor/chopper/ch2_trigger/event_time'][:-2], dtype=np.int64)
|
#self.chopper2TriggerTime = self.chopper1TriggerTime + np.array(self.hdf['entry1/Amor/chopper/ch2_trigger/event_time'][:-2], dtype=np.int64)
|
||||||
@@ -295,7 +440,7 @@ class AmorEventData(AmorHeader):
|
|||||||
startTime = chopper1TriggerTime[0]
|
startTime = chopper1TriggerTime[0]
|
||||||
pulseTimeS = chopper1TriggerTime
|
pulseTimeS = chopper1TriggerTime
|
||||||
else:
|
else:
|
||||||
logging.warn(' no chopper trigger data available, using event steram instead')
|
logging.critical(' No chopper trigger data available, using event steram instead, pulse filtering will fail!')
|
||||||
startTime = np.array(self.hdf['/entry1/Amor/detector/data/event_time_zero'][0], dtype=np.int64)
|
startTime = np.array(self.hdf['/entry1/Amor/detector/data/event_time_zero'][0], dtype=np.int64)
|
||||||
stopTime = np.array(self.hdf['/entry1/Amor/detector/data/event_time_zero'][-2], dtype=np.int64)
|
stopTime = np.array(self.hdf['/entry1/Amor/detector/data/event_time_zero'][-2], dtype=np.int64)
|
||||||
pulseTimeS = np.arange(startTime, stopTime, self.timing.tau*1e9, dtype=np.int64)
|
pulseTimeS = np.arange(startTime, stopTime, self.timing.tau*1e9, dtype=np.int64)
|
||||||
@@ -303,7 +448,7 @@ class AmorEventData(AmorHeader):
|
|||||||
pulses.time = pulseTimeS
|
pulses.time = pulseTimeS
|
||||||
pulses.monitor = 1. # default is monitor pulses as it requires no calculation
|
pulses.monitor = 1. # default is monitor pulses as it requires no calculation
|
||||||
# apply filter in case the events were filtered
|
# apply filter in case the events were filtered
|
||||||
if self.first_index>0 or not self.EOF:
|
if (self.first_index>0 or not self.EOF):
|
||||||
pulses = pulses[(pulses.time>=packets.time[0])&(pulses.time<=packets.time[-1])]
|
pulses = pulses[(pulses.time>=packets.time[0])&(pulses.time<=packets.time[-1])]
|
||||||
self.eventStartTime = startTime
|
self.eventStartTime = startTime
|
||||||
return pulses
|
return pulses
|
||||||
@@ -311,7 +456,11 @@ class AmorEventData(AmorHeader):
|
|||||||
def read_proton_current_stream(self, packets):
|
def read_proton_current_stream(self, packets):
|
||||||
proton_current = np.recarray(self.hdf['entry1/Amor/detector/proton_current/time'].shape, dtype=PC_TYPE)
|
proton_current = np.recarray(self.hdf['entry1/Amor/detector/proton_current/time'].shape, dtype=PC_TYPE)
|
||||||
proton_current.time = self.hdf['entry1/Amor/detector/proton_current/time'][:]
|
proton_current.time = self.hdf['entry1/Amor/detector/proton_current/time'][:]
|
||||||
proton_current.current = self.hdf['entry1/Amor/detector/proton_current/value'][:,0]
|
if self.hdf['entry1/Amor/detector/proton_current/value'].ndim==1:
|
||||||
|
proton_current.current = self.hdf['entry1/Amor/detector/proton_current/value'][:]
|
||||||
|
else:
|
||||||
|
proton_current.current = self.hdf['entry1/Amor/detector/proton_current/value'][:,0]
|
||||||
|
|
||||||
if self.first_index>0 or not self.EOF:
|
if self.first_index>0 or not self.EOF:
|
||||||
proton_current = proton_current[(proton_current.time>=packets.time[0])&
|
proton_current = proton_current[(proton_current.time>=packets.time[0])&
|
||||||
(proton_current.time<=packets.time[-1])]
|
(proton_current.time<=packets.time[-1])]
|
||||||
|
|||||||
@@ -1,10 +1,35 @@
|
|||||||
"""
|
"""
|
||||||
Helper functions used during calculations. Uses numba enhanced functions if available, otherwise numpy based
|
Helper functions used during calculations. Uses numba enhanced functions if available, otherwise numpy based
|
||||||
fallback is imported.
|
fallback is imported.
|
||||||
"""
|
"""
|
||||||
|
import numpy as np
|
||||||
try:
|
from .event_data_types import EventDatasetProtocol, append_fields
|
||||||
from .helpers_numba import merge_frames, extract_walltime, filter_project_x, calculate_derived_properties_focussing
|
|
||||||
except ImportError:
|
try:
|
||||||
from .helpers_fallback import merge_frames, extract_walltime, filter_project_x, calculate_derived_properties_focussing
|
from .helpers_numba import merge_frames, extract_walltime, filter_project_x, calculate_derived_properties_focussing
|
||||||
|
except ImportError:
|
||||||
|
from .helpers_fallback import merge_frames, extract_walltime, filter_project_x, calculate_derived_properties_focussing
|
||||||
|
|
||||||
|
def add_log_to_pulses(key, dataset: EventDatasetProtocol):
|
||||||
|
"""
|
||||||
|
Add a log value for each pulse to the pulses array.
|
||||||
|
"""
|
||||||
|
pulses = dataset.data.pulses
|
||||||
|
log_data = dataset.data.device_logs[key]
|
||||||
|
if log_data.time[0]>0:
|
||||||
|
logTimeS = np.hstack([[0], log_data.time, [pulses.time[-1]+1]])
|
||||||
|
logValues = np.hstack([[log_data.value[0]], log_data.value])
|
||||||
|
else:
|
||||||
|
logTimeS = np.hstack([log_data.time, [pulses.time[-1]+1]])
|
||||||
|
logValues = log_data.value
|
||||||
|
pulseLogS = np.zeros(pulses.time.shape[0], dtype=log_data.value.dtype)
|
||||||
|
j = 0
|
||||||
|
for i, ti in enumerate(pulses.time):
|
||||||
|
# find the last current item that was before this pulse
|
||||||
|
while ti>=logTimeS[j+1]:
|
||||||
|
j += 1
|
||||||
|
pulseLogS[i] = logValues[j]
|
||||||
|
pulses = append_fields(pulses, [(key, pulseLogS.dtype)])
|
||||||
|
pulses[key] = pulseLogS
|
||||||
|
dataset.data.pulses = pulses
|
||||||
|
|
||||||
|
|||||||
@@ -65,9 +65,14 @@ class LZGrid:
|
|||||||
def qzRange(self):
|
def qzRange(self):
|
||||||
return self._qzRange
|
return self._qzRange
|
||||||
|
|
||||||
def __init__(self, qResolution, qzRange):
|
def __init__(self, qResolution, qzRange, lambda_overwrite=None):
|
||||||
self._qResolution = qResolution
|
self._qResolution = qResolution
|
||||||
self._qzRange = qzRange
|
self._qzRange = qzRange
|
||||||
|
if lambda_overwrite is None:
|
||||||
|
self.lamdaMax = const.lamdaMax
|
||||||
|
self.lamdaCut = const.lamdaCut
|
||||||
|
else:
|
||||||
|
self.lamdaCut, self.lamdaMax = lambda_overwrite
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@cache
|
@cache
|
||||||
@@ -92,8 +97,8 @@ class LZGrid:
|
|||||||
|
|
||||||
@cache
|
@cache
|
||||||
def lamda(self):
|
def lamda(self):
|
||||||
lamdaMax = 16
|
lamdaMax = self.lamdaMax
|
||||||
lamdaMin = const.lamdaCut
|
lamdaMin = self.lamdaCut
|
||||||
lamda_grid = lamdaMin*(1+self.dldl)**np.arange(int(np.log(lamdaMax/lamdaMin)/np.log(1+self.dldl)+1))
|
lamda_grid = lamdaMin*(1+self.dldl)**np.arange(int(np.log(lamdaMax/lamdaMin)/np.log(1+self.dldl)+1))
|
||||||
return lamda_grid
|
return lamda_grid
|
||||||
|
|
||||||
|
|||||||
165
eos/kafka_events.py
Normal file
165
eos/kafka_events.py
Normal file
@@ -0,0 +1,165 @@
|
|||||||
|
"""
|
||||||
|
Collect AMOR detector events send via Kafka.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import logging
|
||||||
|
import numpy as np
|
||||||
|
from threading import Thread, Event
|
||||||
|
from time import time
|
||||||
|
|
||||||
|
from .event_data_types import AmorGeometry, AmorTiming, AmorEventStream, PACKET_TYPE, EVENT_TYPE, PULSE_TYPE, PC_TYPE
|
||||||
|
|
||||||
|
from uuid import uuid4
|
||||||
|
from streaming_data_types.eventdata_ev44 import EventData
|
||||||
|
from streaming_data_types.logdata_f144 import ExtractedLogData
|
||||||
|
from streaming_data_types import deserialise_f144, deserialise_ev44
|
||||||
|
from confluent_kafka import Consumer
|
||||||
|
|
||||||
|
from .header import Header
|
||||||
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
from streaming_data_types.utils import get_schema
|
||||||
|
except ImportError:
|
||||||
|
from streaming_data_types.utils import _get_schema as get_schema
|
||||||
|
|
||||||
|
|
||||||
|
KAFKA_BROKER = 'linkafka01.psi.ch:9092'
|
||||||
|
AMOR_EVENTS = 'amor_detector'
|
||||||
|
AMOR_NICOS = 'amor_nicosForwarder'
|
||||||
|
|
||||||
|
class KafkaFrozenData:
|
||||||
|
"""
|
||||||
|
Represents event stream data from Kafka at a given time.
|
||||||
|
Will be returned by KafkaEventData to be use in conjunction
|
||||||
|
with data processing and projections.
|
||||||
|
|
||||||
|
Implements EventDatasetProtocol
|
||||||
|
"""
|
||||||
|
geometry: AmorGeometry
|
||||||
|
timing: AmorTiming
|
||||||
|
data: AmorEventStream
|
||||||
|
|
||||||
|
def __init__(self, geometry, timing, data, monitor=1.):
|
||||||
|
self.geometry = geometry
|
||||||
|
self.timing = timing
|
||||||
|
self.data = data
|
||||||
|
self.monitor = monitor
|
||||||
|
|
||||||
|
def append(self, other):
|
||||||
|
raise NotImplementedError("can't append live datastream to other event data")
|
||||||
|
|
||||||
|
def update_header(self, header:Header):
|
||||||
|
# maybe makes sense later, but for now just used for live vizualization
|
||||||
|
...
|
||||||
|
|
||||||
|
class KafkaEventData(Thread):
|
||||||
|
"""
|
||||||
|
Read Nicos information and events from Kafka. Creates a background
|
||||||
|
thread that listens to Kafka events and converts them to eos compatible information.
|
||||||
|
"""
|
||||||
|
geometry: AmorGeometry
|
||||||
|
timing: AmorTiming
|
||||||
|
events: np.recarray
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.stop_event = Event()
|
||||||
|
self.stop_counting = Event()
|
||||||
|
self.new_events = Event()
|
||||||
|
self.last_read = 0
|
||||||
|
self.last_read_time = 0.
|
||||||
|
self.start_time = time()
|
||||||
|
self.consumer = Consumer(
|
||||||
|
{'bootstrap.servers': 'linkafka01.psi.ch:9092',
|
||||||
|
'group.id': uuid4()})
|
||||||
|
self.consumer.subscribe([AMOR_EVENTS, AMOR_NICOS])
|
||||||
|
self.geometry = AmorGeometry(1.0, 2.0, 0., 0., 1.5, 10.0, 4.0, 10.0)
|
||||||
|
self.timing = AmorTiming(0., 0., 500., 0., 30./500.)
|
||||||
|
# create empty dataset
|
||||||
|
self.events = np.recarray(0, dtype=EVENT_TYPE)
|
||||||
|
super().__init__()
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
while not self.stop_event.is_set():
|
||||||
|
messages = self.consumer.consume(10, timeout=1)
|
||||||
|
for message in messages:
|
||||||
|
self.process_message(message)
|
||||||
|
|
||||||
|
def process_message(self, message):
|
||||||
|
if message.error():
|
||||||
|
logging.info(f" received Kafka message with error: {message.error()}")
|
||||||
|
return
|
||||||
|
schema = get_schema(message.value())
|
||||||
|
if message.topic()==AMOR_EVENTS and schema=='ev44':
|
||||||
|
events:EventData = deserialise_ev44(message.value())
|
||||||
|
self.add_events(events)
|
||||||
|
self.new_events.set()
|
||||||
|
logging.debug(f' new events {events}')
|
||||||
|
elif message.topic()==AMOR_NICOS and schema=='f144':
|
||||||
|
nicos_data:ExtractedLogData = deserialise_f144(message.value())
|
||||||
|
if nicos_data.source_name in self.nicos_mapping.keys():
|
||||||
|
logging.debug(f' {nicos_data.source_name} = {nicos_data.value}')
|
||||||
|
self.update_instrument(nicos_data)
|
||||||
|
|
||||||
|
def add_events(self, events:EventData):
|
||||||
|
"""
|
||||||
|
Add new events to the Dataset. The object keeps raw events
|
||||||
|
and only copies the latest set to the self.data object,
|
||||||
|
this allows to run the event processing to be performed on a "clean"
|
||||||
|
evnet stream each time.
|
||||||
|
"""
|
||||||
|
if self.stop_counting.is_set():
|
||||||
|
return
|
||||||
|
prev_size = self.events.shape[0]
|
||||||
|
new_events = events.pixel_id.shape[0]
|
||||||
|
self.events.resize(prev_size+new_events, refcheck=False)
|
||||||
|
self.events.pixelID[prev_size:] = events.pixel_id
|
||||||
|
self.events.mask[prev_size:] = 0
|
||||||
|
self.events.tof[prev_size:] = events.time_of_flight/1.e9
|
||||||
|
|
||||||
|
nicos_mapping = {
|
||||||
|
'mu': ('geometry', 'mu'),
|
||||||
|
'nu': ('geometry', 'nu'),
|
||||||
|
'kappa': ('geometry', 'kap'),
|
||||||
|
'kappa_offset': ('geometry', 'kad'),
|
||||||
|
'ch1_trigger_phase': ('timing', 'ch1TriggerPhase'),
|
||||||
|
'ch2_trigger_phase': ('timing', 'ch2TriggerPhase'),
|
||||||
|
'ch2_speed': ('timing', 'chopperSpeed'),
|
||||||
|
'chopper_phase': ('timing', 'chopperPhase'),
|
||||||
|
}
|
||||||
|
|
||||||
|
def update_instrument(self, nicos_data:ExtractedLogData):
|
||||||
|
if nicos_data.source_name in self.nicos_mapping:
|
||||||
|
attr, subattr = self.nicos_mapping[nicos_data.source_name]
|
||||||
|
setattr(getattr(self, attr), subattr, nicos_data.value)
|
||||||
|
if nicos_data.source_name=='ch2_speed':
|
||||||
|
self.timing.tau = 30./self.timing.chopperSpeed
|
||||||
|
|
||||||
|
def monitor(self):
|
||||||
|
return time()-self.start_time
|
||||||
|
|
||||||
|
def restart(self):
|
||||||
|
# empty event buffer
|
||||||
|
self.events = np.recarray(0, dtype=EVENT_TYPE)
|
||||||
|
self.stop_counting.clear()
|
||||||
|
self.last_read = 0
|
||||||
|
self.start_time = time()
|
||||||
|
self.new_events.clear()
|
||||||
|
|
||||||
|
def get_events(self, total_counts=False):
|
||||||
|
packets = np.recarray(0, dtype=PACKET_TYPE)
|
||||||
|
pulses = np.recarray(0, dtype=PULSE_TYPE)
|
||||||
|
pc = np.recarray(0, dtype=PC_TYPE)
|
||||||
|
if total_counts:
|
||||||
|
last_read = 0
|
||||||
|
else:
|
||||||
|
last_read = self.last_read
|
||||||
|
if last_read>=self.events.shape[0]:
|
||||||
|
raise EOFError("No new events arrived")
|
||||||
|
data = AmorEventStream(self.events[last_read:].copy(), packets, pulses, pc)
|
||||||
|
self.last_read = self.events.shape[0]
|
||||||
|
self.new_events.clear()
|
||||||
|
t_now = time()
|
||||||
|
monitor = t_now-self.last_read_time
|
||||||
|
self.last_read_time = t_now
|
||||||
|
return KafkaFrozenData(self.geometry, self.timing, data, monitor=monitor)
|
||||||
283
eos/kafka_serializer.py
Normal file
283
eos/kafka_serializer.py
Normal file
@@ -0,0 +1,283 @@
|
|||||||
|
"""
|
||||||
|
Allows to send eos projections to Kafka using ESS histogram serialization.
|
||||||
|
|
||||||
|
For histogram_h01 the message is build using:
|
||||||
|
|
||||||
|
hist = {
|
||||||
|
"source": "some_source",
|
||||||
|
"timestamp": 123456,
|
||||||
|
"current_shape": [2, 5],
|
||||||
|
"dim_metadata": [
|
||||||
|
{
|
||||||
|
"length": 2,
|
||||||
|
"unit": "a",
|
||||||
|
"label": "x",
|
||||||
|
"bin_boundaries": np.array([10, 11, 12]),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"length": 5,
|
||||||
|
"unit": "b",
|
||||||
|
"label": "y",
|
||||||
|
"bin_boundaries": np.array([0, 1, 2, 3, 4, 5]),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
"last_metadata_timestamp": 123456,
|
||||||
|
"data": np.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]]),
|
||||||
|
"errors": np.array([[5, 4, 3, 2, 1], [10, 9, 8, 7, 6]]),
|
||||||
|
"info": "info_string",
|
||||||
|
}
|
||||||
|
"""
|
||||||
|
import logging
|
||||||
|
from typing import List, Tuple, Union
|
||||||
|
from threading import Thread, Event
|
||||||
|
|
||||||
|
import numpy as np
|
||||||
|
import json
|
||||||
|
from time import time
|
||||||
|
from dataclasses import dataclass, asdict
|
||||||
|
from streaming_data_types import histogram_hs01
|
||||||
|
from confluent_kafka import Producer, Consumer
|
||||||
|
|
||||||
|
from uuid import uuid4
|
||||||
|
|
||||||
|
from .projection import TofZProjection, YZProjection
|
||||||
|
|
||||||
|
KAFKA_BROKER = 'linkafka01.psi.ch:9092'
|
||||||
|
KAFKA_TOPICS = {
|
||||||
|
'histogram': 'amor_histograms',
|
||||||
|
'response': 'amor_histResponse',
|
||||||
|
'command': 'amor_histCommands'
|
||||||
|
}
|
||||||
|
|
||||||
|
def ktime():
|
||||||
|
return int(time()*1_000)
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class DimMetadata:
|
||||||
|
length: int
|
||||||
|
unit: str
|
||||||
|
label: str
|
||||||
|
bin_boundaries: np.ndarray
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class HistogramMessage:
|
||||||
|
source: str
|
||||||
|
timestamp: int
|
||||||
|
current_shape: Tuple[int, int]
|
||||||
|
dim_metadata: Tuple[DimMetadata, DimMetadata]
|
||||||
|
last_metadata_timestamp: int
|
||||||
|
data: np.ndarray
|
||||||
|
errors: np.ndarray
|
||||||
|
info: str
|
||||||
|
|
||||||
|
def serialize(self):
|
||||||
|
return histogram_hs01.serialise_hs01(asdict(self))
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class CommandMessage:
|
||||||
|
msg_id: str
|
||||||
|
|
||||||
|
cmd=None
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def get_message(cls, data):
|
||||||
|
"""
|
||||||
|
Uses the sub-class cmd attribute to select which message to retugn
|
||||||
|
"""
|
||||||
|
msg = dict([(ci.cmd, ci) for ci in cls.__subclasses__()])
|
||||||
|
return msg[data['cmd']](**data)
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class Stop(CommandMessage):
|
||||||
|
hist_id: str
|
||||||
|
id: str
|
||||||
|
cmd:str = 'stop'
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class HistogramConfig:
|
||||||
|
id: str
|
||||||
|
type: str
|
||||||
|
data_brokers: List[str]
|
||||||
|
topic: str
|
||||||
|
data_topics: List[str]
|
||||||
|
tof_range: Tuple[float, float]
|
||||||
|
det_range: Tuple[int, int]
|
||||||
|
num_bins: int
|
||||||
|
width: int
|
||||||
|
height: int
|
||||||
|
left_edges: list
|
||||||
|
source: str
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class ConfigureHistogram(CommandMessage):
|
||||||
|
histograms: List[HistogramConfig]
|
||||||
|
start: int
|
||||||
|
cmd:str = 'config'
|
||||||
|
|
||||||
|
def __post_init__(self):
|
||||||
|
self.histograms = [HistogramConfig(**cfg) for cfg in self.histograms]
|
||||||
|
|
||||||
|
|
||||||
|
class ESSSerializer:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.producer = Producer({
|
||||||
|
'bootstrap.servers': KAFKA_BROKER,
|
||||||
|
'message.max.bytes': 4_000_000,
|
||||||
|
})
|
||||||
|
self.consumer = Consumer({
|
||||||
|
'bootstrap.servers': KAFKA_BROKER,
|
||||||
|
"group.id": uuid4(),
|
||||||
|
"default.topic.config": {"auto.offset.reset": "latest"},
|
||||||
|
})
|
||||||
|
self._active_histogram_yz = None
|
||||||
|
self._active_histogram_tofz = None
|
||||||
|
self.new_count_started = Event()
|
||||||
|
self.count_stopped = Event()
|
||||||
|
|
||||||
|
self.consumer.subscribe([KAFKA_TOPICS['command']])
|
||||||
|
|
||||||
|
def process_message(self, message):
|
||||||
|
if message.error():
|
||||||
|
logging.error("Command Consumer Error: %s", message.error())
|
||||||
|
else:
|
||||||
|
command = json.loads(message.value().decode())
|
||||||
|
try:
|
||||||
|
command = CommandMessage.get_message(command)
|
||||||
|
except Exception:
|
||||||
|
logging.error(f'Could not interpret message: \n{command}', exc_info=True)
|
||||||
|
return
|
||||||
|
logging.info(command)
|
||||||
|
resp = json.dumps({
|
||||||
|
"msg_id": getattr(command, "id", None) or command.msg_id,
|
||||||
|
"response": "ACK",
|
||||||
|
"message": ""
|
||||||
|
})
|
||||||
|
self.producer.produce(
|
||||||
|
topic=KAFKA_TOPICS['response'],
|
||||||
|
value=resp
|
||||||
|
)
|
||||||
|
self.producer.flush()
|
||||||
|
if isinstance(command, Stop):
|
||||||
|
if command.hist_id in [self._active_histogram_yz, self._active_histogram_tofz]:
|
||||||
|
self.count_stopped.set()
|
||||||
|
else:
|
||||||
|
return
|
||||||
|
elif isinstance(command, ConfigureHistogram):
|
||||||
|
for hist in command.histograms:
|
||||||
|
if hist.topic == KAFKA_TOPICS['histogram']+'_YZ':
|
||||||
|
self._active_histogram_yz = hist.id
|
||||||
|
logging.debug(f" histogram data_topic: {hist.data_topics}")
|
||||||
|
self._start = command.start
|
||||||
|
self.count_stopped.clear()
|
||||||
|
self.new_count_started.set()
|
||||||
|
if hist.topic == KAFKA_TOPICS['histogram']+'_TofZ':
|
||||||
|
self._active_histogram_tofz = hist.id
|
||||||
|
|
||||||
|
def receive(self, timeout=5):
|
||||||
|
rec = self.consumer.poll(timeout)
|
||||||
|
if rec is not None:
|
||||||
|
self.process_message(rec)
|
||||||
|
return True
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
|
||||||
|
def receive_loop(self):
|
||||||
|
while not self._stop_receiving.is_set():
|
||||||
|
try:
|
||||||
|
self.receive()
|
||||||
|
except Exception:
|
||||||
|
logging.error("Exception while receiving", exc_info=True)
|
||||||
|
|
||||||
|
def start_command_thread(self):
|
||||||
|
self._stop_receiving = Event()
|
||||||
|
self._command_thread = Thread(target=self.receive_loop)
|
||||||
|
self._command_thread.start()
|
||||||
|
|
||||||
|
def end_command_thread(self, event=None):
|
||||||
|
self._stop_receiving.set()
|
||||||
|
self._command_thread.join()
|
||||||
|
|
||||||
|
def acked(self, err, msg):
|
||||||
|
# We need to have callback to produce-method to catch server errors
|
||||||
|
if err is not None:
|
||||||
|
logging.warning("Failed to deliver message: %s: %s" % (str(msg), str(err)))
|
||||||
|
else:
|
||||||
|
logging.debug("Message produced: %s" % (str(msg)))
|
||||||
|
|
||||||
|
def send(self, proj: Union[YZProjection, TofZProjection], final=False):
|
||||||
|
if final:
|
||||||
|
state = 'FINISHED'
|
||||||
|
else:
|
||||||
|
state = 'COUNTING'
|
||||||
|
if isinstance(proj, YZProjection):
|
||||||
|
if self._active_histogram_yz is None:
|
||||||
|
return
|
||||||
|
suffix = 'YZ'
|
||||||
|
message = HistogramMessage(
|
||||||
|
source='amor-eos',
|
||||||
|
timestamp=ktime(),
|
||||||
|
current_shape=(proj.y.shape[0]-1, proj.z.shape[0]-1),
|
||||||
|
dim_metadata=(
|
||||||
|
DimMetadata(
|
||||||
|
length=proj.y.shape[0]-1,
|
||||||
|
unit="pixel",
|
||||||
|
label="Y",
|
||||||
|
bin_boundaries=proj.y,
|
||||||
|
),
|
||||||
|
DimMetadata(
|
||||||
|
length=proj.z.shape[0]-1,
|
||||||
|
unit="pixel",
|
||||||
|
label="Z",
|
||||||
|
bin_boundaries=proj.z,
|
||||||
|
)
|
||||||
|
),
|
||||||
|
last_metadata_timestamp=0,
|
||||||
|
data=proj.data.cts,
|
||||||
|
errors=np.sqrt(proj.data.cts),
|
||||||
|
info=json.dumps({
|
||||||
|
"start": self._start,
|
||||||
|
"state": state,
|
||||||
|
"num events": proj.data.cts.sum()
|
||||||
|
})
|
||||||
|
)
|
||||||
|
logging.info(f" {state}: Sending {proj.data.cts.sum()} events to Nicos")
|
||||||
|
elif isinstance(proj, TofZProjection):
|
||||||
|
if self._active_histogram_tofz is None:
|
||||||
|
return
|
||||||
|
suffix = 'TofZ'
|
||||||
|
message = HistogramMessage(
|
||||||
|
source='amor-eos',
|
||||||
|
timestamp=ktime(),
|
||||||
|
current_shape=(proj.tof.shape[0]-1, proj.z.shape[0]-1),
|
||||||
|
dim_metadata=(
|
||||||
|
DimMetadata(
|
||||||
|
length=proj.tof.shape[0]-1,
|
||||||
|
unit="ms",
|
||||||
|
label="ToF",
|
||||||
|
bin_boundaries=proj.tof,
|
||||||
|
),
|
||||||
|
DimMetadata(
|
||||||
|
length=proj.z.shape[0]-1,
|
||||||
|
unit="pixel",
|
||||||
|
label="Z",
|
||||||
|
bin_boundaries=proj.z,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
last_metadata_timestamp=0,
|
||||||
|
data=proj.data.cts,
|
||||||
|
errors=np.sqrt(proj.data.cts),
|
||||||
|
info=json.dumps({
|
||||||
|
"start": self._start,
|
||||||
|
"state": state,
|
||||||
|
"num events": proj.data.I.sum()
|
||||||
|
})
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
raise NotImplementedError(f"Histogram for {proj.__class__.__name__} not implemented")
|
||||||
|
|
||||||
|
self.producer.produce(value=message.serialize(),
|
||||||
|
topic=KAFKA_TOPICS['histogram']+'_'+suffix,
|
||||||
|
callback=self.acked)
|
||||||
|
self.producer.flush()
|
||||||
54
eos/ls.py
Normal file
54
eos/ls.py
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
"""
|
||||||
|
eosls executable script to list available datafiles in current folder with some metadata information.
|
||||||
|
|
||||||
|
Author: Jochen Stahn (algorithms, python draft),
|
||||||
|
Artur Glavic (structuring and optimisation of code)
|
||||||
|
"""
|
||||||
|
import os
|
||||||
|
import logging
|
||||||
|
|
||||||
|
from eos.command_line import commandLineArgs
|
||||||
|
|
||||||
|
def main():
|
||||||
|
logging.getLogger().setLevel(logging.CRITICAL)
|
||||||
|
clas = commandLineArgs([], 'eosls', extra_args=[
|
||||||
|
dict(dest='path', nargs='*', default=['.'], help='paths to list file in')])
|
||||||
|
|
||||||
|
from glob import glob
|
||||||
|
import tabulate
|
||||||
|
from eos.file_reader import AmorHeader
|
||||||
|
|
||||||
|
files = []
|
||||||
|
for path in clas.path:
|
||||||
|
files+=glob(os.path.join(path, 'amor*.hdf'))
|
||||||
|
files.sort()
|
||||||
|
|
||||||
|
data = {
|
||||||
|
'File name': [],
|
||||||
|
'Start Time': [],
|
||||||
|
'mu': [],
|
||||||
|
'nu': [],
|
||||||
|
'div': [],
|
||||||
|
'Sample': [],
|
||||||
|
'T [K]': [],
|
||||||
|
'H [T]': [],
|
||||||
|
}
|
||||||
|
for fi in files:
|
||||||
|
data['File name'].append(os.path.basename(fi))
|
||||||
|
ah = AmorHeader(fi)
|
||||||
|
data['Sample'].append(ah.sample.name)
|
||||||
|
data['Start Time'].append(ah.fileDate.strftime('%y %m-%d %H:%M:%S'))
|
||||||
|
data['mu'].append('%.3f' % ah.geometry.mu)
|
||||||
|
data['nu'].append('%.3f' % ah.geometry.nu)
|
||||||
|
data['div'].append('%.3f' % ah.geometry.div)
|
||||||
|
|
||||||
|
T = ah.sample.sample_parameters.get('temperature', None)
|
||||||
|
data['T [K]'].append(T.magnitude if T is not None else '-')
|
||||||
|
|
||||||
|
H = ah.sample.sample_parameters.get('magnetic_field', None)
|
||||||
|
data['H [T]'].append(H.magnitude if H is not None else '-')
|
||||||
|
|
||||||
|
print(tabulate.tabulate(data, headers="keys"))
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
46
eos/nicos.py
Normal file
46
eos/nicos.py
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
"""
|
||||||
|
amor-nicos vizualising data from Amor@SINQ, PSI
|
||||||
|
|
||||||
|
Author: Jochen Stahn (algorithms, python draft),
|
||||||
|
Artur Glavic (structuring and optimisation of code)
|
||||||
|
"""
|
||||||
|
import logging
|
||||||
|
|
||||||
|
# need to do absolute import here as pyinstaller requires it
|
||||||
|
from eos.options import E2HConfig, ReaderConfig, ExperimentConfig, E2HReductionConfig
|
||||||
|
from eos.command_line import commandLineArgs
|
||||||
|
from eos.logconfig import setup_logging, update_loglevel
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
setup_logging()
|
||||||
|
logging.getLogger('matplotlib').setLevel(logging.WARNING)
|
||||||
|
|
||||||
|
# read command line arguments and generate classes holding configuration parameters
|
||||||
|
clas = commandLineArgs([ReaderConfig, ExperimentConfig, E2HReductionConfig],
|
||||||
|
'amor-nicos')
|
||||||
|
update_loglevel(clas.verbose)
|
||||||
|
if clas.verbose<2:
|
||||||
|
# only log info level in logfile
|
||||||
|
logger = logging.getLogger() # logging.getLogger('quicknxs')
|
||||||
|
logger.setLevel(logging.INFO)
|
||||||
|
|
||||||
|
reader_config = ReaderConfig.from_args(clas)
|
||||||
|
experiment_config = ExperimentConfig.from_args(clas)
|
||||||
|
reduction_config = E2HReductionConfig.from_args(clas)
|
||||||
|
config = E2HConfig(reader_config, experiment_config, reduction_config)
|
||||||
|
|
||||||
|
logging.warning('######## amor-nicos - Nicos histogram for Amor ########')
|
||||||
|
from eos.reduction_kafka import KafkaReduction
|
||||||
|
|
||||||
|
# only import heavy module if sufficient command line parameters were provided
|
||||||
|
from eos.reduction_reflectivity import ReflectivityReduction
|
||||||
|
# Create reducer with these arguments
|
||||||
|
reducer = KafkaReduction(config)
|
||||||
|
# Perform actual reduction
|
||||||
|
reducer.reduce()
|
||||||
|
|
||||||
|
logging.info('######## amor-nicos - finished ########')
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
60
eos/nicos_interface.py
Normal file
60
eos/nicos_interface.py
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
"""
|
||||||
|
Functions used to directly access information from nicos.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import socket
|
||||||
|
import platform
|
||||||
|
import logging
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
ON_AMOR = platform.node().startswith('amor')
|
||||||
|
NICOS_CACHE_DIR = '/home/data/nicosdata/cache/'
|
||||||
|
GREP = '/usr/bin/grep "value"'
|
||||||
|
|
||||||
|
|
||||||
|
def lookup_nicos_value(key, nicos_key, dtype=float, suffix='', year="2026"):
|
||||||
|
# TODO: Implement direct communication to nicos to read the cache
|
||||||
|
if nicos_key=='ignore':
|
||||||
|
return dtype(0)
|
||||||
|
try:
|
||||||
|
logging.debug(f' trying socket request for device {nicos_key}')
|
||||||
|
response = nicos_single_request(nicos_key)
|
||||||
|
logging.info(f" using parameter {nicos_key} from nicos cache via socket")
|
||||||
|
return dtype(response)
|
||||||
|
except Exception as e:
|
||||||
|
logging.debug(f' socket request failed with {e!r}')
|
||||||
|
if ON_AMOR:
|
||||||
|
logging.debug(f" trying to extract {nicos_key} from nicos cache files")
|
||||||
|
call = f'{GREP} {NICOS_CACHE_DIR}nicos-{nicos_key}/{year}{suffix}'
|
||||||
|
try:
|
||||||
|
value = str(subprocess.getoutput(call)).split('\t')[-1]
|
||||||
|
logging.info(f" using parameter {nicos_key} from nicos cache file")
|
||||||
|
return dtype(value)
|
||||||
|
except Exception:
|
||||||
|
logging.error(f" couldn't get value from nicos cache {nicos_key}, {call}")
|
||||||
|
return dtype(0)
|
||||||
|
else:
|
||||||
|
logging.warning(f" parameter {key} not found, relpace by zero")
|
||||||
|
return dtype(0)
|
||||||
|
|
||||||
|
def nicos_single_request(device):
|
||||||
|
sentinel = b'\n'
|
||||||
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
||||||
|
s.settimeout(1.0)
|
||||||
|
s.connect(('amor', 14869))
|
||||||
|
|
||||||
|
tosend = f'@nicos/{device}/value?\n'
|
||||||
|
|
||||||
|
# write request
|
||||||
|
# self.log.debug("get_explicit: sending %r", tosend)
|
||||||
|
s.sendall(tosend.encode())
|
||||||
|
|
||||||
|
# read response
|
||||||
|
data = b''
|
||||||
|
while not data.endswith(sentinel):
|
||||||
|
newdata = s.recv(8192) # blocking read
|
||||||
|
if not newdata:
|
||||||
|
raise IOError('cache closed connection')
|
||||||
|
data += newdata
|
||||||
|
s.shutdown(socket.SHUT_RDWR)
|
||||||
|
return data.decode('utf-8').split('=')[-1]
|
||||||
@@ -6,6 +6,8 @@ import os
|
|||||||
import numpy as np
|
import numpy as np
|
||||||
from typing import List, Optional
|
from typing import List, Optional
|
||||||
|
|
||||||
|
from orsopy import fileio
|
||||||
|
|
||||||
from .event_data_types import EventDatasetProtocol
|
from .event_data_types import EventDatasetProtocol
|
||||||
from .header import Header
|
from .header import Header
|
||||||
from .options import NormalisationMethod
|
from .options import NormalisationMethod
|
||||||
@@ -24,7 +26,6 @@ class LZNormalisation:
|
|||||||
detZ_e = reference.data.events.detZ
|
detZ_e = reference.data.events.detZ
|
||||||
self.monitor = np.sum(reference.data.pulses.monitor)
|
self.monitor = np.sum(reference.data.pulses.monitor)
|
||||||
norm_lz, _, _ = np.histogram2d(lamda_e, detZ_e, bins=(grid.lamda(), grid.z()))
|
norm_lz, _, _ = np.histogram2d(lamda_e, detZ_e, bins=(grid.lamda(), grid.z()))
|
||||||
norm_lz = np.where(norm_lz>2, norm_lz, np.nan)
|
|
||||||
if normalisationMethod==NormalisationMethod.direct_beam:
|
if normalisationMethod==NormalisationMethod.direct_beam:
|
||||||
self.norm = np.flip(norm_lz, 1)
|
self.norm = np.flip(norm_lz, 1)
|
||||||
else:
|
else:
|
||||||
@@ -47,7 +48,7 @@ class LZNormalisation:
|
|||||||
self = super().__new__(cls)
|
self = super().__new__(cls)
|
||||||
with open(filename, 'rb') as fh:
|
with open(filename, 'rb') as fh:
|
||||||
hash = str(np.load(fh, allow_pickle=True))
|
hash = str(np.load(fh, allow_pickle=True))
|
||||||
self.file_list = np.load(fh, allow_pickle=True)
|
self.file_list = np.load(fh, allow_pickle=True).tolist()
|
||||||
self.angle = np.load(fh, allow_pickle=True)
|
self.angle = np.load(fh, allow_pickle=True)
|
||||||
self.norm = np.load(fh, allow_pickle=True)
|
self.norm = np.load(fh, allow_pickle=True)
|
||||||
self.monitor = np.load(fh, allow_pickle=True)
|
self.monitor = np.load(fh, allow_pickle=True)
|
||||||
@@ -99,4 +100,33 @@ class LZNormalisation:
|
|||||||
np.save(fh, self.monitor, allow_pickle=False)
|
np.save(fh, self.monitor, allow_pickle=False)
|
||||||
|
|
||||||
def update_header(self, header:Header):
|
def update_header(self, header:Header):
|
||||||
header.measurement_additional_files = self.file_list
|
header.measurement_additional_files = [fileio.File(file=os.path.basename(entry)) for entry in self.file_list]
|
||||||
|
|
||||||
|
def smooth(self, width):
|
||||||
|
logging.debug(f'apply convolution with gaussian along lambda axis to smooth norm, sigma={width}')
|
||||||
|
try:
|
||||||
|
from scipy.signal import fftconvolve
|
||||||
|
except ImportError:
|
||||||
|
self._smooth_slow(width)
|
||||||
|
kx = np.arange(self.norm.shape[0])-self.norm.shape[0]/2.
|
||||||
|
kernel = np.exp(-0.5*kx**2/width**2)
|
||||||
|
kernel/=kernel.sum()
|
||||||
|
kernel = kernel[:, np.newaxis]*np.ones(self.norm.shape[1])[np.newaxis, :]
|
||||||
|
unorm = np.where(np.isnan(self.norm), 0., self.norm)
|
||||||
|
nnorm = fftconvolve(unorm, kernel, mode='same', axes=0)
|
||||||
|
nnorm[np.isnan(self.norm)] = np.nan
|
||||||
|
self.norm = nnorm
|
||||||
|
|
||||||
|
def _smooth_slow(self, width):
|
||||||
|
# like smooth but using numpy buildin slow convolve
|
||||||
|
nnorm = np.zeros_like(self.norm)
|
||||||
|
|
||||||
|
kx = np.arange(self.norm.shape[0])-self.norm.shape[0]/2.
|
||||||
|
kernel = np.exp(-0.5*kx**2/width**2)
|
||||||
|
kernel/=kernel.sum()
|
||||||
|
unorm = np.where(np.isnan(self.norm), 0., self.norm)
|
||||||
|
|
||||||
|
for row in range(self.norm.shape[1]):
|
||||||
|
nnorm[:, row] = np.convolve(unorm[:, row], kernel, mode='same')
|
||||||
|
nnorm[np.isnan(self.norm)] = np.nan
|
||||||
|
self.norm = nnorm
|
||||||
|
|||||||
163
eos/options.py
163
eos/options.py
@@ -21,6 +21,11 @@ except ImportError:
|
|||||||
# python <3.10 use Enum instead
|
# python <3.10 use Enum instead
|
||||||
from enum import Enum as StrEnum
|
from enum import Enum as StrEnum
|
||||||
|
|
||||||
|
class InCallString(StrEnum):
|
||||||
|
auto='auto'
|
||||||
|
always='always'
|
||||||
|
never='never'
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
class CommandlineParameterConfig:
|
class CommandlineParameterConfig:
|
||||||
argument: str # default parameter for command line resutign ins "--argument"
|
argument: str # default parameter for command line resutign ins "--argument"
|
||||||
@@ -28,6 +33,7 @@ class CommandlineParameterConfig:
|
|||||||
short_form: Optional[str] = None
|
short_form: Optional[str] = None
|
||||||
group: str = 'misc'
|
group: str = 'misc'
|
||||||
priority: int = 0
|
priority: int = 0
|
||||||
|
in_call_string: InCallString = InCallString.auto
|
||||||
|
|
||||||
def __gt__(self, other):
|
def __gt__(self, other):
|
||||||
"""
|
"""
|
||||||
@@ -90,6 +96,7 @@ class ArgParsable:
|
|||||||
typ = field.type
|
typ = field.type
|
||||||
if get_origin(typ) is list:
|
if get_origin(typ) is list:
|
||||||
args['nargs'] = '+'
|
args['nargs'] = '+'
|
||||||
|
args['action'] = 'extend'
|
||||||
typ = get_args(typ)[0]
|
typ = get_args(typ)[0]
|
||||||
if get_origin(typ) is tuple:
|
if get_origin(typ) is tuple:
|
||||||
# tuple of items are put together during evaluation
|
# tuple of items are put together during evaluation
|
||||||
@@ -117,6 +124,7 @@ class ArgParsable:
|
|||||||
group=field.metadata.get('group', 'misc'),
|
group=field.metadata.get('group', 'misc'),
|
||||||
short_form=field.metadata.get('short', None),
|
short_form=field.metadata.get('short', None),
|
||||||
priority=field.metadata.get('priority', 0),
|
priority=field.metadata.get('priority', 0),
|
||||||
|
in_call_string=field.metadata.get('in_call_string', InCallString.auto),
|
||||||
))
|
))
|
||||||
return output
|
return output
|
||||||
|
|
||||||
@@ -168,6 +176,34 @@ class ArgParsable:
|
|||||||
inpargs[field.name] = value
|
inpargs[field.name] = value
|
||||||
return cls(**inpargs)
|
return cls(**inpargs)
|
||||||
|
|
||||||
|
def get_call_parameters(self, abbrv=True):
|
||||||
|
"""
|
||||||
|
Return a list of command line arguments that reproduce this config, do not add default parameters.
|
||||||
|
"""
|
||||||
|
output = []
|
||||||
|
for arg in sorted(self.get_commandline_parameters()):
|
||||||
|
if ((arg.in_call_string==InCallString.auto and self.is_default(arg.argument)) or
|
||||||
|
arg.in_call_string==InCallString.never):
|
||||||
|
# skip default arguments or arguments defined to never appear in call string
|
||||||
|
continue
|
||||||
|
if arg.short_form and abbrv:
|
||||||
|
item = '-' + arg.short_form + ' '
|
||||||
|
else:
|
||||||
|
item = '--' + arg.argument + ' '
|
||||||
|
if arg.add_argument_args.get('type', None) in [str, float, int]:
|
||||||
|
nargs = arg.add_argument_args.get('nargs', None)
|
||||||
|
if nargs is None:
|
||||||
|
item += str(getattr(self, arg.argument))
|
||||||
|
elif nargs=='+':
|
||||||
|
# remove the default parameters, only show added ones
|
||||||
|
ignore = len(arg.add_argument_args.get('default', []))
|
||||||
|
item += ' '.join([str(pi) for pi in getattr(self, arg.argument)[ignore:]])
|
||||||
|
else:
|
||||||
|
item += ' '.join([str(pi) for pi in getattr(self, arg.argument)])
|
||||||
|
# boolean flags only reach this point if they are non-default
|
||||||
|
output.append((arg, item))
|
||||||
|
return output
|
||||||
|
|
||||||
# definition of command line arguments
|
# definition of command line arguments
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
@@ -178,6 +214,7 @@ class ReaderConfig(ArgParsable):
|
|||||||
'short': 'Y',
|
'short': 'Y',
|
||||||
'group': 'input data',
|
'group': 'input data',
|
||||||
'help': 'year the measurement was performed',
|
'help': 'year the measurement was performed',
|
||||||
|
'in_call_string': InCallString.always,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
rawPath: List[str] = field(
|
rawPath: List[str] = field(
|
||||||
@@ -302,7 +339,7 @@ class ExperimentConfig(ArgParsable):
|
|||||||
},
|
},
|
||||||
)
|
)
|
||||||
muOffset: Optional[float] = field(
|
muOffset: Optional[float] = field(
|
||||||
default=0,
|
default=None,
|
||||||
metadata={
|
metadata={
|
||||||
'short': 'm',
|
'short': 'm',
|
||||||
'group': 'sample',
|
'group': 'sample',
|
||||||
@@ -381,6 +418,21 @@ class ReflectivityReductionConfig(ArgParsable):
|
|||||||
'priority': 90,
|
'priority': 90,
|
||||||
'group': 'input data',
|
'group': 'input data',
|
||||||
'help': 'normalisation method: [o]verillumination, [u]nderillumination, [d]irect_beam'})
|
'help': 'normalisation method: [o]verillumination, [u]nderillumination, [d]irect_beam'})
|
||||||
|
normalizationFilter: float = field(
|
||||||
|
default=-1,
|
||||||
|
metadata={
|
||||||
|
'group': 'input data',
|
||||||
|
'help': 'minimum normalization counts in lambda-theta bin to use, else filter'})
|
||||||
|
normAngleFilter: float = field(
|
||||||
|
default=-1,
|
||||||
|
metadata={
|
||||||
|
'group': 'input data',
|
||||||
|
'help': 'minimum normalization counts total thetat bin to use, else filter'})
|
||||||
|
normalizationSmoothing: float = field(
|
||||||
|
default=0,
|
||||||
|
metadata={
|
||||||
|
'group': 'input data',
|
||||||
|
'help': 'apply convolution on lambda axes to smooth the normalization data, useful for low statistics'})
|
||||||
scale: List[float] = field(
|
scale: List[float] = field(
|
||||||
default_factory=lambda: [1.],
|
default_factory=lambda: [1.],
|
||||||
metadata={
|
metadata={
|
||||||
@@ -404,7 +456,7 @@ class ReflectivityReductionConfig(ArgParsable):
|
|||||||
'group': 'input data',
|
'group': 'input data',
|
||||||
'help': 'File with R(q_z) curve to be subtracted (in .Rqz.ort format)'})
|
'help': 'File with R(q_z) curve to be subtracted (in .Rqz.ort format)'})
|
||||||
normalisationFileIdentifier: Optional[List[str]] = field(
|
normalisationFileIdentifier: Optional[List[str]] = field(
|
||||||
default_factory=lambda: [None],
|
default=None,
|
||||||
metadata={
|
metadata={
|
||||||
'short': 'n',
|
'short': 'n',
|
||||||
'priority': 90,
|
'priority': 90,
|
||||||
@@ -419,6 +471,15 @@ class ReflectivityReductionConfig(ArgParsable):
|
|||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
logfilter: List[str] = field(
|
||||||
|
default_factory=lambda: [],
|
||||||
|
metadata={
|
||||||
|
'short': 'lf',
|
||||||
|
'group': 'region of interest',
|
||||||
|
'help': 'filter using comparison to a log values, multpiple allowd (example "sample_temperature<150")',
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class OutputFomatOption(StrEnum):
|
class OutputFomatOption(StrEnum):
|
||||||
Rqz_ort = "Rqz.ort"
|
Rqz_ort = "Rqz.ort"
|
||||||
@@ -482,6 +543,14 @@ class ReflectivityOutputConfig(ArgParsable):
|
|||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
append: bool = field(
|
||||||
|
default=False,
|
||||||
|
metadata={
|
||||||
|
'group': 'output',
|
||||||
|
'help': 'if file already exists, append result as additional ORSO dataset (only Rqz.ort)',
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
def _output_format_list(self, outputFormat):
|
def _output_format_list(self, outputFormat):
|
||||||
format_list = []
|
format_list = []
|
||||||
if OutputFomatOption.ort in outputFormat\
|
if OutputFomatOption.ort in outputFormat\
|
||||||
@@ -526,85 +595,19 @@ class ReflectivityConfig:
|
|||||||
|
|
||||||
def call_string(self):
|
def call_string(self):
|
||||||
base = 'eos'
|
base = 'eos'
|
||||||
|
|
||||||
inpt = ''
|
|
||||||
if self.reader.year:
|
|
||||||
inpt += f' -Y {self.reader.year}'
|
|
||||||
else:
|
|
||||||
inpt += f' -Y {datetime.now().year}'
|
|
||||||
if np.shape(self.reader.rawPath)[0] == 1:
|
|
||||||
inpt += f' --rawPath {self.reader.rawPath}'
|
|
||||||
if self.reduction.subtract:
|
|
||||||
inpt += f' -subtract {self.reduction.subtract}'
|
|
||||||
if self.reduction.normalisationFileIdentifier:
|
|
||||||
inpt += f' -n {" ".join(self.reduction.normalisationFileIdentifier)}'
|
|
||||||
if self.reduction.fileIdentifier:
|
|
||||||
inpt += f' -f {" ".join(self.reduction.fileIdentifier)}'
|
|
||||||
|
|
||||||
otpt = ''
|
call_parameters = self.reader.get_call_parameters()
|
||||||
if self.reduction.qResolution:
|
call_parameters += self.output.get_call_parameters()
|
||||||
otpt += f' -r {self.reduction.qResolution}'
|
call_parameters += self.reduction.get_call_parameters()
|
||||||
if self.output.outputPath != '.':
|
call_parameters += self.experiment.get_call_parameters()
|
||||||
inpt += f' --outputdPath {self.output.outputPath}'
|
|
||||||
if self.output.outputName:
|
|
||||||
otpt += f' -o {self.output.outputName}'
|
|
||||||
if self.output.outputFormats != ['Rqz.ort']:
|
|
||||||
otpt += f' -of {" ".join(self.output.outputFormats)}'
|
|
||||||
|
|
||||||
mask = ''
|
|
||||||
|
|
||||||
mask += f' -y {" ".join(str(ii) for ii in self.experiment.yRange)}'
|
call_parameters.sort()
|
||||||
mask += f' -l {" ".join(str(ff) for ff in self.experiment.lambdaRange)}'
|
|
||||||
mask += f' -t {" ".join(str(ff) for ff in self.reduction.thetaRange)}'
|
|
||||||
mask += f' -T {" ".join(str(ff) for ff in self.reduction.thetaRangeR)}'
|
|
||||||
mask += f' -q {" ".join(str(ff) for ff in self.reduction.qzRange)}'
|
|
||||||
|
|
||||||
para = ''
|
cpout = f'{base} ' + ' '.join([cp[1] for cp in call_parameters])
|
||||||
# TODO: Check if we want these parameters for defaults
|
|
||||||
para += f' --chopperPhase {self.experiment.chopperPhase}'
|
|
||||||
para += f' --chopperPhaseOffset {self.experiment.chopperPhaseOffset}'
|
|
||||||
if self.experiment.mu:
|
|
||||||
para += f' --mu {self.experiment.mu}'
|
|
||||||
elif self.experiment.muOffset:
|
|
||||||
para += f' --muOffset {self.experiment.muOffset}'
|
|
||||||
if self.experiment.nu:
|
|
||||||
para += f' --nu {self.experiment.nu}'
|
|
||||||
|
|
||||||
modl = ''
|
|
||||||
if self.experiment.sampleModel:
|
|
||||||
modl += f" --sampleModel '{self.experiment.sampleModel}'"
|
|
||||||
|
|
||||||
acts = ''
|
logging.debug(f'Argument list build in EOSConfig.call_string: {cpout}')
|
||||||
if self.reduction.autoscale:
|
return cpout
|
||||||
acts += f' --autoscale {" ".join(str(ff) for ff in self.reduction.autoscale)}'
|
|
||||||
# TODO: Check if should be shown if not default
|
|
||||||
acts += f' --scale {self.reduction.scale}'
|
|
||||||
if self.reduction.timeSlize:
|
|
||||||
acts += f' --timeSlize {" ".join(str(ff) for ff in self.reduction.timeSlize)}'
|
|
||||||
|
|
||||||
mlst = base + inpt + otpt
|
|
||||||
if mask:
|
|
||||||
mlst += mask
|
|
||||||
if para:
|
|
||||||
mlst += para
|
|
||||||
if acts:
|
|
||||||
mlst += acts
|
|
||||||
if modl:
|
|
||||||
mlst += modl
|
|
||||||
|
|
||||||
if len(mlst) > 70:
|
|
||||||
mlst = base + ' ' + inpt + ' ' + otpt
|
|
||||||
if mask:
|
|
||||||
mlst += ' ' + mask
|
|
||||||
if para:
|
|
||||||
mlst += ' ' + para
|
|
||||||
if acts:
|
|
||||||
mlst += ' ' + acts
|
|
||||||
if modl:
|
|
||||||
mlst += ' ' + modl
|
|
||||||
|
|
||||||
logging.debug(f'Argument list build in EOSConfig.call_string: {mlst}')
|
|
||||||
return mlst
|
|
||||||
|
|
||||||
class E2HPlotSelection(StrEnum):
|
class E2HPlotSelection(StrEnum):
|
||||||
All = 'all'
|
All = 'all'
|
||||||
@@ -655,6 +658,14 @@ class E2HReductionConfig(ArgParsable):
|
|||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
kafka: bool = field(
|
||||||
|
default=False,
|
||||||
|
metadata={
|
||||||
|
'group': 'output',
|
||||||
|
'help': 'send result to kafka for Nicos',
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
plotArgs: E2HPlotArguments = field(
|
plotArgs: E2HPlotArguments = field(
|
||||||
default=E2HPlotArguments.Default,
|
default=E2HPlotArguments.Default,
|
||||||
metadata={
|
metadata={
|
||||||
|
|||||||
@@ -85,12 +85,19 @@ class ProjectedReflectivity:
|
|||||||
self.R -= R
|
self.R -= R
|
||||||
self.dR = np.sqrt(self.dR**2+dR**2)
|
self.dR = np.sqrt(self.dR**2+dR**2)
|
||||||
|
|
||||||
|
def plot(self, **kwargs):
|
||||||
|
from matplotlib import pyplot as plt
|
||||||
|
plt.errorbar(self.Q, self.R, yerr=self.dR, **kwargs)
|
||||||
|
plt.yscale('log')
|
||||||
|
plt.xlabel('Q / Å$^{-1}$')
|
||||||
|
plt.ylabel('R')
|
||||||
|
|
||||||
class LZProjection(ProjectionInterface):
|
class LZProjection(ProjectionInterface):
|
||||||
grid: LZGrid
|
grid: LZGrid
|
||||||
lamda: np.ndarray
|
lamda: np.ndarray
|
||||||
alphaF: np.ndarray
|
alphaF: np.ndarray
|
||||||
is_normalized: bool
|
is_normalized: bool
|
||||||
|
angle: float
|
||||||
|
|
||||||
data: np.recarray
|
data: np.recarray
|
||||||
_dtype = np.dtype([
|
_dtype = np.dtype([
|
||||||
@@ -107,6 +114,7 @@ class LZProjection(ProjectionInterface):
|
|||||||
def __init__(self, tthh: float, grid: LZGrid):
|
def __init__(self, tthh: float, grid: LZGrid):
|
||||||
self.grid = grid
|
self.grid = grid
|
||||||
self.is_normalized = False
|
self.is_normalized = False
|
||||||
|
self.angle = tthh
|
||||||
|
|
||||||
alphaF_z = tthh + Detector.delta_z
|
alphaF_z = tthh + Detector.delta_z
|
||||||
lamda_l = self.grid.lamda()
|
lamda_l = self.grid.lamda()
|
||||||
@@ -168,9 +176,12 @@ class LZProjection(ProjectionInterface):
|
|||||||
self.data.mask &= self.lamda>=lamda_range[0]
|
self.data.mask &= self.lamda>=lamda_range[0]
|
||||||
self.data.mask &= self.lamda<=lamda_range[1]
|
self.data.mask &= self.lamda<=lamda_range[1]
|
||||||
|
|
||||||
def apply_norm_mask(self, norm: LZNormalisation):
|
def apply_norm_mask(self, norm: LZNormalisation, min_norm=-1, min_theta=-1):
|
||||||
# Mask points where normliazation is nan
|
# Mask points where normliazation is nan
|
||||||
self.data.mask &= np.logical_not(np.isnan(norm.norm))
|
self.data.mask &= np.logical_not(np.isnan(norm.norm))&(norm.norm>min_norm)
|
||||||
|
if min_theta>0:
|
||||||
|
thsum = np.nansum(norm.norm, axis=0)
|
||||||
|
self.data.mask &= (thsum>min_theta)[np.newaxis, :]
|
||||||
|
|
||||||
def project(self, dataset: EventDatasetProtocol, monitor: float):
|
def project(self, dataset: EventDatasetProtocol, monitor: float):
|
||||||
"""
|
"""
|
||||||
@@ -190,6 +201,7 @@ class LZProjection(ProjectionInterface):
|
|||||||
self.data[:] = 0
|
self.data[:] = 0
|
||||||
self.data.mask = True
|
self.data.mask = True
|
||||||
self.monitor = 0.
|
self.monitor = 0.
|
||||||
|
self.norm_monitor = 1.
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def I(self):
|
def I(self):
|
||||||
@@ -199,22 +211,26 @@ class LZProjection(ProjectionInterface):
|
|||||||
|
|
||||||
def calc_error(self):
|
def calc_error(self):
|
||||||
# calculate error bars for resulting intensity after normalization
|
# calculate error bars for resulting intensity after normalization
|
||||||
self.data.err = self.data.ref * np.sqrt( 1./(self.data.I+.1) + 1./self.data.norm )
|
self.data.err = self.data.ref * np.sqrt( 1./(self.data.I+.1) + 1./(self.data.norm+0.1) )
|
||||||
|
|
||||||
def normalize_over_illuminated(self, norm: LZNormalisation):
|
def normalize_over_illuminated(self, norm: LZNormalisation):
|
||||||
"""
|
"""
|
||||||
Normalize the dataaset and take into account a difference in
|
Normalize the dataaset and take into account a difference in
|
||||||
detector angle for measurement and reference.
|
detector angle for measurement and reference.
|
||||||
"""
|
"""
|
||||||
|
logging.debug(f' correcting for incident angle difference from norm {norm.angle} to data {self.angle}')
|
||||||
norm_lz = norm.norm
|
norm_lz = norm.norm
|
||||||
thetaN_z = Detector.delta_z+norm.angle
|
delta_lz = np.ones_like(norm_lz)*Detector.delta_z
|
||||||
thetaN_lz = np.ones_like(norm_lz)*thetaN_z
|
# do not perform gravity correction for footprint, would require norm detector distance that is unknown here
|
||||||
thetaN_lz = np.where(np.absolute(thetaN_lz)>5e-3, thetaN_lz, np.nan)
|
fp_corr_lz = np.where(np.absolute(delta_lz+norm.angle)>5e-3,
|
||||||
self.data.mask &= (np.absolute(thetaN_lz)>5e-3)
|
(delta_lz+self.angle)/(delta_lz+norm.angle), np.nan)
|
||||||
ref_lz = (self.data.I*np.absolute(thetaN_lz))/(norm_lz*np.absolute(self.alphaF))
|
fp_corr_lz[fp_corr_lz<0] = np.nan
|
||||||
|
self.data.mask &= np.logical_not(np.isnan(fp_corr_lz))
|
||||||
|
self.data.norm = norm_lz*fp_corr_lz
|
||||||
|
self.norm_monitor = norm.monitor
|
||||||
|
ref_lz = self.data.I/np.where(self.data.norm>0, self.data.norm, np.nan)
|
||||||
ref_lz *= norm.monitor/self.monitor
|
ref_lz *= norm.monitor/self.monitor
|
||||||
ref_lz[np.logical_not(self.data.mask)] = np.nan
|
ref_lz[np.logical_not(self.data.mask)] = np.nan
|
||||||
self.data.norm = norm_lz
|
|
||||||
self.data.ref = ref_lz
|
self.data.ref = ref_lz
|
||||||
self.calc_error()
|
self.calc_error()
|
||||||
self.is_normalized = True
|
self.is_normalized = True
|
||||||
@@ -234,6 +250,7 @@ class LZProjection(ProjectionInterface):
|
|||||||
raise ValueError("Dataset needs to be normalized, first")
|
raise ValueError("Dataset needs to be normalized, first")
|
||||||
self.data.ref *= factor
|
self.data.ref *= factor
|
||||||
self.data.err *= factor
|
self.data.err *= factor
|
||||||
|
self.norm_monitor /= factor
|
||||||
|
|
||||||
def project_on_qz(self):
|
def project_on_qz(self):
|
||||||
if not self.is_normalized:
|
if not self.is_normalized:
|
||||||
@@ -241,29 +258,25 @@ class LZProjection(ProjectionInterface):
|
|||||||
q_q = self.grid.q()
|
q_q = self.grid.q()
|
||||||
weights_lzf = self.data.norm[self.data.mask]
|
weights_lzf = self.data.norm[self.data.mask]
|
||||||
q_lzf = self.data.qz[self.data.mask]
|
q_lzf = self.data.qz[self.data.mask]
|
||||||
R_lzf = self.data.ref[self.data.mask]
|
I_lzf = self.data.I[self.data.mask]
|
||||||
dR_lzf = self.data.err[self.data.mask]
|
|
||||||
dq_lzf = self.data.res[self.data.mask]
|
dq_lzf = self.data.res[self.data.mask]
|
||||||
|
|
||||||
N_q = np.histogram(q_lzf, bins = q_q, weights = weights_lzf )[0]
|
# get number of grid points contributing to a bin, filter points with no contribution
|
||||||
|
N_q = np.histogram(q_lzf, bins = q_q)[0]
|
||||||
N_q = np.where(N_q > 0, N_q, np.nan)
|
N_q = np.where(N_q > 0, N_q, np.nan)
|
||||||
|
fltr = N_q>0
|
||||||
|
|
||||||
R_q = np.histogram(q_lzf, bins = q_q, weights = weights_lzf * R_lzf )[0]
|
# calculate sum of all normalization weights per bin
|
||||||
R_q = R_q / N_q
|
W_q = np.maximum(np.histogram(q_lzf, bins = q_q, weights = weights_lzf)[0], 1e-10)
|
||||||
|
# calculate sum of all dataset counts per bin
|
||||||
dR_q = np.histogram(q_lzf, bins = q_q, weights = (weights_lzf * dR_lzf)**2 )[0]
|
I_q = np.histogram(q_lzf, bins = q_q, weights = I_lzf)[0]
|
||||||
dR_q = np.sqrt( dR_q ) / N_q
|
# normlaize dataaset by normalization counts and scale by monitor
|
||||||
|
R_q = np.where(fltr, I_q*self.norm_monitor/self.monitor / W_q, np.nan)
|
||||||
# TODO: different error propagations for dR and dq!
|
# error as squar-root of counts and sqrt from normalization (dR/R = sqrt( (dI/I)² + (dW/W)²)
|
||||||
# this is what should work:
|
dR_q = np.where(fltr, R_q*(np.sqrt(1./(I_q+0.1)+ 1./(W_q+0.1))), np.nan)
|
||||||
#dq_q = np.histogram(q_lzf, bins = q_q, weights = (weights_lzf * dq_lzf)**2 )[0]
|
# q-resolution is the weighted sum of individual points q-resolutions
|
||||||
#dq_q = np.sqrt( dq_q ) / N_q
|
dq_q = np.histogram(q_lzf, bins = q_q, weights = weights_lzf * dq_lzf )[0]
|
||||||
# and this actually works:
|
dq_q = np.where(fltr, dq_q/W_q, np.nan)
|
||||||
N_q = np.histogram(q_lzf, bins = q_q, weights = weights_lzf**2 )[0]
|
|
||||||
N_q = np.where(N_q > 0, N_q, np.nan)
|
|
||||||
dq_q = np.histogram(q_lzf, bins = q_q, weights = (weights_lzf * dq_lzf)**2 )[0]
|
|
||||||
dq_q = np.sqrt( dq_q / N_q )
|
|
||||||
|
|
||||||
return ProjectedReflectivity(R_q, dR_q, (q_q[1:]+q_q[:-1])/2., dq_q)
|
return ProjectedReflectivity(R_q, dR_q, (q_q[1:]+q_q[:-1])/2., dq_q)
|
||||||
|
|
||||||
def plot(self, **kwargs):
|
def plot(self, **kwargs):
|
||||||
@@ -298,7 +311,7 @@ class LZProjection(ProjectionInterface):
|
|||||||
plt.colorbar(label='I / cpm')
|
plt.colorbar(label='I / cpm')
|
||||||
plt.xlabel('$\\lambda$ / $\\AA$')
|
plt.xlabel('$\\lambda$ / $\\AA$')
|
||||||
plt.ylabel('$\\Theta$ / °')
|
plt.ylabel('$\\Theta$ / °')
|
||||||
plt.xlim(3., 12.)
|
plt.xlim(self.lamda[0,0], self.lamda[-1,0])
|
||||||
af = self.alphaF[self.data.mask]
|
af = self.alphaF[self.data.mask]
|
||||||
plt.ylim(af.min(), af.max())
|
plt.ylim(af.min(), af.max())
|
||||||
plt.title('Wavelength vs. Reflection Angle')
|
plt.title('Wavelength vs. Reflection Angle')
|
||||||
@@ -544,12 +557,12 @@ class TofZProjection(ProjectionInterface):
|
|||||||
('err', np.float64),
|
('err', np.float64),
|
||||||
])
|
])
|
||||||
|
|
||||||
def __init__(self, tau, foldback=False):
|
def __init__(self, tau, foldback=False, combine=1):
|
||||||
self.z = np.arange(Detector.nBlades*Detector.nWires+1)-0.5
|
self.z = np.arange(Detector.nBlades*Detector.nWires+1)-0.5
|
||||||
if foldback:
|
if foldback:
|
||||||
self.tof = np.arange(0, tau, 0.0005)
|
self.tof = np.arange(0, tau, 0.0005*combine)
|
||||||
else:
|
else:
|
||||||
self.tof = np.arange(0, 2*tau, 0.0005)
|
self.tof = np.arange(0, 2*tau, 0.0005*combine)
|
||||||
self.data = np.zeros((self.tof.shape[0]-1, self.z.shape[0]-1), dtype=self._dtype).view(np.recarray)
|
self.data = np.zeros((self.tof.shape[0]-1, self.z.shape[0]-1), dtype=self._dtype).view(np.recarray)
|
||||||
self.monitor = 0.
|
self.monitor = 0.
|
||||||
|
|
||||||
|
|||||||
@@ -51,6 +51,7 @@ class E2HReduction:
|
|||||||
self.plot_kwds = {}
|
self.plot_kwds = {}
|
||||||
plt.rcParams.update({'font.size': self.config.reduction.fontsize})
|
plt.rcParams.update({'font.size': self.config.reduction.fontsize})
|
||||||
|
|
||||||
|
self.overwrite = eh.ApplyParameterOverwrites(self.config.experiment) # some actions use instrument parameters, change before that
|
||||||
if self.config.reduction.update:
|
if self.config.reduction.update:
|
||||||
# live update implies plotting
|
# live update implies plotting
|
||||||
self.config.reduction.show_plot = True
|
self.config.reduction.show_plot = True
|
||||||
@@ -58,6 +59,9 @@ class E2HReduction:
|
|||||||
if self.config.reduction.plot==E2HPlotSelection.Raw:
|
if self.config.reduction.plot==E2HPlotSelection.Raw:
|
||||||
# Raw implies fast caculations
|
# Raw implies fast caculations
|
||||||
self.config.reduction.fast = True
|
self.config.reduction.fast = True
|
||||||
|
if not self.config.experiment.is_default('lambdaRange'):
|
||||||
|
# filtering wavelength requires frame analysis
|
||||||
|
self.config.reduction.fast = False
|
||||||
|
|
||||||
if not self.config.reduction.fast or self.config.reduction.plot in NEEDS_LAMDA:
|
if not self.config.reduction.fast or self.config.reduction.plot in NEEDS_LAMDA:
|
||||||
from . import event_analysis as ea
|
from . import event_analysis as ea
|
||||||
@@ -65,6 +69,7 @@ class E2HReduction:
|
|||||||
# Actions on datasets not used for normalization
|
# Actions on datasets not used for normalization
|
||||||
self.event_actions = eh.ApplyPhaseOffset(self.config.experiment.chopperPhaseOffset)
|
self.event_actions = eh.ApplyPhaseOffset(self.config.experiment.chopperPhaseOffset)
|
||||||
if not self.config.reduction.fast:
|
if not self.config.reduction.fast:
|
||||||
|
self.event_actions |= self.overwrite
|
||||||
self.event_actions |= eh.CorrectChopperPhase()
|
self.event_actions |= eh.CorrectChopperPhase()
|
||||||
self.event_actions |= ea.ExtractWalltime()
|
self.event_actions |= ea.ExtractWalltime()
|
||||||
else:
|
else:
|
||||||
@@ -84,8 +89,8 @@ class E2HReduction:
|
|||||||
# perform corrections for tof if not fast mode
|
# perform corrections for tof if not fast mode
|
||||||
self.event_actions |= eh.TofTimeCorrection(self.config.experiment.incidentAngle==IncidentAngle.alphaF)
|
self.event_actions |= eh.TofTimeCorrection(self.config.experiment.incidentAngle==IncidentAngle.alphaF)
|
||||||
# select needed actions in depenence of plots
|
# select needed actions in depenence of plots
|
||||||
if self.config.reduction.plot in NEEDS_LAMDA:
|
if self.config.reduction.plot in NEEDS_LAMDA or not self.config.experiment.is_default('lambdaRange'):
|
||||||
self.event_actions |= ea.MergeFrames()
|
self.event_actions |= ea.MergeFrames(lamdaCut=self.config.experiment.lambdaRange[0])
|
||||||
self.event_actions |= ea.AnalyzePixelIDs(self.config.experiment.yRange)
|
self.event_actions |= ea.AnalyzePixelIDs(self.config.experiment.yRange)
|
||||||
self.event_actions |= eh.TofTimeCorrection(self.config.experiment.incidentAngle==IncidentAngle.alphaF)
|
self.event_actions |= eh.TofTimeCorrection(self.config.experiment.incidentAngle==IncidentAngle.alphaF)
|
||||||
self.event_actions |= ea.CalculateWavelength(self.config.experiment.lambdaRange)
|
self.event_actions |= ea.CalculateWavelength(self.config.experiment.lambdaRange)
|
||||||
@@ -93,7 +98,8 @@ class E2HReduction:
|
|||||||
|
|
||||||
# plot dependant options
|
# plot dependant options
|
||||||
if self.config.reduction.plot in [E2HPlotSelection.All, E2HPlotSelection.LT, E2HPlotSelection.Q]:
|
if self.config.reduction.plot in [E2HPlotSelection.All, E2HPlotSelection.LT, E2HPlotSelection.Q]:
|
||||||
self.grid = LZGrid(0.01, [0.0, 0.25])
|
self.grid = LZGrid(0.05, [0.0, 0.25], lambda_overwrite=self.config.experiment.lambdaRange)
|
||||||
|
self.grid.dldl = 0.01
|
||||||
|
|
||||||
if self.config.reduction.plot in [E2HPlotSelection.All, E2HPlotSelection.Raw,
|
if self.config.reduction.plot in [E2HPlotSelection.All, E2HPlotSelection.Raw,
|
||||||
E2HPlotSelection.LT, E2HPlotSelection.YT,
|
E2HPlotSelection.LT, E2HPlotSelection.YT,
|
||||||
@@ -124,6 +130,12 @@ class E2HReduction:
|
|||||||
if self.config.reduction.plotArgs==E2HPlotArguments.Default and not self.config.reduction.update:
|
if self.config.reduction.plotArgs==E2HPlotArguments.Default and not self.config.reduction.update:
|
||||||
# safe to image file if not auto-updating graph
|
# safe to image file if not auto-updating graph
|
||||||
plt.savefig(f'e2h_{self.config.reduction.plot}.png', dpi=300)
|
plt.savefig(f'e2h_{self.config.reduction.plot}.png', dpi=300)
|
||||||
|
if self.config.reduction.kafka:
|
||||||
|
from .kafka_serializer import ESSSerializer
|
||||||
|
self.serializer = ESSSerializer()
|
||||||
|
self.fig.canvas.mpl_connect('close_event', self.serializer.end_command_thread)
|
||||||
|
self.serializer.start_command_thread()
|
||||||
|
self.serializer.send(self.projection)
|
||||||
if self.config.reduction.update:
|
if self.config.reduction.update:
|
||||||
self.timer = self.fig.canvas.new_timer(1000)
|
self.timer = self.fig.canvas.new_timer(1000)
|
||||||
self.timer.add_callback(self.update)
|
self.timer.add_callback(self.update)
|
||||||
@@ -131,6 +143,7 @@ class E2HReduction:
|
|||||||
if self.config.reduction.show_plot:
|
if self.config.reduction.show_plot:
|
||||||
plt.show()
|
plt.show()
|
||||||
|
|
||||||
|
|
||||||
def register_colormap(self):
|
def register_colormap(self):
|
||||||
cmap = plt.colormaps['turbo'](np.arange(256))
|
cmap = plt.colormaps['turbo'](np.arange(256))
|
||||||
cmap[:1, :] = np.array([256/256, 255/256, 236/256, 1])
|
cmap[:1, :] = np.array([256/256, 255/256, 236/256, 1])
|
||||||
@@ -140,6 +153,7 @@ class E2HReduction:
|
|||||||
|
|
||||||
def prepare_graphs(self):
|
def prepare_graphs(self):
|
||||||
last_file_header = AmorHeader(self.file_list[-1])
|
last_file_header = AmorHeader(self.file_list[-1])
|
||||||
|
self.overwrite.perform_action(last_file_header)
|
||||||
tthh = last_file_header.geometry.nu - last_file_header.geometry.mu
|
tthh = last_file_header.geometry.nu - last_file_header.geometry.mu
|
||||||
|
|
||||||
if not self.config.reduction.is_default('thetaRangeR'):
|
if not self.config.reduction.is_default('thetaRangeR'):
|
||||||
@@ -222,7 +236,7 @@ class E2HReduction:
|
|||||||
self.event_actions(self.dataset)
|
self.event_actions(self.dataset)
|
||||||
self.dataset.update_header(self.header)
|
self.dataset.update_header(self.header)
|
||||||
|
|
||||||
self.header.measurement_data_files.append(fileio.File(file=fileName.split('/')[-1],
|
self.header.measurement_data_files.append(fileio.File(file=os.path.basename(fileName),
|
||||||
timestamp=self.dataset.fileDate))
|
timestamp=self.dataset.fileDate))
|
||||||
|
|
||||||
def add_data(self):
|
def add_data(self):
|
||||||
@@ -254,7 +268,7 @@ class E2HReduction:
|
|||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
# check that events exist in the new file
|
# check that events exist in the new file
|
||||||
AmorEventData(new_files[-1], 0, max_events=1000)
|
AmorEventData(new_files[-1], 0, max_events=1_000)
|
||||||
except Exception:
|
except Exception:
|
||||||
logging.debug("Problem when trying to load new dataset", exc_info=True)
|
logging.debug("Problem when trying to load new dataset", exc_info=True)
|
||||||
return
|
return
|
||||||
@@ -298,4 +312,7 @@ class E2HReduction:
|
|||||||
|
|
||||||
self.projection.update_plot()
|
self.projection.update_plot()
|
||||||
plt.suptitle(self.create_title())
|
plt.suptitle(self.create_title())
|
||||||
plt.draw()
|
plt.draw()
|
||||||
|
|
||||||
|
if self.config.reduction.kafka:
|
||||||
|
self.serializer.send(self.projection)
|
||||||
|
|||||||
128
eos/reduction_kafka.py
Normal file
128
eos/reduction_kafka.py
Normal file
@@ -0,0 +1,128 @@
|
|||||||
|
"""
|
||||||
|
Events 2 histogram, quick reduction of single file to display during experiment.
|
||||||
|
Can be used as a live preview with automatic update when files are modified.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
|
||||||
|
from time import sleep
|
||||||
|
from .kafka_events import KafkaEventData
|
||||||
|
from .header import Header
|
||||||
|
from .options import E2HConfig
|
||||||
|
from . import event_handling as eh, event_analysis as ea
|
||||||
|
from .projection import TofZProjection, YZProjection
|
||||||
|
from .kafka_serializer import ESSSerializer
|
||||||
|
|
||||||
|
|
||||||
|
class KafkaReduction:
|
||||||
|
config: E2HConfig
|
||||||
|
header: Header
|
||||||
|
event_actions: eh.EventDataAction
|
||||||
|
|
||||||
|
_last_mtime = 0.
|
||||||
|
proj_yz: YZProjection
|
||||||
|
proj_tofz = TofZProjection
|
||||||
|
|
||||||
|
def __init__(self, config: E2HConfig):
|
||||||
|
self.config = config
|
||||||
|
|
||||||
|
self.header = Header()
|
||||||
|
self.event_data = KafkaEventData()
|
||||||
|
self.event_data.start()
|
||||||
|
|
||||||
|
self.prepare_actions()
|
||||||
|
|
||||||
|
def prepare_actions(self):
|
||||||
|
"""
|
||||||
|
Does not do any actual reduction.
|
||||||
|
"""
|
||||||
|
# Actions on datasets not used for normalization
|
||||||
|
self.event_actions = eh.ApplyPhaseOffset(self.config.experiment.chopperPhaseOffset)
|
||||||
|
self.event_actions |= eh.CorrectChopperPhase()
|
||||||
|
self.event_actions |= ea.MergeFrames()
|
||||||
|
self.event_actions |= eh.ApplyMask()
|
||||||
|
|
||||||
|
def reduce(self):
|
||||||
|
self.create_projections()
|
||||||
|
self.read_data()
|
||||||
|
self.add_data()
|
||||||
|
|
||||||
|
self.serializer = ESSSerializer()
|
||||||
|
self.serializer.start_command_thread()
|
||||||
|
|
||||||
|
self.loop()
|
||||||
|
|
||||||
|
def create_projections(self):
|
||||||
|
self.proj_yz = YZProjection()
|
||||||
|
self.proj_tofz = TofZProjection(self.event_data.timing.tau, foldback=True, combine=2)
|
||||||
|
|
||||||
|
def read_data(self):
|
||||||
|
# make sure the first events have arrived before starting analysis
|
||||||
|
self.event_data.new_events.wait()
|
||||||
|
self.dataset = self.event_data.get_events()
|
||||||
|
self.event_actions(self.dataset)
|
||||||
|
|
||||||
|
|
||||||
|
def add_data(self):
|
||||||
|
self.monitor = self.dataset.monitor
|
||||||
|
self.proj_yz.project(self.dataset, monitor=self.monitor)
|
||||||
|
self.proj_tofz.project(self.dataset, monitor=self.monitor)
|
||||||
|
|
||||||
|
def loop(self):
|
||||||
|
self.wait_for = self.serializer.new_count_started
|
||||||
|
while True:
|
||||||
|
try:
|
||||||
|
self.update()
|
||||||
|
self.wait_for.wait(1.0)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
self.event_data.stop_event.set()
|
||||||
|
self.event_data.join()
|
||||||
|
self.serializer.end_command_thread()
|
||||||
|
return
|
||||||
|
|
||||||
|
def update(self):
|
||||||
|
if self.serializer.new_count_started.is_set():
|
||||||
|
logging.warning('Start new count, clearing event data')
|
||||||
|
self.wait_for = self.serializer.count_stopped
|
||||||
|
self.event_data.restart()
|
||||||
|
self.serializer.new_count_started.clear()
|
||||||
|
self.create_projections()
|
||||||
|
return
|
||||||
|
elif self.serializer.count_stopped.is_set() and not self.event_data.stop_counting.is_set():
|
||||||
|
return self.finish_count()
|
||||||
|
try:
|
||||||
|
update_data = self.event_data.get_events()
|
||||||
|
except EOFError:
|
||||||
|
return
|
||||||
|
logging.info(" updating with new data")
|
||||||
|
|
||||||
|
self.event_actions(update_data)
|
||||||
|
self.dataset=update_data
|
||||||
|
self.monitor = self.dataset.monitor
|
||||||
|
self.proj_yz.project(update_data, self.monitor)
|
||||||
|
self.proj_tofz.project(update_data, self.monitor)
|
||||||
|
|
||||||
|
self.serializer.send(self.proj_yz)
|
||||||
|
self.serializer.send(self.proj_tofz)
|
||||||
|
|
||||||
|
def finish_count(self):
|
||||||
|
logging.debug(" stop event set, hold event collection and send final results")
|
||||||
|
self.wait_for = self.serializer.new_count_started
|
||||||
|
self.event_data.stop_counting.set()
|
||||||
|
|
||||||
|
try:
|
||||||
|
update_data = self.event_data.get_events()
|
||||||
|
except EOFError:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
self.event_actions(update_data)
|
||||||
|
self.dataset = update_data
|
||||||
|
self.monitor = self.dataset.monitor
|
||||||
|
self.proj_yz.project(update_data, self.monitor)
|
||||||
|
self.proj_tofz.project(update_data, self.monitor)
|
||||||
|
|
||||||
|
logging.warning(f' stop counting, total events {int(self.proj_tofz.data.cts.sum())}')
|
||||||
|
|
||||||
|
self.serializer.send(self.proj_yz, final=True)
|
||||||
|
self.serializer.send(self.proj_tofz, final=True)
|
||||||
@@ -5,6 +5,8 @@ import sys
|
|||||||
import numpy as np
|
import numpy as np
|
||||||
from orsopy import fileio
|
from orsopy import fileio
|
||||||
|
|
||||||
|
from .event_analysis import FilterByLog
|
||||||
|
from .event_handling import ApplyMask
|
||||||
from .file_reader import AmorEventData
|
from .file_reader import AmorEventData
|
||||||
from .header import Header
|
from .header import Header
|
||||||
from .path_handling import PathResolver
|
from .path_handling import PathResolver
|
||||||
@@ -68,7 +70,10 @@ class ReflectivityReduction:
|
|||||||
self.dataevent_actions |= eh.TofTimeCorrection(self.config.experiment.incidentAngle==IncidentAngle.alphaF)
|
self.dataevent_actions |= eh.TofTimeCorrection(self.config.experiment.incidentAngle==IncidentAngle.alphaF)
|
||||||
self.dataevent_actions |= ea.CalculateWavelength(self.config.experiment.lambdaRange)
|
self.dataevent_actions |= ea.CalculateWavelength(self.config.experiment.lambdaRange)
|
||||||
self.dataevent_actions |= ea.CalculateQ(self.config.experiment.incidentAngle)
|
self.dataevent_actions |= ea.CalculateQ(self.config.experiment.incidentAngle)
|
||||||
self.dataevent_actions |= ea.FilterQzRange(self.config.reduction.qzRange)
|
if not self.config.reduction.is_default('qzRange'):
|
||||||
|
self.dataevent_actions |= ea.FilterQzRange(self.config.reduction.qzRange)
|
||||||
|
for lf in self.config.reduction.logfilter:
|
||||||
|
self.dataevent_actions |= ea.FilterByLog(lf)
|
||||||
self.dataevent_actions |= eh.ApplyMask()
|
self.dataevent_actions |= eh.ApplyMask()
|
||||||
|
|
||||||
self.grid = LZGrid(self.config.reduction.qResolution, self.config.reduction.qzRange)
|
self.grid = LZGrid(self.config.reduction.qResolution, self.config.reduction.qzRange)
|
||||||
@@ -85,6 +90,9 @@ class ReflectivityReduction:
|
|||||||
else:
|
else:
|
||||||
self.norm = LZNormalisation.unity(self.grid)
|
self.norm = LZNormalisation.unity(self.grid)
|
||||||
|
|
||||||
|
if self.config.reduction.normalizationSmoothing:
|
||||||
|
self.norm.smooth(self.config.reduction.normalizationSmoothing)
|
||||||
|
|
||||||
# load R(q_z) curve to be subtracted:
|
# load R(q_z) curve to be subtracted:
|
||||||
if self.config.reduction.subtract:
|
if self.config.reduction.subtract:
|
||||||
self.sq_q, self.sR_q, self.sdR_q, self.sFileName = self.loadRqz(self.config.reduction.subtract)
|
self.sq_q, self.sR_q, self.sdR_q, self.sFileName = self.loadRqz(self.config.reduction.subtract)
|
||||||
@@ -101,6 +109,16 @@ class ReflectivityReduction:
|
|||||||
self.read_file_block(i, short_notation)
|
self.read_file_block(i, short_notation)
|
||||||
|
|
||||||
# output
|
# output
|
||||||
|
if self.config.output.is_default('outputName'):
|
||||||
|
import datetime
|
||||||
|
_date = datetime.datetime.now().replace(microsecond=0).isoformat().replace(':', '-')
|
||||||
|
if self.header.sample.name:
|
||||||
|
_sampleName = self.header.sample.name.replace(' ', '_')
|
||||||
|
else:
|
||||||
|
_sampleName = 'unknown'
|
||||||
|
_mu = int(self.dataset.geometry.mu * 3)
|
||||||
|
self.config.output.outputName = f'{_sampleName}_{_mu:03}_{_date}'
|
||||||
|
|
||||||
logging.warning('output:')
|
logging.warning('output:')
|
||||||
|
|
||||||
if 'Rqz.ort' in self.config.output.outputFormats:
|
if 'Rqz.ort' in self.config.output.outputFormats:
|
||||||
@@ -117,7 +135,7 @@ class ReflectivityReduction:
|
|||||||
plt.show()
|
plt.show()
|
||||||
|
|
||||||
def read_file_block(self, i, short_notation):
|
def read_file_block(self, i, short_notation):
|
||||||
logging.warning('reading input:')
|
logging.warning('input:')
|
||||||
file_list = self.path_resolver.resolve(short_notation)
|
file_list = self.path_resolver.resolve(short_notation)
|
||||||
|
|
||||||
self.header.measurement_data_files = []
|
self.header.measurement_data_files = []
|
||||||
@@ -146,10 +164,34 @@ class ReflectivityReduction:
|
|||||||
self.dataset.append(di)
|
self.dataset.append(di)
|
||||||
|
|
||||||
for fileName in file_list:
|
for fileName in file_list:
|
||||||
self.header.measurement_data_files.append(fileio.File( file=fileName.split('/')[-1],
|
self.header.measurement_data_files.append(fileio.File( file=os.path.basename(fileName),
|
||||||
timestamp=self.dataset.fileDate))
|
timestamp=self.dataset.fileDate))
|
||||||
|
|
||||||
|
if 'polarization_config_label' in self.dataset.data.device_logs:
|
||||||
|
pols = np.unique(self.dataset.data.device_logs['polarization_config_label'].value)
|
||||||
|
pols = pols[pols>0]
|
||||||
|
if len(pols)>1:
|
||||||
|
logging.warning(f' found {len(pols)} polarization configurations, splitting dataset accordingly')
|
||||||
|
from copy import deepcopy
|
||||||
|
from . import const
|
||||||
|
full_ds = deepcopy(self.dataset)
|
||||||
|
for pi in pols:
|
||||||
|
plabel = const.polarizationLabels[pi]
|
||||||
|
pol_filter = FilterByLog(f'polarization_config_label=={pi}',
|
||||||
|
remove_switchpulse=True) | ApplyMask()
|
||||||
|
logging.info(f' filter {plabel} using polarization_config_label=={pi}')
|
||||||
|
pol_filter(self.dataset)
|
||||||
|
self.dataset.update_header(self.header)
|
||||||
|
pol_filter.update_header(self.header)
|
||||||
|
if self.config.reduction.timeSlize:
|
||||||
|
if i>0:
|
||||||
|
logging.warning(
|
||||||
|
" time slizing should only be used for one set of datafiles, check parameters")
|
||||||
|
self.analyze_timeslices(i, polstr=f' : polarization = {plabel}')
|
||||||
|
else:
|
||||||
|
self.analyze_unsliced(i, polstr=f' : polarization = {plabel}')
|
||||||
|
self.dataset = deepcopy(full_ds)
|
||||||
|
return
|
||||||
if self.config.reduction.timeSlize:
|
if self.config.reduction.timeSlize:
|
||||||
if i>0:
|
if i>0:
|
||||||
logging.warning(" time slizing should only be used for one set of datafiles, check parameters")
|
logging.warning(" time slizing should only be used for one set of datafiles, check parameters")
|
||||||
@@ -157,9 +199,9 @@ class ReflectivityReduction:
|
|||||||
else:
|
else:
|
||||||
self.analyze_unsliced(i)
|
self.analyze_unsliced(i)
|
||||||
|
|
||||||
def analyze_unsliced(self, i):
|
def analyze_unsliced(self, i, polstr=''):
|
||||||
self.monitor = self.dataset.data.pulses.monitor.sum()
|
self.monitor = self.dataset.data.pulses.monitor.sum()
|
||||||
logging.warning(f' monitor = {self.monitor:8.2f} {MONITOR_UNITS[self.config.experiment.monitorType]}')
|
logging.info(f' monitor = {self.monitor:8.2f} {MONITOR_UNITS[self.config.experiment.monitorType]}')
|
||||||
|
|
||||||
proj:LZProjection = self.project_on_lz()
|
proj:LZProjection = self.project_on_lz()
|
||||||
try:
|
try:
|
||||||
@@ -170,7 +212,7 @@ class ReflectivityReduction:
|
|||||||
|
|
||||||
if 'Rqz.ort' in self.config.output.outputFormats:
|
if 'Rqz.ort' in self.config.output.outputFormats:
|
||||||
headerRqz = self.header.orso_header()
|
headerRqz = self.header.orso_header()
|
||||||
headerRqz.data_set = f'Nr {i} : mu = {self.dataset.geometry.mu:6.3f} deg'
|
headerRqz.data_set = f'Nr {i} : mu = {self.dataset.geometry.mu:6.3f} deg{polstr}'
|
||||||
|
|
||||||
# projection on qz-grid
|
# projection on qz-grid
|
||||||
result = proj.project_on_qz()
|
result = proj.project_on_qz()
|
||||||
@@ -245,7 +287,7 @@ class ReflectivityReduction:
|
|||||||
proj.plot(colorbar=True, cmap=str(self.config.output.plot_colormap))
|
proj.plot(colorbar=True, cmap=str(self.config.output.plot_colormap))
|
||||||
plt.title(f'{self.config.reduction.fileIdentifier[i]}')
|
plt.title(f'{self.config.reduction.fileIdentifier[i]}')
|
||||||
|
|
||||||
def analyze_timeslices(self, i):
|
def analyze_timeslices(self, i, polstr=''):
|
||||||
wallTime_e = np.float64(self.dataset.data.events.wallTime)/1e9
|
wallTime_e = np.float64(self.dataset.data.events.wallTime)/1e9
|
||||||
pulseTimeS = np.float64(self.dataset.data.pulses.time)/1e9
|
pulseTimeS = np.float64(self.dataset.data.pulses.time)/1e9
|
||||||
interval = self.config.reduction.timeSlize[0]
|
interval = self.config.reduction.timeSlize[0]
|
||||||
@@ -295,7 +337,7 @@ class ReflectivityReduction:
|
|||||||
|
|
||||||
headerRqz = self.header.orso_header(
|
headerRqz = self.header.orso_header(
|
||||||
extra_columns=[fileio.Column('time', 's', 'time relative to start of measurement series')])
|
extra_columns=[fileio.Column('time', 's', 'time relative to start of measurement series')])
|
||||||
headerRqz.data_set = f'{i}_{ti}: time = {time:8.1f} s to {time+interval:8.1f} s'
|
headerRqz.data_set = f'{i}_{ti}: time = {time:8.1f} s to {time+interval:8.1f} s{polstr}'
|
||||||
orso_data = fileio.OrsoDataset(headerRqz, result.data_for_time(time))
|
orso_data = fileio.OrsoDataset(headerRqz, result.data_for_time(time))
|
||||||
self.datasetsRqz.append(orso_data)
|
self.datasetsRqz.append(orso_data)
|
||||||
|
|
||||||
@@ -313,8 +355,23 @@ class ReflectivityReduction:
|
|||||||
def save_Rqz(self):
|
def save_Rqz(self):
|
||||||
fname = os.path.join(self.config.output.outputPath, f'{self.config.output.outputName}.Rqz.ort')
|
fname = os.path.join(self.config.output.outputPath, f'{self.config.output.outputName}.Rqz.ort')
|
||||||
logging.warning(f' {fname}')
|
logging.warning(f' {fname}')
|
||||||
theSecondLine = f' {self.header.experiment.title} | {self.header.experiment.start_date} | sample {self.header.sample.name} | R(q_z)'
|
if os.path.exists(fname) and self.config.output.append:
|
||||||
fileio.save_orso(self.datasetsRqz, fname, data_separator='\n', comment=theSecondLine)
|
logging.info(' file already exists, append as new dataset')
|
||||||
|
with open(fname, 'r') as f:
|
||||||
|
f.readline()
|
||||||
|
theSecondLine = f.readline()[3:]
|
||||||
|
prev_data = fileio.load_orso(fname)
|
||||||
|
prev_names = [di.info.data_set for di in prev_data]
|
||||||
|
for i, di in enumerate(self.datasetsRqz):
|
||||||
|
while di.info.data_set in prev_names:
|
||||||
|
if di.info.data_set.startswith('Nr '):
|
||||||
|
di.info.data_set = f'Nr {i+len(prev_data)} :'+di.info.data_set.split(':', 1)[1]
|
||||||
|
break
|
||||||
|
di.info.data_set = di.info.data_set+'_'
|
||||||
|
fileio.save_orso(prev_data+self.datasetsRqz, fname, data_separator='\n', comment=theSecondLine)
|
||||||
|
else:
|
||||||
|
theSecondLine = f' {self.header.experiment.title} | {self.header.experiment.start_date} | sample {self.header.sample.name} | R(q_z)'
|
||||||
|
fileio.save_orso(self.datasetsRqz, fname, data_separator='\n', comment=theSecondLine)
|
||||||
|
|
||||||
def save_Rtl(self):
|
def save_Rtl(self):
|
||||||
fname = os.path.join(self.config.output.outputPath, f'{self.config.output.outputName}.Rlt.ort')
|
fname = os.path.join(self.config.output.outputPath, f'{self.config.output.outputName}.Rlt.ort')
|
||||||
@@ -364,7 +421,7 @@ class ReflectivityReduction:
|
|||||||
if reference.data.events.shape[0] > 1e6:
|
if reference.data.events.shape[0] > 1e6:
|
||||||
self.norm.safe(n_path, self.normevent_actions.action_hash())
|
self.norm.safe(n_path, self.normevent_actions.action_hash())
|
||||||
|
|
||||||
self.header.measurement_additional_files = self.norm.file_list
|
self.norm.update_header(self.header)
|
||||||
self.header.reduction.corrections.append('normalisation with \'additional files\'')
|
self.header.reduction.corrections.append('normalisation with \'additional files\'')
|
||||||
|
|
||||||
def project_on_lz(self, dataset=None):
|
def project_on_lz(self, dataset=None):
|
||||||
@@ -390,7 +447,8 @@ class ReflectivityReduction:
|
|||||||
|
|
||||||
proj.apply_lamda_mask(self.config.experiment.lambdaRange)
|
proj.apply_lamda_mask(self.config.experiment.lambdaRange)
|
||||||
|
|
||||||
proj.apply_norm_mask(self.norm)
|
proj.apply_norm_mask(self.norm, min_norm=self.config.reduction.normalizationFilter,
|
||||||
|
min_theta=self.config.reduction.normAngleFilter)
|
||||||
|
|
||||||
proj.project(dataset, self.monitor)
|
proj.project(dataset, self.monitor)
|
||||||
|
|
||||||
|
|||||||
43
nicos_config.md
Normal file
43
nicos_config.md
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
EOS-Service
|
||||||
|
===========
|
||||||
|
|
||||||
|
EOS can be used as histogram service to send images to the Nicos instrument control software.
|
||||||
|
For that you need to run it on the amor instrument computer:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
amor-nicos {-vv}
|
||||||
|
```
|
||||||
|
|
||||||
|
The instrument config in Nicos needs to configure a Kafka JustBinItImage instance
|
||||||
|
for each histogram that should be used:
|
||||||
|
|
||||||
|
```python
|
||||||
|
hist_yz = device('nicos_sinq.devices.just_bin_it.JustBinItImage',
|
||||||
|
description = 'Detector pixel histogram over all times',
|
||||||
|
hist_topic = 'AMOR_histograms_YZ',
|
||||||
|
data_topic = 'AMOR_detector',
|
||||||
|
command_topic = 'AMOR_histCommands',
|
||||||
|
brokers = ['linkafka01.psi.ch:9092'],
|
||||||
|
unit = 'evts',
|
||||||
|
hist_type = '2-D SANSLLB',
|
||||||
|
det_width = 446,
|
||||||
|
det_height = 64,
|
||||||
|
),
|
||||||
|
hist_tofz = device('nicos_sinq.devices.just_bin_it.JustBinItImage',
|
||||||
|
description = 'Detector time of flight vs. z-pixel histogram over all y-values',
|
||||||
|
hist_topic = 'AMOR_histograms_TofZ',
|
||||||
|
data_topic = 'AMOR_detector',
|
||||||
|
command_topic = 'AMOR_histCommands',
|
||||||
|
brokers = ['linkafka01.psi.ch:9092'],
|
||||||
|
unit = 'evts',
|
||||||
|
hist_type = '2-D SANSLLB',
|
||||||
|
det_width = 118,
|
||||||
|
det_height = 446,
|
||||||
|
),
|
||||||
|
```
|
||||||
|
|
||||||
|
These images have then to be set in the detector configuration as _images_ items:
|
||||||
|
|
||||||
|
```
|
||||||
|
images=['hist_yz', 'hist_tofz'],
|
||||||
|
```
|
||||||
@@ -3,5 +3,6 @@ h5py
|
|||||||
orsopy
|
orsopy
|
||||||
numba
|
numba
|
||||||
matplotlib
|
matplotlib
|
||||||
|
tabulate
|
||||||
backports.strenum; python_version<"3.11"
|
backports.strenum; python_version<"3.11"
|
||||||
backports.zoneinfo; python_version<"3.9"
|
backports.zoneinfo; python_version<"3.9"
|
||||||
|
|||||||
@@ -34,4 +34,6 @@ Homepage = "https://github.com/jochenstahn/amor"
|
|||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
console_scripts =
|
console_scripts =
|
||||||
eos = eos.__main__:main
|
eos = eos.__main__:main
|
||||||
|
eosls = eos.ls:main
|
||||||
events2histogram = eos.e2h:main
|
events2histogram = eos.e2h:main
|
||||||
|
amor-nicos = eos.nicos:main
|
||||||
|
|||||||
BIN
test_data/amor2026n000826.hdf
LFS
Normal file
BIN
test_data/amor2026n000826.hdf
LFS
Normal file
Binary file not shown.
562
tests/test_event_handling.py
Normal file
562
tests/test_event_handling.py
Normal file
@@ -0,0 +1,562 @@
|
|||||||
|
import os
|
||||||
|
import numpy as np
|
||||||
|
import logging
|
||||||
|
|
||||||
|
from unittest import TestCase
|
||||||
|
from datetime import datetime
|
||||||
|
from copy import deepcopy
|
||||||
|
|
||||||
|
from orsopy.fileio import Person, Experiment, Sample, InstrumentSettings, Value, ValueRange, Polarization
|
||||||
|
|
||||||
|
from eos import const
|
||||||
|
from eos.header import Header
|
||||||
|
from eos.event_data_types import EVENT_BITMASKS, AmorGeometry, AmorTiming, AmorEventStream, \
|
||||||
|
EventDataAction, EventDatasetProtocol, PACKET_TYPE, PC_TYPE, PULSE_TYPE, EVENT_TYPE, append_fields
|
||||||
|
from eos.event_handling import ApplyPhaseOffset, ApplyParameterOverwrites, CorrectChopperPhase, CorrectSeriesTime, \
|
||||||
|
AssociatePulseWithMonitor, FilterMonitorThreshold, FilterStrangeTimes, TofTimeCorrection, ApplyMask
|
||||||
|
from eos.event_analysis import ExtractWalltime, MergeFrames, AnalyzePixelIDs, CalculateWavelength, CalculateQ, \
|
||||||
|
FilterQzRange, FilterByLog
|
||||||
|
from eos.options import MonitorType, IncidentAngle, ExperimentConfig
|
||||||
|
|
||||||
|
|
||||||
|
class MockEventData:
|
||||||
|
"""
|
||||||
|
Simulated dataset to be used with event handling unit tests
|
||||||
|
"""
|
||||||
|
geometry: AmorGeometry
|
||||||
|
timing: AmorTiming
|
||||||
|
data: AmorEventStream
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.geometry = AmorGeometry(mu=2.0, nu=1.0, kap=0.5, kad=0.0, div=1.5,
|
||||||
|
chopperSeparation=1000.0, detectorDistance=4000., chopperDetectorDistance=18842.)
|
||||||
|
self.timing = AmorTiming(
|
||||||
|
ch1TriggerPhase=-9.1, ch2TriggerPhase=6.75,
|
||||||
|
chopperPhase=0.17, chopperSpeed=500., tau=0.06
|
||||||
|
)
|
||||||
|
self.create_data()
|
||||||
|
|
||||||
|
def create_data(self):
|
||||||
|
# list of events, here with random time of fligh and pixel location
|
||||||
|
events = np.recarray((10000, ), dtype=EVENT_TYPE)
|
||||||
|
events.tof = np.random.uniform(low=0., high=0.12, size=events.shape)
|
||||||
|
events.pixelID = np.random.randint(0, 28671, size=events.shape)
|
||||||
|
events.mask = 0
|
||||||
|
|
||||||
|
# list of data packates containing previous events
|
||||||
|
packets = np.recarray((1000,), dtype=PACKET_TYPE)
|
||||||
|
packets.start_index = np.linspace(0, events.shape[0]-1, packets.shape[0], dtype=np.uint32)
|
||||||
|
packets.time = np.linspace(1700000000000000000, 1700000000000000000+3_600_000_000,
|
||||||
|
packets.shape[0], dtype=np.int64)
|
||||||
|
|
||||||
|
# chopper pulses within the measurement time
|
||||||
|
pulses = np.recarray((packets.shape[0],), dtype=PULSE_TYPE)
|
||||||
|
pulses.monitor = 1.0
|
||||||
|
pulses.time = packets.time
|
||||||
|
|
||||||
|
# proton current information with independent timing
|
||||||
|
proton_current = np.recarray((50,), dtype=PC_TYPE)
|
||||||
|
proton_current.current = 1500.0
|
||||||
|
proton_current[np.random.randint(0, proton_current.shape[0]-1, 10)] = 0. # random time with no current
|
||||||
|
proton_current.time = np.linspace(1700000000000000300, 1700000000000000000+3_600_000_000,
|
||||||
|
proton_current.shape[0], dtype=np.int64)
|
||||||
|
|
||||||
|
self.data = AmorEventStream(events, packets, pulses, proton_current)
|
||||||
|
self.orig_data = deepcopy(self.data)
|
||||||
|
|
||||||
|
|
||||||
|
def append(self, other):
|
||||||
|
raise NotImplementedError("Just for testing, no append")
|
||||||
|
|
||||||
|
def update_header(self, header:Header):
|
||||||
|
# update a header with the information read from file
|
||||||
|
header.owner = Person(name="test user", affiliation='PSI')
|
||||||
|
header.experiment = Experiment(title='test experiment', instrument='amor',
|
||||||
|
start_date=datetime.now(), probe="neutron")
|
||||||
|
header.sample = Sample(name='test sample')
|
||||||
|
header.measurement_instrument_settings = InstrumentSettings(incident_angle=Value(1.5, 'deg'),
|
||||||
|
wavelength = ValueRange(3.0, 12.5, 'angstrom'),
|
||||||
|
polarization = Polarization.unpolarized)
|
||||||
|
|
||||||
|
def update_info_from_logs(self):
|
||||||
|
RELEVANT_ITEMS = ['sample_temperature', 'sample_magnetic_field', 'polarization_config_label']
|
||||||
|
for key, log in self.data.device_logs.items():
|
||||||
|
if key not in RELEVANT_ITEMS:
|
||||||
|
continue
|
||||||
|
if log.value.dtype in [np.int8, np.int16, np.int32, np.int64]:
|
||||||
|
# for integer items (flags) report the most common one
|
||||||
|
value = np.bincount(log.value).argmax()
|
||||||
|
if logging.getLogger().getEffectiveLevel() <= logging.DEBUG \
|
||||||
|
and np.unique(log.value).shape[0]>1:
|
||||||
|
logging.debug(f' filtered values for {key} not unique, '
|
||||||
|
f'has {np.unique(log.value).shape[0]} values')
|
||||||
|
else:
|
||||||
|
value = log.value.mean()
|
||||||
|
if key == 'polarization_config_label':
|
||||||
|
self.instrument_settings.polarization = Polarization(const.polarizationConfigs[value])
|
||||||
|
elif key == 'sample_temperature':
|
||||||
|
self.sample.sample_parameters['temperature'].magnitue = value
|
||||||
|
elif key == 'sample_magnetic_field':
|
||||||
|
self.sample.sample_parameters['magnetic_field'].magnitue = value
|
||||||
|
|
||||||
|
|
||||||
|
class TestActionClass(TestCase):
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(cls):
|
||||||
|
"""
|
||||||
|
Create test classes to be used
|
||||||
|
"""
|
||||||
|
class T1(EventDataAction):
|
||||||
|
def perform_action(self, event: EventDatasetProtocol):
|
||||||
|
event.data.events.mask += 1
|
||||||
|
class T2(EventDataAction):
|
||||||
|
def perform_action(self, event: EventDatasetProtocol):
|
||||||
|
event.data.events.mask += 2
|
||||||
|
class T4(EventDataAction):
|
||||||
|
def perform_action(self, event: EventDatasetProtocol):
|
||||||
|
event.data.events.mask += 4
|
||||||
|
cls.T1=T1; cls.T2=T2; cls.T4=T4
|
||||||
|
|
||||||
|
class H1(EventDataAction):
|
||||||
|
def perform_action(self, event: EventDatasetProtocol):
|
||||||
|
...
|
||||||
|
def update_header(self, header:Header) ->None:
|
||||||
|
header.sample.name = 'h1'
|
||||||
|
class H2(EventDataAction):
|
||||||
|
def perform_action(self, event: EventDatasetProtocol):
|
||||||
|
...
|
||||||
|
def update_header(self, header: Header) -> None:
|
||||||
|
header.sample.name = 'h2'
|
||||||
|
class HN(EventDataAction):
|
||||||
|
def __init__(self, n):
|
||||||
|
self._n = n
|
||||||
|
def perform_action(self, event: EventDatasetProtocol):
|
||||||
|
...
|
||||||
|
def update_header(self, header: Header) -> None:
|
||||||
|
header.sample.name = self._n
|
||||||
|
cls.H1=H1; cls.H2=H2; cls.HN = HN
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.d = MockEventData()
|
||||||
|
self.header = Header()
|
||||||
|
self.d.update_header(self.header)
|
||||||
|
|
||||||
|
def test_individual(self):
|
||||||
|
t1 = self.T1()
|
||||||
|
t2 = self.T2()
|
||||||
|
t4 = self.T4()
|
||||||
|
|
||||||
|
np.testing.assert_array_equal(self.d.data.events.mask, 0)
|
||||||
|
t1.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(self.d.data.events.mask, 1)
|
||||||
|
t2.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(self.d.data.events.mask, 3)
|
||||||
|
t4.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(self.d.data.events.mask, 7)
|
||||||
|
|
||||||
|
def test_header(self):
|
||||||
|
h1 = self.H1()
|
||||||
|
h2 = self.H2()
|
||||||
|
h3 = self.HN('h3')
|
||||||
|
h4 = self.HN('h4')
|
||||||
|
|
||||||
|
h1.update_header(self.header)
|
||||||
|
self.assertEqual(self.header.sample.name, 'h1')
|
||||||
|
h2.update_header(self.header)
|
||||||
|
self.assertEqual(self.header.sample.name, 'h2')
|
||||||
|
h3.update_header(self.header)
|
||||||
|
self.assertEqual(self.header.sample.name, 'h3')
|
||||||
|
h4.update_header(self.header)
|
||||||
|
self.assertEqual(self.header.sample.name, 'h4')
|
||||||
|
|
||||||
|
def test_combination(self):
|
||||||
|
t1 = self.T1()
|
||||||
|
t2 = self.T2()
|
||||||
|
t4 = self.T4()
|
||||||
|
t12 = t1 | t2
|
||||||
|
t24 = t2 | t4
|
||||||
|
t1224 = t1 | t2 | t2 | t4
|
||||||
|
t1224b = t12 | t24
|
||||||
|
|
||||||
|
np.testing.assert_array_equal(self.d.data.events.mask, 0)
|
||||||
|
t12.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(self.d.data.events.mask, 3)
|
||||||
|
t24.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(self.d.data.events.mask, 9)
|
||||||
|
|
||||||
|
t1224.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(self.d.data.events.mask, 18)
|
||||||
|
t1224b.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(self.d.data.events.mask, 27)
|
||||||
|
|
||||||
|
|
||||||
|
def test_combine_header(self):
|
||||||
|
h1 = self.H1()
|
||||||
|
h2 = self.H2()
|
||||||
|
h3 = self.HN('h3')
|
||||||
|
h4 = self.HN('h4')
|
||||||
|
|
||||||
|
(h1|h2).update_header(self.header)
|
||||||
|
self.assertEqual(self.header.sample.name, 'h2')
|
||||||
|
(h2|h1).update_header(self.header)
|
||||||
|
self.assertEqual(self.header.sample.name, 'h1')
|
||||||
|
(h3|h4).update_header(self.header)
|
||||||
|
self.assertEqual(self.header.sample.name, 'h4')
|
||||||
|
(h4|h3).update_header(self.header)
|
||||||
|
self.assertEqual(self.header.sample.name, 'h3')
|
||||||
|
|
||||||
|
def test_abstract_misssing(self):
|
||||||
|
with self.assertRaises(TypeError):
|
||||||
|
class E(EventDataAction):
|
||||||
|
...
|
||||||
|
_ = E()
|
||||||
|
|
||||||
|
def test_hash(self):
|
||||||
|
"""
|
||||||
|
Check that hashes of different actions are different but
|
||||||
|
instances of same action have same hash
|
||||||
|
"""
|
||||||
|
t1 = self.T1()
|
||||||
|
t1b = self.T1()
|
||||||
|
t2 = self.T2()
|
||||||
|
t4 = self.T4()
|
||||||
|
h3 = self.HN('h3')
|
||||||
|
h3b = self.HN('h3')
|
||||||
|
h4 = self.HN('h4')
|
||||||
|
|
||||||
|
self.assertNotEqual(t1.action_hash(), t2.action_hash())
|
||||||
|
self.assertNotEqual(t2.action_hash(), t4.action_hash())
|
||||||
|
self.assertNotEqual(t1.action_hash(), t4.action_hash())
|
||||||
|
self.assertNotEqual(h3.action_hash(), h4.action_hash())
|
||||||
|
self.assertEqual(t1.action_hash(), t1b.action_hash())
|
||||||
|
self.assertEqual(h3.action_hash(), h3b.action_hash())
|
||||||
|
|
||||||
|
|
||||||
|
class TestSimpleActions(TestCase):
|
||||||
|
def setUp(self):
|
||||||
|
self.d = MockEventData()
|
||||||
|
self.header = Header()
|
||||||
|
self.d.update_header(self.header)
|
||||||
|
|
||||||
|
def test_chopper_phase(self):
|
||||||
|
cp = CorrectChopperPhase()
|
||||||
|
cp.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(
|
||||||
|
self.d.data.events.tof,
|
||||||
|
self.d.orig_data.events.tof+
|
||||||
|
self.d.timing.tau*(self.d.timing.ch1TriggerPhase-self.d.timing.chopperPhase/2)/180
|
||||||
|
)
|
||||||
|
|
||||||
|
def _extract_walltime(self):
|
||||||
|
# Extract wall time for events and orig copy
|
||||||
|
wt = ExtractWalltime()
|
||||||
|
d = self.d.data
|
||||||
|
self.d.data = self.d.orig_data
|
||||||
|
wt.perform_action(self.d)
|
||||||
|
self.d.data = d
|
||||||
|
wt.perform_action(self.d)
|
||||||
|
|
||||||
|
def test_extract_walltime(self):
|
||||||
|
self._extract_walltime()
|
||||||
|
# wallTime should be always a time present in the packet times
|
||||||
|
np.testing.assert_array_equal(np.isin(self.d.data.events.wallTime, self.d.data.packets.time), True)
|
||||||
|
# make sure extraction works on both original and copy
|
||||||
|
np.testing.assert_array_equal(self.d.data.events.wallTime, self.d.orig_data.events.wallTime)
|
||||||
|
|
||||||
|
def test_series_time(self):
|
||||||
|
corr = 100
|
||||||
|
ct = CorrectSeriesTime(corr)
|
||||||
|
|
||||||
|
with self.assertRaises(ValueError):
|
||||||
|
ct.perform_action(self.d)
|
||||||
|
|
||||||
|
self._extract_walltime()
|
||||||
|
|
||||||
|
|
||||||
|
ct.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(
|
||||||
|
self.d.data.pulses.time,
|
||||||
|
self.d.orig_data.pulses.time-corr
|
||||||
|
)
|
||||||
|
np.testing.assert_array_equal(
|
||||||
|
self.d.data.events.wallTime,
|
||||||
|
self.d.orig_data.events.wallTime-corr
|
||||||
|
)
|
||||||
|
np.testing.assert_array_equal(
|
||||||
|
self.d.data.proton_current.time,
|
||||||
|
self.d.orig_data.proton_current.time-corr
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_associate_monitor(self):
|
||||||
|
amPC = AssociatePulseWithMonitor(MonitorType.proton_charge)
|
||||||
|
amT = AssociatePulseWithMonitor(MonitorType.time)
|
||||||
|
amN = AssociatePulseWithMonitor(MonitorType.neutron_monitor)
|
||||||
|
|
||||||
|
self.d.data.pulses.monitor = 13
|
||||||
|
amN.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(self.d.data.pulses.monitor, 1)
|
||||||
|
|
||||||
|
self.d.data.pulses.monitor = 13
|
||||||
|
amT.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(self.d.data.pulses.monitor, np.float32(2*self.d.timing.tau))
|
||||||
|
|
||||||
|
self.d.data.pulses.monitor = 13
|
||||||
|
amPC.perform_action(self.d)
|
||||||
|
pcm = self.d.data.proton_current.current *2*self.d.timing.tau*1e-3
|
||||||
|
np.testing.assert_array_equal(np.isin(self.d.data.pulses.monitor, pcm), True)
|
||||||
|
|
||||||
|
def test_filter_monitor_threashold(self):
|
||||||
|
amPC = AssociatePulseWithMonitor(MonitorType.proton_charge)
|
||||||
|
fmt = amPC | FilterMonitorThreshold(1000.)
|
||||||
|
fma = amPC | FilterMonitorThreshold(2000.)
|
||||||
|
fm0 = amPC | FilterMonitorThreshold(-1.0)
|
||||||
|
|
||||||
|
with self.assertRaises(ValueError):
|
||||||
|
fmt.perform_action(self.d)
|
||||||
|
|
||||||
|
self._extract_walltime()
|
||||||
|
fm0.perform_action(self.d)
|
||||||
|
self.assertEqual(self.d.data.events.mask.sum(), 0)
|
||||||
|
fmt.perform_action(self.d)
|
||||||
|
# calculate, which events should have 0 monitor
|
||||||
|
zero_times = self.d.data.pulses.time[self.d.data.pulses.monitor==0]
|
||||||
|
zero_sum = np.isin(self.d.data.events.wallTime, zero_times).sum()
|
||||||
|
self.assertEqual(self.d.data.events.mask.sum(), zero_sum*EVENT_BITMASKS['MonitorThreshold'])
|
||||||
|
# filter all events
|
||||||
|
self.d.data.events.mask = 0
|
||||||
|
fma.perform_action(self.d)
|
||||||
|
self.assertEqual(self.d.data.events.mask.sum(), self.d.data.events.shape[0]*EVENT_BITMASKS['MonitorThreshold'])
|
||||||
|
|
||||||
|
def test_filter_strage_times(self):
|
||||||
|
st = FilterStrangeTimes()
|
||||||
|
|
||||||
|
st.perform_action(self.d)
|
||||||
|
self.assertEqual(self.d.data.events.mask.sum(), 0)
|
||||||
|
|
||||||
|
# half events should be strange times (outside of ToF frame)
|
||||||
|
self.d.data.events.tof += self.d.timing.tau
|
||||||
|
st.perform_action(self.d)
|
||||||
|
self.assertEqual(self.d.data.events.mask.sum(),
|
||||||
|
(self.d.data.events.tof>2*self.d.timing.tau).sum()*EVENT_BITMASKS['StrangeTimes'])
|
||||||
|
|
||||||
|
def test_apply_phase_offset(self):
|
||||||
|
action = ApplyPhaseOffset(12.5)
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertEqual(self.d.timing.ch1TriggerPhase, 12.5)
|
||||||
|
|
||||||
|
def test_apply_parameter_overwrites(self):
|
||||||
|
action = ApplyParameterOverwrites(ExperimentConfig(muOffset=0.25, mu=3.5, nu=4.5))
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertEqual(self.d.geometry.mu, 3.5)
|
||||||
|
self.assertEqual(self.d.geometry.nu, 4.5)
|
||||||
|
|
||||||
|
action = ApplyParameterOverwrites(ExperimentConfig(muOffset=0.25))
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertEqual(self.d.geometry.mu, 3.75)
|
||||||
|
|
||||||
|
action = ApplyParameterOverwrites(ExperimentConfig(sampleModel='air | Si | Fe'))
|
||||||
|
action.update_header(self.header)
|
||||||
|
self.assertIsNotNone(self.header.sample.model)
|
||||||
|
|
||||||
|
def test_apply_sample_model_file(self):
|
||||||
|
if os.path.isfile('test.yaml'):
|
||||||
|
os.remove('test.yaml')
|
||||||
|
action = ApplyParameterOverwrites(ExperimentConfig(sampleModel='test.yaml'))
|
||||||
|
action.update_header(self.header)
|
||||||
|
self.assertIsNone(self.header.sample.model)
|
||||||
|
|
||||||
|
with open('test.yaml', 'w') as fh:
|
||||||
|
fh.write("""stack: air | Si | Fe""")
|
||||||
|
|
||||||
|
try:
|
||||||
|
action = ApplyParameterOverwrites(ExperimentConfig(sampleModel='test.yaml'))
|
||||||
|
action.update_header(self.header)
|
||||||
|
self.assertEqual(self.header.sample.model.stack, 'air | Si | Fe')
|
||||||
|
finally:
|
||||||
|
os.remove('test.yaml')
|
||||||
|
|
||||||
|
def test_tof_time_correction(self):
|
||||||
|
action = TofTimeCorrection()
|
||||||
|
with self.assertRaises(ValueError):
|
||||||
|
action.perform_action(self.d)
|
||||||
|
|
||||||
|
new_events = append_fields(self.d.data.events, [('delta', np.float64)])
|
||||||
|
new_events.delta = 10.0
|
||||||
|
self.d.data.events = new_events
|
||||||
|
tof_before = self.d.data.events.tof.copy()
|
||||||
|
action.perform_action(self.d)
|
||||||
|
np.testing.assert_allclose(
|
||||||
|
self.d.data.events.tof,
|
||||||
|
tof_before - (10.0 / 180.0) * self.d.timing.tau
|
||||||
|
)
|
||||||
|
|
||||||
|
self.d.create_data()
|
||||||
|
new_events = append_fields(self.d.data.events, [('delta', np.float64)])
|
||||||
|
new_events.delta = 10.0
|
||||||
|
self.d.data.events = new_events
|
||||||
|
tof_before = self.d.data.events.tof.copy()
|
||||||
|
action = TofTimeCorrection(correct_chopper_opening=False)
|
||||||
|
action.perform_action(self.d)
|
||||||
|
np.testing.assert_allclose(
|
||||||
|
self.d.data.events.tof,
|
||||||
|
tof_before - (self.d.geometry.kad / 180.0) * self.d.timing.tau
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_apply_mask(self):
|
||||||
|
self.d.data.events = self.d.data.events[:6].copy()
|
||||||
|
self.d.data.events.mask[:] = [0, 1, 2, 3, 4, 5]
|
||||||
|
|
||||||
|
action = ApplyMask()
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertEqual(self.d.data.events.shape[0], 1)
|
||||||
|
self.assertEqual(self.d.data.events.mask[0], 0)
|
||||||
|
|
||||||
|
self.d.create_data()
|
||||||
|
self.d.data.events = self.d.data.events[:6].copy()
|
||||||
|
self.d.data.events.mask[:] = [0, 1, 2, 3, 4, 5]
|
||||||
|
action = ApplyMask(bitmask_filter=EVENT_BITMASKS['MonitorThreshold'])
|
||||||
|
action.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(self.d.data.events.mask, np.array([0, EVENT_BITMASKS['MonitorThreshold']],
|
||||||
|
dtype=np.int32))
|
||||||
|
|
||||||
|
def test_merge_frames(self):
|
||||||
|
action = MergeFrames(lamdaCut=0.0)
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertEqual(self.d.data.events.tof.shape, self.d.orig_data.events.tof.shape)
|
||||||
|
np.testing.assert_array_compare(lambda x,y: x<=y, self.d.data.events.tof, self.d.orig_data.events.tof)
|
||||||
|
self.assertTrue((-self.d.timing.tau<=self.d.data.events.tof).all())
|
||||||
|
np.testing.assert_array_less(self.d.data.events.tof, self.d.timing.tau)
|
||||||
|
|
||||||
|
action = MergeFrames(lamdaCut=2.0)
|
||||||
|
self.d.data.events.tof = self.d.orig_data.events.tof[:]
|
||||||
|
action.perform_action(self.d)
|
||||||
|
tofCut = 2.0*self.d.geometry.chopperDetectorDistance/const.hdm*1e-13
|
||||||
|
self.assertTrue((tofCut-self.d.timing.tau<=self.d.data.events.tof).all())
|
||||||
|
self.assertTrue((self.d.data.events.tof<=tofCut+self.d.timing.tau).all())
|
||||||
|
|
||||||
|
def test_analyze_pixel_ids(self):
|
||||||
|
action = AnalyzePixelIDs((1000, 1001))
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertIn('detZ', self.d.data.events.dtype.names)
|
||||||
|
self.assertIn('detXdist', self.d.data.events.dtype.names)
|
||||||
|
self.assertIn('delta', self.d.data.events.dtype.names)
|
||||||
|
self.assertEqual(
|
||||||
|
np.bitwise_and(self.d.data.events.mask, EVENT_BITMASKS['yRange']).astype(bool).sum(),
|
||||||
|
self.d.data.events.shape[0]
|
||||||
|
)
|
||||||
|
# TODO: maybe add a test actually checking correct detector-id resolution
|
||||||
|
|
||||||
|
def test_calculate_wavelength(self):
|
||||||
|
action = CalculateWavelength((3.0, 5.0))
|
||||||
|
with self.assertRaises(ValueError):
|
||||||
|
action.perform_action(self.d)
|
||||||
|
|
||||||
|
new_events = append_fields(self.d.data.events, [('detXdist', np.float64)])
|
||||||
|
new_events.detXdist = 0.0
|
||||||
|
self.d.data.events = new_events
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertIn('lamda', self.d.data.events.dtype.names)
|
||||||
|
flt = self.d.data.events.mask!=EVENT_BITMASKS['LamdaRange']
|
||||||
|
# check all wavelength in range not filtered
|
||||||
|
np.testing.assert_array_less(self.d.data.events.lamda[flt], 5.0)
|
||||||
|
np.testing.assert_array_less(3.0, self.d.data.events.lamda[flt])
|
||||||
|
# check all wavelength out of range filtered
|
||||||
|
flt = self.d.data.events.mask==EVENT_BITMASKS['LamdaRange']
|
||||||
|
self.assertTrue(((self.d.data.events.lamda[flt]<3.0)|(self.d.data.events.lamda[flt]>5.0)).all())
|
||||||
|
|
||||||
|
def test_calculate_q(self):
|
||||||
|
action = CalculateQ(IncidentAngle.alphaF)
|
||||||
|
with self.assertRaises(ValueError):
|
||||||
|
action.perform_action(self.d)
|
||||||
|
|
||||||
|
# TODO: add checks for actual resulting values
|
||||||
|
|
||||||
|
new_events = append_fields(self.d.data.events, [('lamda', np.float64), ('delta', np.float64)])
|
||||||
|
new_events.lamda = 5.0
|
||||||
|
new_events.delta = 0.0
|
||||||
|
self.d.data.events = new_events
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertIn('qz', self.d.data.events.dtype.names)
|
||||||
|
self.assertNotIn('qx', self.d.data.events.dtype.names)
|
||||||
|
action.update_header(self.header)
|
||||||
|
self.assertEqual(self.header.measurement_scheme, 'angle- and energy-dispersive')
|
||||||
|
|
||||||
|
self.d.create_data()
|
||||||
|
new_events = append_fields(self.d.data.events, [('lamda', np.float64), ('delta', np.float64)])
|
||||||
|
new_events.lamda = 5.0
|
||||||
|
new_events.delta = 0.0
|
||||||
|
self.d.data.events = new_events
|
||||||
|
action = CalculateQ(IncidentAngle.mu)
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertIn('qz', self.d.data.events.dtype.names)
|
||||||
|
self.assertIn('qx', self.d.data.events.dtype.names)
|
||||||
|
action.update_header(self.header)
|
||||||
|
self.assertEqual(self.header.measurement_scheme, 'energy-dispersive')
|
||||||
|
|
||||||
|
self.d.create_data()
|
||||||
|
new_events = append_fields(self.d.data.events, [('lamda', np.float64), ('delta', np.float64)])
|
||||||
|
new_events.lamda = 5.0
|
||||||
|
new_events.delta = 0.0
|
||||||
|
self.d.data.events = new_events
|
||||||
|
action = CalculateQ(IncidentAngle.nu)
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertIn('qz', self.d.data.events.dtype.names)
|
||||||
|
self.assertNotIn('qx', self.d.data.events.dtype.names)
|
||||||
|
action.update_header(self.header)
|
||||||
|
self.assertEqual(self.header.measurement_scheme, 'energy-dispersive')
|
||||||
|
|
||||||
|
def test_filter_qz_range(self):
|
||||||
|
action = FilterQzRange((0.1, 0.2))
|
||||||
|
with self.assertRaises(ValueError):
|
||||||
|
action.perform_action(self.d)
|
||||||
|
|
||||||
|
self.d.data.events = self.d.data.events[:5].copy()
|
||||||
|
new_events = append_fields(self.d.data.events, [('qz', np.float64)])
|
||||||
|
new_events.qz = np.array([0.05, 0.1, 0.15, 0.2, 0.25])
|
||||||
|
self.d.data.events = new_events
|
||||||
|
action.perform_action(self.d)
|
||||||
|
np.testing.assert_array_equal(
|
||||||
|
self.d.data.events.mask,
|
||||||
|
np.array([1, 0, 0, 0, 1], dtype=np.int32) * EVENT_BITMASKS['qRange']
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_filter_by_log(self):
|
||||||
|
action = FilterByLog("test_log==0") | ApplyMask()
|
||||||
|
class LogWarnError(Exception):
|
||||||
|
...
|
||||||
|
def warn_raise(*args, **kwargs):
|
||||||
|
raise LogWarnError()
|
||||||
|
_orig_warn = logging.warning
|
||||||
|
try:
|
||||||
|
logging.warning = warn_raise
|
||||||
|
with self.assertRaises(LogWarnError):
|
||||||
|
action.perform_action(self.d)
|
||||||
|
finally:
|
||||||
|
logging.warning = _orig_warn
|
||||||
|
|
||||||
|
self._extract_walltime()
|
||||||
|
|
||||||
|
test_log = np.recarray(shape=(2,), dtype=np.dtype([('value', np.int32),
|
||||||
|
('time', np.int64)]))
|
||||||
|
test_log.time = [-5, self.d.data.pulses.time[100]+123]
|
||||||
|
test_log.value = [0, 1]
|
||||||
|
self.d.data.device_logs['test_log'] = test_log
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertEqual(self.d.data.pulses.shape[0], 101)
|
||||||
|
|
||||||
|
def test_filter_by_log_switchpulse(self):
|
||||||
|
action = FilterByLog("!test_log==0") | ApplyMask()
|
||||||
|
self._extract_walltime()
|
||||||
|
|
||||||
|
test_log = np.recarray(shape=(2,), dtype=np.dtype([('value', np.int32),
|
||||||
|
('time', np.int64)]))
|
||||||
|
test_log.time = [-5, self.d.data.pulses.time[100]+123]
|
||||||
|
test_log.value = [0, 1]
|
||||||
|
self.d.data.device_logs['test_log'] = test_log
|
||||||
|
self.d.data.device_logs['check_log'] = test_log.copy()
|
||||||
|
action.perform_action(self.d)
|
||||||
|
self.assertEqual(self.d.data.pulses.shape[0], 100)
|
||||||
|
np.testing.assert_array_equal(
|
||||||
|
self.d.data.device_logs['test_log'],
|
||||||
|
self.d.data.device_logs['check_log'],
|
||||||
|
)
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
import os
|
import os
|
||||||
import cProfile
|
import cProfile
|
||||||
|
import numpy as np
|
||||||
from unittest import TestCase
|
from unittest import TestCase
|
||||||
from dataclasses import fields, MISSING
|
from dataclasses import fields, MISSING
|
||||||
from eos import options, reduction_reflectivity, logconfig
|
from eos import options, reduction_reflectivity, logconfig
|
||||||
|
from orsopy import fileio
|
||||||
|
|
||||||
logconfig.setup_logging()
|
logconfig.setup_logging()
|
||||||
logconfig.update_loglevel(1)
|
logconfig.update_loglevel(1)
|
||||||
@@ -38,30 +40,25 @@ class FullAmorTest(TestCase):
|
|||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
self.pr.disable()
|
self.pr.disable()
|
||||||
for fi in ['test_results/test.Rqz.ort', 'test_results/5952.norm']:
|
for fi in ['test_results/test.Rqz.ort', 'test_results/5952.norm']:
|
||||||
try:
|
try:
|
||||||
os.unlink(fi)
|
os.unlink(fi)
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def test_time_slicing(self):
|
def test_time_slicing(self):
|
||||||
experiment_config = options.ExperimentConfig(
|
experiment_config = options.ExperimentConfig(
|
||||||
chopperSpeed=self._field_defaults['ExperimentConfig']['chopperSpeed'],
|
|
||||||
chopperPhase=-13.5,
|
chopperPhase=-13.5,
|
||||||
chopperPhaseOffset=-5,
|
chopperPhaseOffset=-5,
|
||||||
monitorType=self._field_defaults['ExperimentConfig']['monitorType'],
|
|
||||||
lowCurrentThreshold=self._field_defaults['ExperimentConfig']['lowCurrentThreshold'],
|
|
||||||
yRange=(18, 48),
|
yRange=(18, 48),
|
||||||
lambdaRange=(3., 11.5),
|
lambdaRange=(3., 11.5),
|
||||||
incidentAngle=self._field_defaults['ExperimentConfig']['incidentAngle'],
|
|
||||||
mu=0,
|
mu=0,
|
||||||
nu=0,
|
nu=0,
|
||||||
muOffset=0.0,
|
muOffset=0.0,
|
||||||
sampleModel='air | 10 H2O | D2O'
|
sampleModel='air | 10 H2O | D2O'
|
||||||
)
|
)
|
||||||
reduction_config = options.ReflectivityReductionConfig(
|
reduction_config = options.ReflectivityReductionConfig(
|
||||||
normalisationMethod=self._field_defaults['ReflectivityReductionConfig']['normalisationMethod'],
|
|
||||||
qResolution=0.01,
|
qResolution=0.01,
|
||||||
qzRange=self._field_defaults['ReflectivityReductionConfig']['qzRange'],
|
qzRange=(0.01, 0.15),
|
||||||
thetaRange=(-0.75, 0.75),
|
thetaRange=(-0.75, 0.75),
|
||||||
fileIdentifier=["6003-6005"],
|
fileIdentifier=["6003-6005"],
|
||||||
scale=[1],
|
scale=[1],
|
||||||
@@ -84,22 +81,16 @@ class FullAmorTest(TestCase):
|
|||||||
|
|
||||||
def test_noslicing(self):
|
def test_noslicing(self):
|
||||||
experiment_config = options.ExperimentConfig(
|
experiment_config = options.ExperimentConfig(
|
||||||
chopperSpeed=self._field_defaults['ExperimentConfig']['chopperSpeed'],
|
|
||||||
chopperPhase=-13.5,
|
chopperPhase=-13.5,
|
||||||
chopperPhaseOffset=-5,
|
chopperPhaseOffset=-5,
|
||||||
monitorType=self._field_defaults['ExperimentConfig']['monitorType'],
|
|
||||||
lowCurrentThreshold=self._field_defaults['ExperimentConfig']['lowCurrentThreshold'],
|
|
||||||
yRange=(18, 48),
|
yRange=(18, 48),
|
||||||
lambdaRange=(3., 11.5),
|
lambdaRange=(3., 11.5),
|
||||||
incidentAngle=self._field_defaults['ExperimentConfig']['incidentAngle'],
|
|
||||||
mu=0,
|
mu=0,
|
||||||
nu=0,
|
nu=0,
|
||||||
muOffset=0.0,
|
muOffset=0.0,
|
||||||
)
|
)
|
||||||
reduction_config = options.ReflectivityReductionConfig(
|
reduction_config = options.ReflectivityReductionConfig(
|
||||||
normalisationMethod=self._field_defaults['ReflectivityReductionConfig']['normalisationMethod'],
|
|
||||||
qResolution=0.01,
|
qResolution=0.01,
|
||||||
qzRange=self._field_defaults['ReflectivityReductionConfig']['qzRange'],
|
|
||||||
thetaRange=(-0.75, 0.75),
|
thetaRange=(-0.75, 0.75),
|
||||||
fileIdentifier=["6003", "6004", "6005"],
|
fileIdentifier=["6003", "6004", "6005"],
|
||||||
scale=[1],
|
scale=[1],
|
||||||
@@ -117,3 +108,57 @@ class FullAmorTest(TestCase):
|
|||||||
# run second time to reuse norm file
|
# run second time to reuse norm file
|
||||||
reducer = reduction_reflectivity.ReflectivityReduction(config)
|
reducer = reduction_reflectivity.ReflectivityReduction(config)
|
||||||
reducer.reduce()
|
reducer.reduce()
|
||||||
|
|
||||||
|
def test_eventfilter(self):
|
||||||
|
self.reader_config.year = 2026
|
||||||
|
experiment_config = options.ExperimentConfig()
|
||||||
|
reduction_config = options.ReflectivityReductionConfig(fileIdentifier=["826"],
|
||||||
|
logfilter=['polarization_config_label==2'])
|
||||||
|
output_config = options.ReflectivityOutputConfig(
|
||||||
|
outputFormats=[options.OutputFomatOption.Rqz_ort],
|
||||||
|
outputName='test',
|
||||||
|
outputPath='test_results',
|
||||||
|
)
|
||||||
|
config=options.ReflectivityConfig(self.reader_config, experiment_config, reduction_config, output_config)
|
||||||
|
reducer = reduction_reflectivity.ReflectivityReduction(config)
|
||||||
|
reducer.reduce()
|
||||||
|
espin_up = reducer.dataset.data.events.shape[0]
|
||||||
|
|
||||||
|
reduction_config.logfilter = ['polarization_config_label==3']
|
||||||
|
output_config.append = True
|
||||||
|
reducer = reduction_reflectivity.ReflectivityReduction(config)
|
||||||
|
reducer.reduce()
|
||||||
|
espin_down = reducer.dataset.data.events.shape[0]
|
||||||
|
# measurement should have about 2x as many counts in spin_down
|
||||||
|
self.assertAlmostEqual(espin_down/espin_up, 2., 2)
|
||||||
|
|
||||||
|
# perform the same filter but remove pulses during which the switch occured
|
||||||
|
reduction_config.logfilter = ['!polarization_config_label==3']
|
||||||
|
output_config.append = True
|
||||||
|
reducer = reduction_reflectivity.ReflectivityReduction(config)
|
||||||
|
reducer.reduce()
|
||||||
|
espin_down2 = reducer.dataset.data.events.shape[0]
|
||||||
|
# measurement should have about 2x as many counts in spin_down
|
||||||
|
self.assertLess(espin_down2, espin_down)
|
||||||
|
|
||||||
|
def test_polsplitting(self):
|
||||||
|
self.reader_config.year = 2026
|
||||||
|
experiment_config = options.ExperimentConfig()
|
||||||
|
reduction_config = options.ReflectivityReductionConfig(fileIdentifier=["826"])
|
||||||
|
output_config = options.ReflectivityOutputConfig(
|
||||||
|
outputFormats=[options.OutputFomatOption.Rqz_ort],
|
||||||
|
outputName='test',
|
||||||
|
outputPath='test_results',
|
||||||
|
)
|
||||||
|
config=options.ReflectivityConfig(self.reader_config, experiment_config, reduction_config, output_config)
|
||||||
|
reducer = reduction_reflectivity.ReflectivityReduction(config)
|
||||||
|
reducer.reduce()
|
||||||
|
|
||||||
|
results = fileio.load_orso(os.path.join(output_config.outputPath, output_config.outputName+'.Rqz.ort'))
|
||||||
|
self.assertEqual(len(results), 2)
|
||||||
|
self.assertEqual(results[0].info.data_source.measurement.instrument_settings.polarization, 'po')
|
||||||
|
self.assertEqual(results[1].info.data_source.measurement.instrument_settings.polarization, 'mo')
|
||||||
|
espin_up = np.nansum(results[0].data[:,1])
|
||||||
|
espin_down = np.nansum(results[1].data[:,1])
|
||||||
|
# the total intensity should be around equal as events are doubled and monitor counts are doubled
|
||||||
|
self.assertAlmostEqual(espin_down/espin_up, 1., 2)
|
||||||
|
|||||||
16
update.md
Normal file
16
update.md
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Make new release
|
||||||
|
================
|
||||||
|
|
||||||
|
- Update revision in `eos/__init__.py`
|
||||||
|
- Commit changes `git commit -a -m "your message here"`
|
||||||
|
- Tag version `git tag v3.x.y`
|
||||||
|
- Push changes `git push` and `git push --tags`
|
||||||
|
- This should trigger the **Release** action on GitHub that builds a new version and uploads it to PyPI.
|
||||||
|
|
||||||
|
|
||||||
|
Update on AMOR
|
||||||
|
==============
|
||||||
|
|
||||||
|
- Login via SSH using the **amor** user.
|
||||||
|
- Activate eos virtual environment `source /home/software/virtualenv/eosenv/bin/activate`
|
||||||
|
- Update eos packge `pip install --upgrade amor-eos`
|
||||||
Reference in New Issue
Block a user