File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 1
1
from pathlib import Path
2
2
3
3
from ophyd_async .epics .adaravis import AravisDetector
4
+ from ophyd_async .epics .adcore import NDPluginBaseIO
4
5
from ophyd_async .epics .adpilatus import PilatusDetector
5
6
from ophyd_async .fastcs .panda import HDFPanda
6
7
@@ -101,6 +102,11 @@ def i0() -> TetrammDetector:
101
102
prefix = f"{ PREFIX .beamline_prefix } -EA-XBPM-02:" ,
102
103
path_provider = get_path_provider (),
103
104
type = "Cividec Diamond XBPM" ,
105
+ plugins = {
106
+ "stats" : NDPluginBaseIO (
107
+ prefix = f"{ PREFIX .beamline_prefix } -EA-XBPM-02:SumAll:"
108
+ )
109
+ },
104
110
)
105
111
106
112
@@ -110,6 +116,11 @@ def it() -> TetrammDetector:
110
116
prefix = f"{ PREFIX .beamline_prefix } -EA-TTRM-02:" ,
111
117
path_provider = get_path_provider (),
112
118
type = "PIN Diode" ,
119
+ plugins = {
120
+ "stats" : NDPluginBaseIO (
121
+ prefix = f"{ PREFIX .beamline_prefix } -EA-TTRM-02:SumAll:"
122
+ )
123
+ },
113
124
)
114
125
115
126
You can’t perform that action at this time.
0 commit comments