4Job to count number of events in LCIO file.
8job.description =
'LCIO count'
10output_files = sorted(job.output_files.keys())
11if len(output_files) < 1:
12 raise Exception(
"Not enough output files were provided (at least 1 required).")
14nevents = job.params[
'nevents']
16count =
LCIOCount(minevents=nevents, inputs=output_files)