Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
redpitaya-MCPHA
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Günter Quast
redpitaya-MCPHA
Commits
47c20222
Commit
47c20222
authored
9 months ago
by
Guenter Quast
Browse files
Options
Downloads
Patches
Plain Diff
more conditional imports: mimocorb
parent
796fcc32
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
redP_mimoCoRB.py
+2
-7
2 additions, 7 deletions
redP_mimoCoRB.py
redPoscdaq.py
+12
-2
12 additions, 2 deletions
redPoscdaq.py
run_daq.py
+31
-0
31 additions, 0 deletions
run_daq.py
with
45 additions
and
9 deletions
redP_mimoCoRB.py
+
2
−
7
View file @
47c20222
...
@@ -21,14 +21,9 @@ def redP_to_rb(source_list=None, sink_list=None, observe_list=None, config_dict=
...
@@ -21,14 +21,9 @@ def redP_to_rb(source_list=None, sink_list=None, observe_list=None, config_dict=
:param config_dict: configuration dictionary
:param config_dict: configuration dictionary
- events_required: number of events to be simulated or 0 for infinite
- events_required: number of events to taken
- sleeptime: (mean) time between events
- random: random time between events according to a Poission process
- number_of_samples, sample_time_ns, pretrigger_samples and analogue_offset
- number_of_samples, sample_time_ns, pretrigger_samples and analogue_offset
describe the waveform data to be generated (as for oscilloscope setup)
- decimation index, invert fags, trigger mode and trigger direction for RedPitaya
Internal parameters of the simulated physics process (the decay of a muon)
are (presently) not exposed to user.
"""
"""
# initialize mimocorb class inside redPoscidaq
# initialize mimocorb class inside redPoscidaq
...
...
This diff is collapsed.
Click to expand it.
redPoscdaq.py
+
12
−
2
View file @
47c20222
...
@@ -52,7 +52,10 @@ import matplotlib
...
@@ -52,7 +52,10 @@ import matplotlib
from
matplotlib.figure
import
Figure
from
matplotlib.figure
import
Figure
from
multiprocessing
import
Event
from
multiprocessing
import
Event
from
mimocorb.buffer_control
import
rbPut
# !!! for conditional import from npy_append_array !!!
def
import_mimocorb
():
global
rbPut
from
mimocorb.buffer_control
import
rbPut
# !!! for conditional import from npy_append_array !!!
# !!! for conditional import from npy_append_array !!!
def
import_npy_append_array
():
def
import_npy_append_array
():
...
@@ -208,7 +211,7 @@ class rpControl(QMainWindow, Ui_MCPHA):
...
@@ -208,7 +211,7 @@ class rpControl(QMainWindow, Ui_MCPHA):
self
.
invert2
=
0
if
"
invert_channel2
"
not
in
self
.
confd
else
self
.
confd
[
"
invert_channel2
"
]
self
.
invert2
=
0
if
"
invert_channel2
"
not
in
self
.
confd
else
self
.
confd
[
"
invert_channel2
"
]
self
.
readInterval
=
1000
# used to control update of oscilloscope display
self
.
readInterval
=
1000
# used to control update of oscilloscope display
# other parameters
# other parameters
self
.
filename
=
''
# file name for data export
self
.
filename
=
''
# file name for data export
, '' means disable
def
parse_args
(
self
):
def
parse_args
(
self
):
parser
=
argparse
.
ArgumentParser
(
description
=
__doc__
)
parser
=
argparse
.
ArgumentParser
(
description
=
__doc__
)
...
@@ -246,6 +249,7 @@ class rpControl(QMainWindow, Ui_MCPHA):
...
@@ -246,6 +249,7 @@ class rpControl(QMainWindow, Ui_MCPHA):
# other parameters
# other parameters
self
.
filename
=
args
.
file
self
.
filename
=
args
.
file
if
self
.
filename
:
if
self
.
filename
:
# data recording with npy_append_array()
import_npy_append_array
()
import_npy_append_array
()
...
@@ -896,6 +900,8 @@ class redP_consumer():
...
@@ -896,6 +900,8 @@ class redP_consumer():
class
redP_mimocorb
():
class
redP_mimocorb
():
def
__init__
(
self
,
source_list
=
None
,
sink_list
=
None
,
observe_list
=
None
,
config_dict
=
None
,
def
__init__
(
self
,
source_list
=
None
,
sink_list
=
None
,
observe_list
=
None
,
config_dict
=
None
,
**
rb_info
):
**
rb_info
):
# import rbPut() from mimoCoRB
import_mimocorb
()
# initialize mimoCoRB interface
# initialize mimoCoRB interface
self
.
action
=
rbPut
(
config_dict
=
config_dict
,
sink_list
=
sink_list
,
**
rb_info
)
self
.
action
=
rbPut
(
config_dict
=
config_dict
,
sink_list
=
sink_list
,
**
rb_info
)
self
.
number_of_channels
=
len
(
self
.
action
.
sink
.
dtype
)
self
.
number_of_channels
=
len
(
self
.
action
.
sink
.
dtype
)
...
@@ -917,6 +923,10 @@ class redP_mimocorb():
...
@@ -917,6 +923,10 @@ class redP_mimocorb():
sys
.
exit
()
sys
.
exit
()
def
run_rpControl
(
callback
=
None
,
conf_dict
=
None
):
def
run_rpControl
(
callback
=
None
,
conf_dict
=
None
):
if
conf_dict
is
not
None
:
# need module rbPut() from mimoCoRB, import here
import_mimocorb
()
# start redPidaya GUI under Qt5
# start redPidaya GUI under Qt5
app
=
QApplication
(
sys
.
argv
)
app
=
QApplication
(
sys
.
argv
)
dpi
=
app
.
primaryScreen
().
logicalDotsPerInch
()
dpi
=
app
.
primaryScreen
().
logicalDotsPerInch
()
...
...
This diff is collapsed.
Click to expand it.
run_daq.py
0 → 100755
+
31
−
0
View file @
47c20222
#! /usr/bin/env python3
"""
run mimoCoRB data acquisition suite
"""
import
argparse
import
sys
,
time
from
mimocorb.buffer_control
import
run_mimoDAQ
# define command line arguments ...
parser
=
argparse
.
ArgumentParser
(
description
=
__doc__
)
parser
.
add_argument
(
'
filename
'
,
nargs
=
'
?
'
,
default
=
"
setup.yaml
"
,
help
=
"
configuration file
"
)
parser
.
add_argument
(
'
-v
'
,
'
--verbose
'
,
type
=
int
,
default
=
2
,
help
=
"
verbosity level (2)
"
)
parser
.
add_argument
(
'
-d
'
,
'
--debug
'
,
action
=
'
store_true
'
,
help
=
"
switch on debug mode (False)
"
)
# ... and parse command line input
args
=
parser
.
parse_args
()
print
(
"
\n
*==* script
"
+
sys
.
argv
[
0
]
+
"
running
\n
"
)
daq
=
run_mimoDAQ
(
args
.
filename
,
verbose
=
args
.
verbose
,
debug
=
args
.
debug
)
daq
.
setup
()
daq
.
run
()
# wait for user confirmation (useful if started via GUI)
# input(30*' '+'Finished, good bye ! Type <ret> to exit -> ')
print
(
"
\n
*==* script
"
+
sys
.
argv
[
0
]
+
"
finished
"
+
time
.
asctime
()
+
"
\n
"
)
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