25 lines
586 B
Python
Executable File
25 lines
586 B
Python
Executable File
|
|
#ranges = [ [0,10], [20,30], [50,70]]
|
|
|
|
#for range in ranges:
|
|
# run_fda("test/test1.xml", {"id278043.start":range[0], "id278043.end":range[1]})
|
|
|
|
|
|
|
|
set_exec_pars(name="mytest")
|
|
run_fda("test/test1.xml", {"id278043.start":0, "id278043.end":10})
|
|
|
|
#ProcessorFDA().execute("test1.xml", {"var1":2.0, "id278043.end":10.0})
|
|
|
|
|
|
"""
|
|
p = ProcessorFDA()
|
|
p.configuration.appendSuffix = False
|
|
set_exec_pars(name = "test1_0001")
|
|
p.execute("test1.xml", None);
|
|
|
|
set_exec_pars(name = "test1_0002")
|
|
p.execute("test1.xml", None);
|
|
|
|
"""
|