23 |
|
Double_t lzf = gEnv->GetValue("Root.OptIO.LzoFraction",1.); |
24 |
|
Double_t gzf = gEnv->GetValue("Root.OptIO.GzipFraction",1.); |
25 |
|
Double_t bzf = gEnv->GetValue("Root.OptIO.BzipFraction",1.); |
26 |
< |
if (lzf!=1 || gzf!= 1 || bzf!=1 ) { |
27 |
< |
::Warning("OptIntLoad", "Setting algo fractions to %f %f %f as specified in rootrc", |
28 |
< |
lzf, gzf, bzf); |
29 |
< |
OptInt::SetAlgoFractions(lzf, gzf, bzf); |
26 |
> |
Double_t lzm = gEnv->GetValue("Root.OptIO.LzmaFraction",1.); |
27 |
> |
if (lzf!=1 || gzf!= 1 || bzf!=1 || lzm!=1) { |
28 |
> |
::Warning("OptIntLoad", "Setting algo fractions to %.2f, %.2f, %.2f, %.2f" |
29 |
> |
" as specified in rootrc", lzf, gzf, bzf, lzm); |
30 |
> |
OptInt::SetAlgoFractions(lzf, gzf, bzf, lzm); |
31 |
|
} |
32 |
|
Int_t smalloc = gEnv->GetValue("Root.OptIO.SMalloc",0); |
33 |
|
if (smalloc) { |