Closedown

This commit is contained in:
gac-x03da
2021-09-21 11:20:27 +02:00
parent 545b934b31
commit 030294a81e
2 changed files with 8 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
#Tue Sep 21 10:23:20 CEST 2021
LastRunDate=210920
FileSequentialNumber=8641
DaySequentialNumber=0
#Tue Sep 21 11:14:28 CEST 2021
LastRunDate=210921
FileSequentialNumber=8643
DaySequentialNumber=2

View File

@@ -149,8 +149,9 @@ public class Scienta extends ch.psi.pshell.epics.Scienta {
@Override
public List<Double> getChannelRange() throws IOException, InterruptedException {
ArrayList<Double> ret = new ArrayList<>();
//ret.add(getChannelBegin().getValue());
//ret.add(getChannelEnd().getValue());
ret.add(getChannelBegin().getValue());
ret.add(getChannelEnd().getValue());
/*
switch (getAcquisitionMode()) {
case Swept:
ret.add(getLowEnergy().getValue());
@@ -167,6 +168,7 @@ public class Scienta extends ch.psi.pshell.epics.Scienta {
break;
}
*/
return ret;
}