-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from scipp/make-facilities-accessible
Make facility information for accessible
- Loading branch information
Showing
4 changed files
with
29 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,27 @@ | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# Copyright (c) 2023 Scipp contributors (https://github.com/scipp) | ||
|
||
# flake8: noqa F401 | ||
|
||
from .chopper import AntiClockwise, Chopper, ChopperReading, Clockwise | ||
from .detector import Detector, DetectorReading | ||
from .facilities import library as facilities | ||
from .model import Model | ||
from .reading import ComponentReading, ReadingData, ReadingField | ||
from .result import Result | ||
from .source import Source, SourceParameters | ||
|
||
__all__ = [ | ||
'AntiClockwise', | ||
'Chopper', | ||
'ChopperReading', | ||
'Clockwise', | ||
'ComponentReading', | ||
'Detector', | ||
'DetectorReading', | ||
'facilities', | ||
'Model', | ||
'ReadingData', | ||
'ReadingField', | ||
'Result', | ||
'Source', | ||
'SourceParameters', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# Copyright (c) 2023 Scipp contributors (https://github.com/scipp) | ||
|
||
# flake8: noqa F401 | ||
from .ess_pulse import pulse as esspulse | ||
|
||
from .ess_pulse import pulse as ess | ||
library = {'ess': esspulse} | ||
|
||
__all__ = ['library'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters