Skip to content

Commit 8c98289

Browse files
Merge pull request #352 from ISISComputingGroup/Ticket1743_rbnumebrs
Use correct DAE PV
2 parents a36992c + 59d7e72 commit 8c98289

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base/uk.ac.stfc.isis.ibex.dae/src/uk/ac/stfc/isis/ibex/dae/DaeObservables.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public DaeObservables() {
9797
title = obsFactory.getSwitchableObservable(new CharWaveformChannel(), addPrefix(DAE.endWith("TITLE")));
9898
displayTitle =
9999
obsFactory.getSwitchableObservable(new BooleanChannel(), addPrefix(DAE.endWith("TITLE:DISPLAY")));
100-
users = obsFactory.getSwitchableObservable(new CharWaveformChannel(), addPrefix(DAE.endWith("USERNAME")));
100+
users = obsFactory.getSwitchableObservable(new CharWaveformChannel(), addPrefix(DAE.endWith("_USERNAME")));
101101
goodFrames = obsFactory.getSwitchableObservable(new IntegerChannel(), addPrefix(DAE.endWith("GOODFRAMES")));
102102
rawFrames = obsFactory.getSwitchableObservable(new IntegerChannel(), addPrefix(DAE.endWith("RAWFRAMES")));
103103
monitorCounts = obsFactory.getSwitchableObservable(new IntegerChannel(),
@@ -134,7 +134,7 @@ public DaeObservables() {
134134
addPrefix(DAE.endWith("DAEMEMORYUSED")));
135135
timingSource = obsFactory.getSwitchableObservable(new StringChannel(),
136136
addPrefix(DAE.endWith("DAETIMINGSOURCE")));
137-
rbNumber = obsFactory.getSwitchableObservable(new StringChannel(), addPrefix(DAE.endWith("RBNUMBER")));
137+
rbNumber = obsFactory.getSwitchableObservable(new StringChannel(), addPrefix(DAE.endWith("_RBNUMBER")));
138138
countRate = obsFactory.getSwitchableObservable(new DoubleChannel(), addPrefix(DAE.endWith("COUNTRATE")));
139139
eventMode = obsFactory.getSwitchableObservable(new DoubleChannel(),
140140
addPrefix(DAE.endWith("EVENTMODEFRACTION")));

0 commit comments

Comments
 (0)