[root] / trunk / core / cont / src / THashList.cxx Repository:
ViewVC logotype

Log of /trunk/core/cont/src/THashList.cxx

Parent Directory Parent Directory


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

Revision 27904 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Mar 20 19:44:39 2009 UTC (5 years, 10 months ago) by pcanal
File length: 10960 byte(s)
Diff to previous 22961
From Axel:
Makes TClass::GetMethod and friends a _lot_ faster; it costs about 8 bytes per TClass object (THashList vs TList) and bytes per method (the pointer in THashTable's fCont).

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: 10321 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/src/THashList.cxx
File length: 10321 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/src/THashList.cxx
File length: 10321 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/src/THashList.cxx
File length: 10371 byte(s)
Diff to previous 19764
remove :$ from tag line

Revision 19764 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 6 18:48:17 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/cont/src/THashList.cxx
File length: 10381 byte(s)
Diff to previous 19761
properly implement "slow" mode in Delete().

Revision 19761 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 5 22:48:32 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/cont/src/THashList.cxx
File length: 10011 byte(s)
Diff to previous 19413
in Delete() honour the "slow" option, which requires that the collection must
remain searchable during the delete operation, hence in this case the
hash table cannot be cleared before the delete of the list.

Revision 19413 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 19 17:00:20 2007 UTC (7 years, 6 months ago) by pcanal
Original Path: trunk/cont/src/THashList.cxx
File length: 9569 byte(s)
Diff to previous 10520
Clear the THashTable before deleting the contained object (by walking the list) to effectively disable any look up while we are doing the deletes (because some of the items on table will already have been deleted at the time.

Revision 10520 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Nov 12 21:51:18 2004 UTC (10 years, 2 months ago) by brun
Original Path: trunk/cont/src/THashList.cxx
File length: 9589 byte(s)
Diff to previous 5074
Implement a sugestion from Eddy Offermann: add constness to
the following functions of the collection classes
AddAfter, AddBefore, After, Before

Revision 5074 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Aug 7 10:58:31 2002 UTC (12 years, 5 months ago) by brun
Original Path: trunk/cont/src/THashList.cxx
File length: 9576 byte(s)
Diff to previous 1758
Implement THashList::RecursiveRemove overriding TCollection::RecursiveRemove.
In case of a THashList, one cannot call THashList::Remove that internally
calls THashTable::Remove. THashTable::RemoveSlow must be called instead.

Revision 1758 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Mar 7 11:51:34 2001 UTC (13 years, 10 months ago) by rdm
Original Path: trunk/cont/src/THashList.cxx
File length: 8680 byte(s)
Diff to previous 1205
in Clear() pass option to Delete() in case these lists are designated
owners of their objects. This to allow the passing of special Delete()
options, like "slow".

Revision 1205 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Dec 13 15:13:57 2000 UTC (14 years, 1 month ago) by brun
Original Path: trunk/cont/src/THashList.cxx
File length: 8673 byte(s)
Diff to previous 614
      W A R N I N G   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
     ==================================================================
A very long list of changes in this pre-release of version 3.00.
We have modified the signature of many functions (in particular TObject)
to introduce more constness in the system.
You must change your code if your class derives from TObject and uses
one of the modified functions such as ls, Print, Compare, Hash, etc.
The modified functions in TObject have the following signature:
   virtual TObject    *Clone() const;
   virtual Int_t       Compare(const TObject *obj) const;
   virtual void        Delete(Option_t *option=""); // *MENU*
   virtual void        DrawClass() const; // *MENU*
   virtual void        DrawClone(Option_t *option="") const; // *MENU*
   virtual void        Dump() const; // *MENU*
   virtual TObject    *FindObject(const TObject *obj) const;
   virtual char       *GetObjectInfo(Int_t px, Int_t py) const;
   virtual ULong_t     Hash() const;
   virtual void        Inspect() const; // *MENU*
   virtual Bool_t      IsEqual(const TObject *obj) const;
   virtual void        ls(Option_t *option="") const;
   virtual void        Print(Option_t *option="") const;

A similar operation has been done with classes such as TH1, TVirtualPad,
TTree, etc.

Revision 614 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Sep 8 16:41:26 2000 UTC (14 years, 4 months ago) by rdm
Original Path: trunk/cont/src/THashList.cxx
File length: 8667 byte(s)
Diff to previous 612
re-introduce the ctor with the parent argument only for backward
compatibility reasons. The parent argument is dummy.

Revision 612 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Sep 8 16:11:03 2000 UTC (14 years, 4 months ago) by rdm
Original Path: trunk/cont/src/THashList.cxx
File length: 8421 byte(s)
Diff to previous 3
introduced the concept of ownership for all collections. By calling
TCollection::SetOwner() a collection becomes the owner of its elements.
In those cases the dtor and Clear() method will delete the items and not
just free the container space. Also all collections now make their
TObject part persistent (so the TObject bits are saved). Version numbers
were properly increased.

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/src/THashList.cxx
File length: 9191 byte(s)
Copied from: branches/rdm/cont/src/THashList.cxx 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/src/THashList.cxx
File length: 9191 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