Skip to content
Snippets Groups Projects

RecJobTransforms + SimuJobTransforms: Switch the compression of all temporary files to ZLIB to speed up reading/writing

4 files
+ 8
8
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -154,10 +154,10 @@ if hasattr(runArgs,"outputDESDM_BEAMSPOTFile"):
include("InDetBeamSpotFinder/DESDM_BEAMSPOTFragment.py")
#==========================================================
# Use LZ4 for compression of all temporary outputs
# Use ZLIB for compression of all temporary outputs
#==========================================================
if hasattr(runArgs, "outputAODFile") and ('_000' in runArgs.outputAODFile or 'tmp.' in runArgs.outputAODFile):
ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += [ "DatabaseName = '" + athenaCommonFlags.PoolAODOutput()+ "'; COMPRESSION_ALGORITHM = '4'" ]
ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += [ "DatabaseName = '" + athenaCommonFlags.PoolAODOutput()+ "'; COMPRESSION_ALGORITHM = '1'" ]
ServiceMgr.AthenaPoolCnvSvc.PoolAttributes += [ "DatabaseName = '" + athenaCommonFlags.PoolAODOutput()+ "'; COMPRESSION_LEVEL = '1'" ]
## Post-include
Loading