Skip to content
Snippets Groups Projects
Commit 18218f47 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Change default Root compression to LZMA:4

LHCb measured that LZMA:4 is considerably faster than
LZMA:6, with only a small increase in size.
See LBCORE-1116.

See merge request !239
parents b3d9e7ee 3df5c0bc
No related branches found
No related tags found
1 merge request!239Change default Root compression to LZMA:4
Pipeline #
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include "TBranch.h" #include "TBranch.h"
#if ROOT_VERSION_CODE >= ROOT_VERSION(5,33,0) #if ROOT_VERSION_CODE >= ROOT_VERSION(5,33,0)
#include "Compression.h" #include "Compression.h"
static int s_compressionLevel = ROOT::CompressionSettings(ROOT::kLZMA,6); static int s_compressionLevel = ROOT::CompressionSettings(ROOT::kLZMA,4);
#else #else
static int s_compressionLevel = 1; static int s_compressionLevel = 1;
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment