hasyutils 2.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hasyutils-2.0.0/AUTHORS +7 -0
- hasyutils-2.0.0/CHANGES +7 -0
- hasyutils-2.0.0/HasyUtils/MgUtils.py +722 -0
- hasyutils-2.0.0/HasyUtils/MsUtils.py +1283 -0
- hasyutils-2.0.0/HasyUtils/OtherUtils.py +1097 -0
- hasyutils-2.0.0/HasyUtils/TgUtils.py +6712 -0
- hasyutils-2.0.0/HasyUtils/__init__.py +11 -0
- hasyutils-2.0.0/HasyUtils/fastscananalysis.py +476 -0
- hasyutils-2.0.0/HasyUtils/fioReader.py +714 -0
- hasyutils-2.0.0/HasyUtils/nxIO.py +309 -0
- hasyutils-2.0.0/HasyUtils/nxsReader.py +697 -0
- hasyutils-2.0.0/HasyUtils/nxsconftools.py +144 -0
- hasyutils-2.0.0/HasyUtils/pooltools.py +2648 -0
- hasyutils-2.0.0/HasyUtils/pyqtSelector.py +49 -0
- hasyutils-2.0.0/HasyUtils/spectraDoor.py +1549 -0
- hasyutils-2.0.0/HasyUtils/ssa.py +223 -0
- hasyutils-2.0.0/HasyUtils/tngMonitorAttrs.py +567 -0
- hasyutils-2.0.0/LICENSE +34 -0
- hasyutils-2.0.0/MANIFEST.in +7 -0
- hasyutils-2.0.0/PKG-INFO +8 -0
- hasyutils-2.0.0/README.md +3 -0
- hasyutils-2.0.0/README.rst +20 -0
- hasyutils-2.0.0/Utils/execExpPCsRoot.py +80 -0
- hasyutils-2.0.0/Utils/execMotorLogger.py +120 -0
- hasyutils-2.0.0/Utils/findSpockNodes.py +55 -0
- hasyutils-2.0.0/Utils/scpExpPCsRoot.py +72 -0
- hasyutils-2.0.0/hasyutils.egg-info/PKG-INFO +8 -0
- hasyutils-2.0.0/hasyutils.egg-info/SOURCES.txt +88 -0
- hasyutils-2.0.0/hasyutils.egg-info/dependency_links.txt +1 -0
- hasyutils-2.0.0/hasyutils.egg-info/top_level.txt +1 -0
- hasyutils-2.0.0/scripts/AlarmFunctions.py +37 -0
- hasyutils-2.0.0/scripts/ECMonitor.py +85 -0
- hasyutils-2.0.0/scripts/HasyUtilsMain.py +44 -0
- hasyutils-2.0.0/scripts/IVPmacro.py +129 -0
- hasyutils-2.0.0/scripts/MotorLogger.py +439 -0
- hasyutils-2.0.0/scripts/SardanaAIO.py +140 -0
- hasyutils-2.0.0/scripts/SardanaAdjustLimits.py +63 -0
- hasyutils-2.0.0/scripts/SardanaAlarmMonitor.py +129 -0
- hasyutils-2.0.0/scripts/SardanaChMg.py +289 -0
- hasyutils-2.0.0/scripts/SardanaChat.py +58 -0
- hasyutils-2.0.0/scripts/SardanaCheckOnlineXml.py +108 -0
- hasyutils-2.0.0/scripts/SardanaClearSCAs.py +22 -0
- hasyutils-2.0.0/scripts/SardanaConvert.py +1847 -0
- hasyutils-2.0.0/scripts/SardanaDeleteMotorGroups.py +32 -0
- hasyutils-2.0.0/scripts/SardanaDiag.py +149 -0
- hasyutils-2.0.0/scripts/SardanaIVP.py +767 -0
- hasyutils-2.0.0/scripts/SardanaInfoViewer.py +165 -0
- hasyutils-2.0.0/scripts/SardanaLimitsFromTS2Pool.py +31 -0
- hasyutils-2.0.0/scripts/SardanaMacroExecutor.py +51 -0
- hasyutils-2.0.0/scripts/SardanaMacroTester.py +256 -0
- hasyutils-2.0.0/scripts/SardanaMessageWindow.py +156 -0
- hasyutils-2.0.0/scripts/SardanaMotorMonitor.py +318 -0
- hasyutils-2.0.0/scripts/SardanaRestartBoth.py +36 -0
- hasyutils-2.0.0/scripts/SardanaRestartMacroServer.py +51 -0
- hasyutils-2.0.0/scripts/SardanaRestartPool.py +40 -0
- hasyutils-2.0.0/scripts/SardanaShutdown.py +80 -0
- hasyutils-2.0.0/scripts/SardanaStartMacroServer.py +39 -0
- hasyutils-2.0.0/scripts/SardanaStartPool.py +40 -0
- hasyutils-2.0.0/scripts/SardanaStartup.py +245 -0
- hasyutils-2.0.0/scripts/SardanaStatus.py +63 -0
- hasyutils-2.0.0/scripts/SardanaStopBoth.py +28 -0
- hasyutils-2.0.0/scripts/SardanaStopMacro.py +57 -0
- hasyutils-2.0.0/scripts/SardanaStopMacroServer.py +36 -0
- hasyutils-2.0.0/scripts/SardanaStopPool.py +38 -0
- hasyutils-2.0.0/scripts/TngEigerCLI.py +277 -0
- hasyutils-2.0.0/scripts/TngMonitorAttrs.py +83 -0
- hasyutils-2.0.0/scripts/TngUtility.py +1445 -0
- hasyutils-2.0.0/scripts/Update_files.py +50 -0
- hasyutils-2.0.0/scripts/alarm.ui +54 -0
- hasyutils-2.0.0/scripts/nxs_ifc.py +50 -0
- hasyutils-2.0.0/scripts/nxsclient.py +51 -0
- hasyutils-2.0.0/scripts/nxsreader.py +62 -0
- hasyutils-2.0.0/setup.cfg +12 -0
- hasyutils-2.0.0/setup.py +62 -0
- hasyutils-2.0.0/test/testCreateSaDct.py +275 -0
- hasyutils-2.0.0/test/testDiffractometer.py +91 -0
- hasyutils-2.0.0/test/testFSA.py +246 -0
- hasyutils-2.0.0/test/testFioReader.py +175 -0
- hasyutils-2.0.0/test/testFioRecorder.py +99 -0
- hasyutils-2.0.0/test/testMgUtils.py +194 -0
- hasyutils-2.0.0/test/testMsUtils.py +285 -0
- hasyutils-2.0.0/test/testMvsa.py +192 -0
- hasyutils-2.0.0/test/testNxsReader.py +260 -0
- hasyutils-2.0.0/test/testOtherUtils.py +173 -0
- hasyutils-2.0.0/test/testTags.py +56 -0
- hasyutils-2.0.0/test/testTgUtils.py +418 -0
- hasyutils-2.0.0/test/testTngMonitorAttrs.py +79 -0
- hasyutils-2.0.0/test/testUtils.py +14 -0
- hasyutils-2.0.0/test/testVirtuals.py +99 -0
hasyutils-2.0.0/AUTHORS
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Pint is written and maintained by Thorsten Kracht <thorsten.kracht@desy.de> and Teresa Nunez Pardo de Vera <maria-teresa.nunez-pardo-de-vera@desy.de>.
|
|
2
|
+
|
|
3
|
+
Other contributors, listed alphabetically, are:
|
|
4
|
+
|
|
5
|
+
* Somebody Else <somebody.else@gmail.com>
|
|
6
|
+
|
|
7
|
+
(If you think that your name belongs here, please let the maintainer know)
|