Skip to content
Snippets Groups Projects
Verified Commit 3747e1c9 authored by Tadej Novak's avatar Tadej Novak
Browse files

PyJobTransforms: Fix input/output file parsing from AMI

parent d2d2cb24
No related branches found
No related tags found
No related merge requests found
...@@ -356,13 +356,11 @@ def getTrfConfigFromPANDA(tag): ...@@ -356,13 +356,11 @@ def getTrfConfigFromPANDA(tag):
if arg.lstrip('-').startswith('input') and arg.endswith('File'): if arg.lstrip('-').startswith('input') and arg.endswith('File'):
value=physics.pop(arg) value=physics.pop(arg)
msg.debug("Found input file argument %s=%s.", arg, value ) msg.debug("Found input file argument %s=%s.", arg, value )
fmt=arg.lstrip('-').replace('input','').replace('File','') trf.inFiles[arg]=value
trf.inFiles[arg]=getInputFileName(arg)
elif arg.lstrip('-').startswith('output') and arg.endswith('File'): elif arg.lstrip('-').startswith('output') and arg.endswith('File'):
value=physics.pop(arg) value=physics.pop(arg)
msg.debug("Found output file argument %s=%s.", arg, value ) msg.debug("Found output file argument %s=%s.", arg, value )
fmt=arg.lstrip('-').replace('output','').replace('File','') trf.outFiles[arg]=value
trf.outFiles[arg]=getOutputFileName(fmt)
msg.debug("Checking for not set arguments...") msg.debug("Checking for not set arguments...")
for arg,value in listitems(physics): for arg,value in listitems(physics):
...@@ -490,13 +488,11 @@ def getTrfConfigFromAMI(tag, suppressNonJobOptions = True): ...@@ -490,13 +488,11 @@ def getTrfConfigFromAMI(tag, suppressNonJobOptions = True):
if arg.lstrip('-').startswith('input') and arg.endswith('File'): if arg.lstrip('-').startswith('input') and arg.endswith('File'):
value = physics.pop(arg) value = physics.pop(arg)
msg.debug("Found input file argument %s=%s.", arg, value) msg.debug("Found input file argument %s=%s.", arg, value)
fmt = arg.lstrip('-').replace('input', '').replace('File', '') trf.inFiles[arg] = value
trf.inFiles[arg] = getInputFileName(arg)
elif arg.lstrip('-').startswith('output') and arg.endswith('File'): elif arg.lstrip('-').startswith('output') and arg.endswith('File'):
value = physics.pop(arg) value = physics.pop(arg)
msg.debug("Found output file argument %s=%s.", arg, value) msg.debug("Found output file argument %s=%s.", arg, value)
fmt = arg.lstrip('-').replace('output', '').replace('File', '') trf.outFiles[arg] = value
trf.outFiles[arg] = getOutputFileName(fmt)
msg.debug("Checking for not set arguments...") msg.debug("Checking for not set arguments...")
for arg, value in listitems(physics): for arg, value in listitems(physics):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment