Skip to content
Snippets Groups Projects
Commit 4e7381bf authored by Will Buttinger's avatar Will Buttinger
Browse files

Update ReadAthenaRoot.py - disabling output file size checking when reading...

Update ReadAthenaRoot.py - disabling output file size checking when reading TTree because GAUDI THistSvc is very inefficient at the moment -- will need to improve the EndEvent incident behaviour in THistSvc.

Former-commit-id: e38cd2102b945709f6054a85f682b059c48ef73a
parent 4f5a2515
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,9 @@ def _configure():
#this is so that the eventselector picks up input files in grid jobs
svcMgr.EventSelector.InputCollections = athenaCommonFlags.FilesInput()
#discovered major inefficiency in THistSvc where it checks output file size on every event, which slows down processing
#we will disable this by default, to keep basic tree looping performance optimal
svcMgr.THistSvc.MaxFileSize = -1
# suppress the event loop heartbeat as it is somewhat I/O hungry for
# no real gain in n-tuple reading/writing scenarii
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment