From 030294a81e6701101472dfffc1f3aa32b13d219a Mon Sep 17 00:00:00 2001 From: gac-x03da Date: Tue, 21 Sep 2021 11:20:27 +0200 Subject: [PATCH] Closedown --- config/variables.properties | 8 ++++---- plugins/Scienta.java | 6 ++++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/config/variables.properties b/config/variables.properties index f9a47a7e..75d3250f 100644 --- a/config/variables.properties +++ b/config/variables.properties @@ -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 diff --git a/plugins/Scienta.java b/plugins/Scienta.java index 67306f9c..b5ebd817 100644 --- a/plugins/Scienta.java +++ b/plugins/Scienta.java @@ -149,8 +149,9 @@ public class Scienta extends ch.psi.pshell.epics.Scienta { @Override public List getChannelRange() throws IOException, InterruptedException { ArrayList 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; }