This commit is contained in:
gac-ISS
2025-08-27 14:36:28 +02:00
parent 350f06090b
commit e9ba08ce4f
15 changed files with 181 additions and 94 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ if get_exec_pars().debug:
FILE = None
if FILE:
FILE = get_context().setup.expandPath("{home}/parameters/" + FILE)
FILE = Setup.expandPath("{home}/parameters/" + FILE)
import json
with open(FILE) as json_file:
cfg = json.load(json_file)
+1 -1
View File
@@ -6,7 +6,7 @@ if get_exec_pars().debug:
FILE = None
if FILE:
FILE = get_context().setup.expandPath("{home}/parameters/" + FILE)
FILE = Setup.expandPath("{home}/parameters/" + FILE)
import json
with open(FILE) as json_file:
cfg = json.load(json_file)
+1 -1
View File
@@ -24,7 +24,7 @@ if get_exec_pars().debug:
REGIONS = [["R1", R1]]
if FILE:
FILE = get_context().setup.expandPath("{home}/parameters/" + FILE)
FILE = Setup.expandPath("{home}/parameters/" + FILE)
with open(FILE) as json_file:
cfg = json.load(json_file)
NAME , REGIONS, PASSES= cfg[0][0][0], cfg[1], cfg[2]
+1 -1
View File
@@ -24,7 +24,7 @@ if get_exec_pars().debug:
REGIONS = [["R1", R1]]
if FILE:
FILE = get_context().setup.expandPath("{home}/parameters/" + FILE)
FILE = Setup.expandPath("{home}/parameters/" + FILE)
with open(FILE) as json_file:
cfg = json.load(json_file)
NAME , REGIONS, PASSES= cfg[0][0][0], cfg[1], cfg[2]