Created
November 30, 2017 14:39
-
-
Save thomasaarholt/7e5fd17a1c38b5347ef37b463516e884 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
sem = model.getComponent(name="SEM Detector") | |
spec = model.getComponent(name="UV Spectrometer") | |
stream = SEMSpectrumMDStream("test", sem, spec) | |
--------------------------------------------------------------- | |
AssertionError Traceback (most recent call last) | |
<ipython-input-173-dab28defdbf6> in <module>() | |
1 sem = model.getComponent(name="SEM Detector") | |
2 spec = model.getComponent(name="UV Spectrometer") | |
----> 3 stream = SEMSpectrumMDStream("thomas", sem, spec) | |
/home/sparc/development/notebooks_thomas/odemis_sync.py in __init__(self, name, main_stream, rep_stream, stage) | |
81 self._anchor_raw = [] # data of the anchor region | |
82 | |
---> 83 assert main_stream._emitter == rep_stream._emitter | |
84 self._emitter = main_stream._emitter | |
85 # probably secondary electron detector | |
AssertionError: | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment