Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
calibration
pycalibration
Commits
72df8622
You need to sign in or sign up before continuing.
Commit
72df8622
authored
2 years ago
by
Karim Ahmed
Browse files
Options
Downloads
Patches
Plain Diff
remove unneeded noqa
parent
5be12d04
No related branches found
No related tags found
1 merge request
!712
[Gotthard2][Dark] Process dark constants starting the 21st pulse
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/cal_tools/gotthard2/gotthard2lib.py
+10
-9
10 additions, 9 deletions
src/cal_tools/gotthard2/gotthard2lib.py
with
10 additions
and
9 deletions
src/cal_tools/gotthard2/gotthard2lib.py
+
10
−
9
View file @
72df8622
...
@@ -15,23 +15,24 @@ class Gotthard2Ctrl():
...
@@ -15,23 +15,24 @@ class Gotthard2Ctrl():
self
.
ctrl_src
=
ctrl_src
self
.
ctrl_src
=
ctrl_src
def
get_bias_voltage
(
self
):
def
get_bias_voltage
(
self
):
return
(
self
.
run_dc
[
self
.
ctrl_src
,
"
highVoltageMax
"
].
as_single_value
()
)
return
self
.
run_dc
[
self
.
ctrl_src
,
"
highVoltageMax
"
].
as_single_value
()
def
get_exposure_time
(
self
):
def
get_exposure_time
(
self
):
return
(
round
(
return
round
(
self
.
run_dc
[
self
.
ctrl_src
,
"
exposureTime
"
].
as_single_value
(),
4
)
)
self
.
run_dc
[
self
.
ctrl_src
,
"
exposureTime
"
].
as_single_value
(),
4
)
def
get_exposure_period
(
self
):
def
get_exposure_period
(
self
):
return
(
round
(
return
round
(
self
.
run_dc
[
self
.
ctrl_src
,
"
exposurePeriod
"
].
as_single_value
(),
4
)
)
# noqa
self
.
run_dc
[
self
.
ctrl_src
,
"
exposurePeriod
"
].
as_single_value
(),
4
)
def
get_acquisition_rate
(
self
):
def
get_acquisition_rate
(
self
):
try
:
try
:
return
(
float
(
self
.
run_dc
.
get_run_value
(
self
.
ctrl_src
,
"
acquisitionRate
"
)))
# noqa
return
float
(
self
.
run_dc
.
get_run_value
(
self
.
ctrl_src
,
"
acquisitionRate
"
))
except
extra_data
.
PropertyNameError
:
except
extra_data
.
PropertyNameError
:
pass
pass
def
get_single_photon
(
self
):
def
get_single_photon
(
self
):
if
"
singlePhoton.value
"
in
self
.
run_dc
.
keys_for_source
(
self
.
ctrl_src
):
# noqa
if
"
singlePhoton.value
"
in
self
.
run_dc
.
keys_for_source
(
self
.
ctrl_src
):
return
(
return
bool
(
bool
(
self
.
run_dc
[
self
.
ctrl_src
,
"
singlePhoton
"
].
as_single_value
())
)
# noqa
self
.
run_dc
[
self
.
ctrl_src
,
"
singlePhoton
"
].
as_single_value
())
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment