Skip to content
Snippets Groups Projects

Merging full workflow into Tanay's HiggsDNA

Open Sergi Castells requested to merge castells/higgs-dna-4-gamma-tanays-copy:master into master
Compare and Show latest version
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -136,7 +136,7 @@ export X509_USER_PROXY=/afs/crc.nd.edu/user/s/scastel2/.x509up_u240439
## Print out totals
for era_str in resubmit.keys():
print(f"Resubmit Needed {era_str}:\t {len(resubmit[era_str][0]):>4} \t\t Total Jobs: {resubmit[era_str][3]:>4}")
if sum([sum(resubmit[key][0]) for key in resubmit]) == 0:
if sum([len(resubmit[key][0]) for key in resubmit.keys()]) == 0:
print("No jobs to resubmit!")
sys.exit(0)
Loading