// @(#)root/cont:$Name: $:$Id: THashList.h,v 1.5 2002/08/07 10:58:31 brun Exp $ // Author: Fons Rademakers 10/08/95 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_THashList #define ROOT_THashList ////////////////////////////////////////////////////////////////////////// // // // THashList // // // // THashList implements a hybrid collection class consisting of a // // hash table and a list to store TObject's. The hash table is used for // // quick access and lookup of objects while the list allows the objects // // to be ordered. The hash value is calculated using the value returned // // by the TObject's Hash() function. Each class inheriting from TObject // // can override Hash() as it sees fit. // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TList #include "TList.h" #endif class THashTable; class THashList : public TList { protected: THashTable *fTable; //Hashtable used for quick lookup of objects public: THashList(Int_t capacity=TCollection::kInitHashTableCapacity, Int_t rehash=0); THashList(TObject *parent, Int_t capacity=TCollection::kInitHashTableCapacity, Int_t rehash=0); virtual ~THashList(); Float_t AverageCollisions() const; void Clear(Option_t *option=""); void Delete(Option_t *option=""); TObject *FindObject(const char *name) const; TObject *FindObject(const TObject *obj) const; void AddFirst(TObject *obj); void AddFirst(TObject *obj, Option_t *opt); void AddLast(TObject *obj); void AddLast(TObject *obj, Option_t *opt); void AddAt(TObject *obj, Int_t idx); void AddAfter(TObject *after, TObject *obj); void AddAfter(TObjLink *after, TObject *obj); void AddBefore(TObject *before, TObject *obj); void AddBefore(TObjLink *before, TObject *obj); void RecursiveRemove(TObject *obj); void Rehash(Int_t newCapacity); TObject *Remove(TObject *obj); TObject *Remove(TObjLink *lnk); ClassDef(THashList,0) //Doubly linked list with hashtable for lookup }; #endif