-
Notifications
You must be signed in to change notification settings - Fork 2
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 #672 from lnls-sirius/add-bpms-equalization
Add BPMs Equalization Window
- Loading branch information
Showing
10 changed files
with
450 additions
and
6 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
pyqt-apps/scripts/sirius-hla-si-di-equalize_bpms_switching.py
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env python-sirius | ||
|
||
"""Window to equalize switching semicycles of BPM antennas.""" | ||
|
||
import sys | ||
import argparse as _argparse | ||
|
||
from siriushla.sirius_application import SiriusApplication | ||
from siriushla.si_di_equalize_bpms import BPMsEqualizeSwitching | ||
|
||
|
||
parser = _argparse.ArgumentParser( | ||
description="Run BPMs Equalization Interface.") | ||
args = parser.parse_args() | ||
|
||
app = SiriusApplication() | ||
app.open_window(BPMsEqualizeSwitching, parent=None) | ||
sys.exit(app.exec_()) |
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
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
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
from .main import BPMsEqualizeSwitching |
Oops, something went wrong.