82 |
|
print "Submitting job: %s " % cmd |
83 |
|
|
84 |
|
print "Once condor jobs have finished, merge the composite datasets and then make plots with:" |
85 |
< |
print " makeBNTreePlot.py -q -l " + arguments.localConfig + " -c " + arguments.condorDir |
86 |
< |
print " makePlots.py -l " + arguments.localConfig + " -c " + arguments.condorDir |
85 |
> |
if arguments.splitCondorJobs: |
86 |
> |
print " mergeOutput.py -q -l " + arguments.localConfig + " -c " + arguments.condorDir |
87 |
> |
else: |
88 |
> |
print " makeBNTreePlot.py -q -l " + arguments.localConfig + " -c " + arguments.condorDir |
89 |
> |
print " makePlots.py -l " + arguments.localConfig + " -c " + arguments.condorDir |
90 |
|
|
91 |
|
return |
92 |
|
|