mirror of
https://git.psi.ch/fda/ch.psi.fda.xscan.git
synced 2026-05-04 20:34:13 +02:00
fixed global variables ...
This commit is contained in:
@@ -370,6 +370,14 @@ public class Acquisition {
|
||||
this.configModel = configuration;
|
||||
Scan scan = configuration.getScan();
|
||||
|
||||
for(Variable v: configuration.getVariable()){
|
||||
JythonGlobalVariable var = new JythonGlobalVariable();
|
||||
var.setName(v.getName());
|
||||
var.setValue(v.getValue());
|
||||
jVariableDictionary.put(v.getName(), var);
|
||||
v.getValue();
|
||||
}
|
||||
|
||||
// Map continuous dimension
|
||||
if(scan.getCdimension() != null){
|
||||
ActionLoop aLoop = mapContinuousDimension(scan.getCdimension());
|
||||
|
||||
Reference in New Issue
Block a user