Skip to content

Commit

Permalink
Saving of processed events outside elapsed time block
Browse files Browse the repository at this point in the history
  • Loading branch information
kjvbrt committed Feb 22, 2024
1 parent b408bdc commit 56cc625
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions python/run_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def run_rdf(rdf_module,
'occurred:\n%s', excp)
sys.exit(3)

return evtcount
return evtcount.GetValue()


# _____________________________________________________________________________
Expand Down Expand Up @@ -512,16 +512,8 @@ def run_local(rdf_module, infile_list, args):
# Run RDF
start_time = time.time()
outn = run_rdf(rdf_module, file_list, outfile_path, args)
outn = outn.GetValue()

with ROOT.TFile(outfile_path, 'update') as outfile:
param = ROOT.TParameter(int)(
'eventsProcessed',
nevents_orig if nevents_orig != 0 else nevents_local)
param.Write()
outfile.Write()

elapsed_time = time.time() - start_time

info_msg = f"{' SUMMARY ':=^80}\n"
info_msg += 'Elapsed time (H:M:S): '
info_msg += time.strftime('%H:%M:%S', time.gmtime(elapsed_time))
Expand All @@ -538,6 +530,14 @@ def run_local(rdf_module, infile_list, args):
info_msg += '\n'
LOGGER.info(info_msg)

# Update resulting root file with number of processed events
with ROOT.TFile(outfile_path, 'update') as outfile:
param = ROOT.TParameter(int)(
'eventsProcessed',
nevents_orig if nevents_orig != 0 else nevents_local)
param.Write()
outfile.Write()

if args.bench:
analysis_name = get_element(rdf_module, 'analysisName')
if not analysis_name:
Expand Down

0 comments on commit 56cc625

Please sign in to comment.