Closedown

This commit is contained in:
gac-x03da
2021-08-25 14:13:25 +02:00
parent d252c82676
commit a316e03b3e
7 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
#Fri Aug 13 10:12:07 CEST 2021
#Wed Aug 25 12:21:23 CEST 2021
autoSaveScanData=true
simulation=false
commandExecutionEvents=false
+3 -3
View File
@@ -1,7 +1,7 @@
#Fri Aug 13 10:12:07 CEST 2021
#Wed Aug 25 12:26:26 CEST 2021
pgroup=p17274
proposal=
proposer=bl-dev
prefix=
sample=FEDS
authors=Matthias Muntwiler
sample=no sample
authors=
+4 -4
View File
@@ -1,4 +1,4 @@
#Fri Aug 13 11:10:13 CEST 2021
LastRunDate=210813
FileSequentialNumber=7885
DaySequentialNumber=5
#Wed Aug 25 12:29:15 CEST 2021
LastRunDate=210825
FileSequentialNumber=7989
DaySequentialNumber=2
+2 -2
View File
@@ -1,4 +1,4 @@
#Wed Apr 22 12:03:08 CEST 2020
#Wed Aug 25 13:47:10 CEST 2021
precision=3
scale=1.0
estbilizationDelay=0
@@ -15,5 +15,5 @@ rotation=false
maxSpeed=100.0
homingType=None
startRetries=1
unit=
unit=units
hasEnable=false
+2 -2
View File
@@ -1,8 +1,8 @@
#Fri Jul 09 11:41:21 CEST 2021
#Wed Aug 18 13:47:49 CEST 2021
spatialCalOffsetY=NaN
spatialCalOffsetX=NaN
dataPolling=500
colormapLogarithmic=true
colormapLogarithmic=false
pollingInterval=0
scale=1.0
grayscale=false
+3 -3
View File
@@ -77,7 +77,7 @@
<EmptySpace max="-2" attributes="0"/>
<Group type="103" groupAlignment="0" attributes="0">
<Component id="motorPanel" max="32767" attributes="0"/>
<Component id="comboMotor" max="32767" attributes="0"/>
<Component id="comboMotor" pref="152" max="32767" attributes="0"/>
</Group>
</Group>
<Group type="102" alignment="0" attributes="0">
@@ -250,7 +250,7 @@
<Component class="javax.swing.JSpinner" name="spinnerStepSize">
<Properties>
<Property name="model" type="javax.swing.SpinnerModel" editor="org.netbeans.modules.form.editors2.SpinnerModelEditor">
<SpinnerModel initial="0.1" maximum="10.0" minimum="0.001" numberType="java.lang.Double" stepSize="0.1" type="number"/>
<SpinnerModel initial="0.1" maximum="1000.0" minimum="0.001" numberType="java.lang.Double" stepSize="0.1" type="number"/>
</Property>
</Properties>
</Component>
@@ -529,7 +529,7 @@
<Component id="buttonStart" max="32767" attributes="0"/>
<Component id="buttonAbort" max="32767" attributes="0"/>
<Group type="102" alignment="1" attributes="0">
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
<EmptySpace min="0" pref="9" max="32767" attributes="0"/>
<Group type="103" groupAlignment="0" attributes="0">
<Component id="labelAcqTime" linkSize="10" alignment="0" min="-2" max="-2" attributes="0"/>
<Component id="labelTotalTime" linkSize="10" alignment="0" min="-2" max="-2" attributes="0"/>
+4 -4
View File
@@ -243,7 +243,7 @@ public class ManipulatorScan extends Panel {
}
});
spinnerStepSize.setModel(new javax.swing.SpinnerNumberModel(0.1d, 0.001d, 10.0d, 0.1d));
spinnerStepSize.setModel(new javax.swing.SpinnerNumberModel(0.1d, 0.001d, 1000.0d, 0.1d));
spinnerSteps.setModel(new javax.swing.SpinnerNumberModel(10, 1, 1000, 1));
spinnerSteps.setEnabled(false);
@@ -300,7 +300,7 @@ public class ManipulatorScan extends Panel {
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(panelPositionerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(motorPanel, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(comboMotor, 0, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)))
.addComponent(comboMotor, 0, 152, Short.MAX_VALUE)))
.addGroup(panelPositionerLayout.createSequentialGroup()
.addComponent(jLabel3)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
@@ -537,7 +537,7 @@ public class ManipulatorScan extends Panel {
.addComponent(buttonStart, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(buttonAbort, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel3Layout.createSequentialGroup()
.addGap(0, 0, Short.MAX_VALUE)
.addGap(0, 9, Short.MAX_VALUE)
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(labelAcqTime)
.addComponent(labelTotalTime))
@@ -648,7 +648,7 @@ public class ManipulatorScan extends Panel {
spinnerFrom.setModel(new SpinnerNumberModel(motor.getMinValue(), motor.getMinValue(), motor.getMaxValue(), 1.0));
spinnerTo.setModel(new SpinnerNumberModel(motor.getMaxValue(), motor.getMinValue(), motor.getMaxValue(), 1.0));
}
txtSize.setText("Size (" + motor.getUnit() +")");
txtSize.setText("Size (" + motor.getUnit() +"):");
}
} catch (Exception ex) {
ex.printStackTrace();