25 |
|
print "Please provide a task.\n-J prep:\tpreparation of Trees\n-J sys:\t\twrite regression and systematics\n-J eval:\tcreate MVA output\n-J plot:\tproduce Plots\n-J dc:\t\twrite workspaces and datacards" |
26 |
|
sys.exit(123) |
27 |
|
|
28 |
< |
#create the dictionary with the samples to run over |
29 |
< |
samplesDict=opts.samples.split(",") |
28 |
> |
#create the list with the samples to run over |
29 |
> |
samplesList=opts.samples.split(",") |
30 |
|
|
31 |
|
en = opts.tag |
32 |
|
configs = ['config%s'%(en),'pathConfig%s'%(en)] |
82 |
|
for job in info: |
83 |
|
submit(job.name,repDict) |
84 |
|
else: |
85 |
< |
for sample in samplesDict: |
85 |
> |
for sample in samplesList: |
86 |
|
submit(sample,repDict) |
87 |
|
|