[root] / trunk / core / cont / inc / TExMap.h Repository:
ViewVC logotype

Log of /trunk/core/cont/inc/TExMap.h

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 34618 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jul 27 15:52:34 2010 UTC (4 years, 5 months ago) by rdm
File length: 3679 byte(s)
Diff to previous 29598
From Axel:
make Expand() public.

Revision 29598 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jul 27 15:37:29 2009 UTC (5 years, 5 months ago) by rdm
File length: 3681 byte(s)
Diff to previous 25271
change TExMap hash, key and values from (U)Long_t to (U)Long64_t. This
makes TExMap streamable in a portable way. On 64-bit platforms there is
no difference, but on 32-bit platforms all values will now be 64-bit.
This fixes a big portability issue with THnSparse which uses TExMap internally
where the versions created on a 32-bit platform could not be read on
a 64-bit platform and vice versa.

Revision 25271 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Aug 27 03:29:43 2008 UTC (6 years, 4 months ago) by pcanal
File length: 3617 byte(s)
Diff to previous 22961
From Axel:
Improve the performance of reading TExMap object by a large factor (x50 faster for large array) by
changing the onfile format of the TExMap (around 16% larger).   [The performance of reading old 
files is unchanged)

Revision 22961 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 3 13:32:57 2008 UTC (6 years, 9 months ago) by rdm
File length: 3617 byte(s)
Diff to previous 20882
move the directories:
  base clib cont meta metautils newdelete pcre rint thread unix utils
  winnt zip
under the new core meta directory.

Revision 20882 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:31:26 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/cont/inc/TExMap.h
File length: 3617 byte(s)
Diff to previous 19826
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/cont/inc/TExMap.h
File length: 3617 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/cont/inc/TExMap.h
File length: 3663 byte(s)
Diff to previous 15849
remove :$ from tag line

Revision 15849 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jul 26 13:36:44 2006 UTC (8 years, 6 months ago) by rdm
Original Path: trunk/cont/inc/TExMap.h
File length: 3673 byte(s)
Diff to previous 15134
Instead of providing default implementations for copy ctor's and assignment
operators we better make them private (and not implemented) to avoid people
from accidentally using them. Especially the collections classes and the
TQObject derived classes. In these classes the default implementations would
cause havoc due to multiple deletions of the same objects and other
potential memory corruptions.

Revision 15134 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 23 04:47:42 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/cont/inc/TExMap.h
File length: 3675 byte(s)
Diff to previous 15017
From Federico Carminati:

"I have implemented all copy and equal operators needed to silence all
warnings in AliRoot, as requested. I have implemented shallow copies as
would do the default operators synthetized by the compiler.
Most operators are protected. If users complain, you just have to move
them into the public area, but class derivation is of course supported.
It has been a terrible job, I have modified 278 files, but the changes
are backward compabile, and this goes a long way to permitting user to
use the effc++ flag with root headers."

Revision 15017 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat May 13 11:00:50 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/cont/inc/TExMap.h
File length: 3677 byte(s)
Diff to previous 13764
From Federico:
More headers changed to facilitate the use of the gcc option weffc++

Revision 13764 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Dec 22 19:03:11 2005 UTC (9 years, 1 month ago) by pcanal
Original Path: trunk/cont/inc/TExMap.h
File length: 3505 byte(s)
Diff to previous 11016
Improve run-time performance of TExMap's constructor and Delete.
Add a new method AddAt which allows to pass a slot number where the
object should first try to insert the value.  This improves performance
when using the following pattern:
if ((idx = (ULong_t)fMap->GetValue(hash, key, slot)) != 0) {
   ...
} else {
   fMap->AddAt(slot,hash,key,value);
}

Revision 11016 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Feb 1 14:43:57 2005 UTC (9 years, 11 months ago) by rdm
Original Path: trunk/cont/inc/TExMap.h
File length: 3370 byte(s)
Diff to previous 10986
some cosmetics.

Revision 10986 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jan 26 06:42:24 2005 UTC (9 years, 11 months ago) by brun
Original Path: trunk/cont/inc/TExMap.h
File length: 3405 byte(s)
Diff to previous 6756
From Maarten:
This new implementation results in a 30% performance improvement
in reading complex trees. (e.g with Event). I replaced the separately
allocated (hash,key,value) structs with an array, using the lowest bit
of the hash as a flag for indicating if  a slot is free or not.
(This also means a 25% memory reduction.) The general hashing behaviour
should not be affected as we use the hash value modulo a (large) prime.

Revision 6756 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 23 07:13:09 2003 UTC (11 years, 7 months ago) by brun
Original Path: trunk/cont/inc/TExMap.h
File length: 3245 byte(s)
Diff to previous 2254
Implement the Streamer function to make TExMap persistent.

Revision 2254 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon May 21 11:18:02 2001 UTC (13 years, 8 months ago) by rdm
Original Path: trunk/cont/inc/TExMap.h
File length: 3249 byte(s)
Diff to previous 3
add copy ctor to TExMap and a TExMapIter iterator class.

Revision 3 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: trunk/cont/inc/TExMap.h
File length: 2695 byte(s)
Copied from: branches/rdm/cont/inc/TExMap.h revision 2
Diff to previous 2
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.

Revision 2 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: branches/rdm/cont/inc/TExMap.h
File length: 2695 byte(s)
Initial import of ROOT into CVS

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9