Revision 0c29b6b7d0bd0fc6dcb0e6281e081d3b45ad5f81 authored by Rene Brun on 01 July 2004, 21:27:36 UTC, committed by Rene Brun on 01 July 2004, 21:27:36 UTC
This patch allows for the 2nd arguments of TNtuple::Fill to have a default value.


git-svn-id: http://root.cern.ch/svn/root/trunk@9368 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent cc8edaf
Raw File
README
The compression package "zlib" is part of the zip directory. The original tar 
file can be downloaded from : http://www.zlib.org 

Only the useful code has been extracted from this tar file. It consists of: 

 zip/inc:
   crc32.h deflate.h inffast.h inffixed.h inflate.h
   inftrees.h trees.h zconf.h zlib.h zutil.h

 zip/src:
   adler32.c compress.c crc32.c deflate.c gzio.c infback.c
   inffast.c inflate.c inftrees.c trees.c uncompr.c zutil.c

To put a new zlib version in ROOT, all these files must be replaced.

The zlib version number can be found in zip/inc/zlib.h

zlib is now used in TPDF to compress the "stream" part of PDF files.

The ROOT compress functions R__zip and R__unzip have also been modified
in order to use zlib. Some performance tests (on a P4 2.4GHz) showed that 
the zlib version is 7.6% slower in writing and 13.6% faster in reading.
Because of the poor performances in writing, the zlib versions of R__zip
and R__unzip have not been activated. To activate them it is enough to 
define R__ZLIB in the files zip/src/Inflate.c and zip/inc/Bits.h.
back to top