This commit is contained in:
2019-09-26 09:55:48 +02:00
parent 2c56919217
commit 9a64e89dbc
2 changed files with 10 additions and 6 deletions

View File

@@ -1,11 +1,11 @@
#Tue Sep 24 17:38:23 CEST 2019
spatialCalOffsetY=-79.30384541357998
spatialCalOffsetX=-105.35473003527441
#Wed Sep 25 13:42:47 CEST 2019
spatialCalOffsetY=-483.5036425564949
spatialCalOffsetX=-637.4980411378614
colormapLogarithmic=false
scale=1.0
grayscale=false
spatialCalScaleX=-35.21126989416174
spatialCalScaleY=-48.38709622896635
spatialCalScaleX=-35.21126887460907
spatialCalScaleY=-48.38709552593848
colormapMax=58981.0
serverURL=http\://gfa-lc6-64\:8889
rescaleOffset=0.0

View File

@@ -2271,7 +2271,11 @@ public class ScreenPanel5 extends Panel {
}
boolean getLaserState() throws Exception {
return (Epics.get("SIN-TIMAST-TMA:Beam-Las-Delay-Sel", Integer.class) == 0);
try{
return (Epics.get("SIN-TIMAST-TMA:Beam-Las-Delay-Sel", Integer.class) == 0);
}catch (Exception ex){
return false;
}
}
void elog(String logbook, String title, String message, String[] attachments) throws Exception {