58 |
|
subprocess.call([command], shell=True) |
59 |
|
|
60 |
|
if opts.task == 'dc': |
61 |
< |
DC_vars = config.items('Limit') |
61 |
> |
#DC_vars = config.items('Limit') |
62 |
> |
DC_vars= (config.get('LimitGeneral','List')).split(',') |
63 |
> |
print DC_vars |
64 |
> |
|
65 |
|
if opts.task == 'plot': |
66 |
|
Plot_vars= (config.get('Plot_general','List')).split(',') |
67 |
|
|
80 |
|
elif opts.task == 'dc': |
81 |
|
repDict['queue'] = 'short.q' |
82 |
|
for item in DC_vars: |
83 |
< |
if 'ZH%s'%opts.mass in item[0] and opts.tag in item[0]: |
84 |
< |
submit(item[0],repDict) |
85 |
< |
elif 'ZH' in item[0] and opts.tag in item[0] and opts.mass == '*': |
86 |
< |
submit(item[0],repDict) |
83 |
> |
if 'ZH%s'%opts.mass in item and opts.tag in item: |
84 |
> |
submit(item,repDict) |
85 |
> |
elif 'ZH' in item and opts.tag in item and opts.mass == '*': |
86 |
> |
submit(item,repDict) |
87 |
|
|
88 |
|
elif opts.task == 'prep': |
89 |
|
submit('prepare',repDict) |