BristolTopGroup / NTupleProduction

Software for particle physics to create nTuples from AOD files
Other
2 stars 8 forks source link

Improve condor submission #240

Open kreczko opened 8 years ago

kreczko commented 8 years ago

The current condor submission is still a bit wonky and needs improvement

def n_even_chunks(l, n):
    last = 0
    for i in range(1, n+1):
        cur = int(round(i * (len(l) / n)))
        yield l[last:cur]
        last = cur

Please add missing items

kreczko commented 8 years ago

To add:

In short: