Did some renaming to make things make sense

This commit is contained in:
2025-08-27 14:49:12 +02:00
parent a590027c44
commit 0e01193240
2 changed files with 4 additions and 4 deletions

View File

@@ -9,6 +9,6 @@ Durations are in microseconds, excepting post_acquisition_time (ms), and frequen
Node('example_TNMR.psi.ch', 'The NMR system running the Scout and controlled with TNMR', interface='tcp://5000')
Mod('tnmr_otf_module', 'frappy_psi.tnmr.OTFModule.ProgrammedSequence', 'NMR Sequence')
Mod('daq_scout', 'frappy_psi.tnmr.TNMRModule.TNMRModule', 'Tecmag SCOUT-based NMR System')
print('TNMR Module loaded - please refer to the following docstring for help:\n'+docstring)
print('TNMR Module loaded - please refer to https://www.psi.ch/en/lin/nmr-spectroscopy for help and documentation')

View File

@@ -31,8 +31,8 @@ import traceback
TNMR_MAX_PULSES = 100
class ProgrammedSequence(fc.Drivable): # Drivable only for kill() funcitonality
"""An NMR device being driven by an instance of TNMR. Requires that an instance of TNMR is opened before creation.
class TNMRModule(fc.Drivable): # Drivable only for kill() funcitonality
"""An NMR device being driven by an instance of TNMR. Requires that an instance of TNMR is opened; if one is not, it will attempt to open one, though it is not guaranteed that this will always work.
Use
---