ROOT  6.06/09
Reference Guide
Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | Friends | List of all members
TList Class Reference

A doubly linked list.

All classes inheriting from TObject can be inserted in a TList. Before being inserted into the list the object pointer is wrapped in a TObjLink object which contains, besides the object pointer also a previous and next pointer.

There are basically four ways to iterate over a TList (in order of preference, if not forced by other constraints):

  1. Using the R__FOR_EACH macro:
    GetListOfPrimitives()->R__FOR_EACH(TObject,Paint)(option);
  2. Using the TList iterator TListIter (via the wrapper class TIter):
    TIter next(GetListOfPrimitives());
    while ((TObject *obj = next()))
    obj->Draw(next.GetOption());
  3. Using the TList iterator TListIter and std::for_each algorithm:
    // A function object, which will be applied to each element
    // of the given range.
    struct STestFunctor {
    bool operator()(TObject *aObj) {
    ...
    return true;
    }
    }
    ...
    ...
    TIter iter(mylist);
    for_each( iter.Begin(), TIter::End(), STestFunctor() );
  4. Using the TObjLink list entries (that wrap the TObject*):
    TObjLink *lnk = GetListOfPrimitives()->FirstLink();
    while (lnk) {
    lnk->GetObject()->Draw(lnk->GetOption());
    lnk = lnk->Next();
    }
  5. Using the TList's After() and Before() member functions:
    TFree *idcur = this;
    while (idcur) {
    ...
    ...
    idcur = (TFree*)GetListOfFree()->After(idcur);
    }
    Methods 2, 3 and 4 can also easily iterate backwards using either a backward TIter (using argument kIterBackward) or by using LastLink() and lnk->Prev() or by using the Before() member.

Definition at line 47 of file TList.h.

Public Types

typedef TListIter Iterator_t
 
- Public Types inherited from TCollection
enum  { kInitCapacity = 16, kInitHashTableCapacity = 17 }
 
- Public Types inherited from TObject
enum  EStatusBits {
  kCanDelete = BIT(0), kMustCleanup = BIT(3), kObjInCanvas = BIT(3), kIsReferenced = BIT(4),
  kHasUUID = BIT(5), kCannotPick = BIT(6), kNoContextMenu = BIT(8), kInvalidObject = BIT(13)
}
 
enum  { kIsOnHeap = 0x01000000, kNotDeleted = 0x02000000, kZombie = 0x04000000, kBitMask = 0x00ffffff }
 
enum  { kSingleKey = BIT(0), kOverwrite = BIT(1), kWriteDelete = BIT(2) }
 

Public Member Functions

 TList ()
 
 TList (TObject *)
 
virtual ~TList ()
 
virtual void Clear (Option_t *option="")
 Remove all objects from the list. More...
 
virtual void Delete (Option_t *option="")
 Remove all objects from the list AND delete all heap based objects. More...
 
virtual TObjectFindObject (const char *name) const
 Find an object in this list using its name. More...
 
virtual TObjectFindObject (const TObject *obj) const
 Find an object in this list using the object's IsEqual() member function. More...
 
virtual TIteratorMakeIterator (Bool_t dir=kIterForward) const
 Return a list iterator. More...
 
virtual void Add (TObject *obj)
 
virtual void Add (TObject *obj, Option_t *opt)
 
virtual void AddFirst (TObject *obj)
 Add object at the beginning of the list. More...
 
virtual void AddFirst (TObject *obj, Option_t *opt)
 Add object at the beginning of the list and also store option. More...
 
virtual void AddLast (TObject *obj)
 Add object at the end of the list. More...
 
virtual void AddLast (TObject *obj, Option_t *opt)
 Add object at the end of the list and also store option. More...
 
virtual void AddAt (TObject *obj, Int_t idx)
 Insert object at position idx in the list. More...
 
virtual void AddAfter (const TObject *after, TObject *obj)
 Insert object after object after in the list. More...
 
virtual void AddAfter (TObjLink *after, TObject *obj)
 Insert object after the specified ObjLink object. More...
 
virtual void AddBefore (const TObject *before, TObject *obj)
 Insert object before object before in the list. More...
 
virtual void AddBefore (TObjLink *before, TObject *obj)
 Insert object before the specified ObjLink object. More...
 
virtual TObjectRemove (TObject *obj)
 Remove object from the list. More...
 
virtual TObjectRemove (TObjLink *lnk)
 Remove object link (and therefore the object it contains) from the list. More...
 
virtual void RemoveLast ()
 Remove the last object of the list. More...
 
virtual void RecursiveRemove (TObject *obj)
 Remove object from this collection and recursively remove the object from all other objects (and collections). More...
 
virtual TObjectAt (Int_t idx) const
 Returns the object at position idx. Returns 0 if idx is out of range. More...
 
virtual TObjectAfter (const TObject *obj) const
 Returns the object after object obj. More...
 
virtual TObjectBefore (const TObject *obj) const
 Returns the object before object obj. More...
 
virtual TObjectFirst () const
 Return the first object in the list. Returns 0 when list is empty. More...
 
virtual TObjLinkFirstLink () const
 
virtual TObject ** GetObjectRef (const TObject *obj) const
 Return address of pointer to obj. More...
 
virtual TObjectLast () const
 Return the last object in the list. Returns 0 when list is empty. More...
 
virtual TObjLinkLastLink () const
 
virtual void Sort (Bool_t order=kSortAscending)
 Sort linked list. More...
 
Bool_t IsAscending ()
 
- Public Member Functions inherited from TSeqCollection
virtual ~TSeqCollection ()
 
virtual void RemoveFirst ()
 
virtual TObjectRemoveAt (Int_t idx)
 
virtual void RemoveAfter (TObject *after)
 
virtual void RemoveBefore (TObject *before)
 
Int_t LastIndex () const
 
virtual Int_t GetLast () const
 Returns index of last object in collection. More...
 
virtual Int_t IndexOf (const TObject *obj) const
 
virtual Bool_t IsSorted () const
 
void UnSort ()
 
Long64_t Merge (TCollection *list)
 Merge this collection with all collections coming in the input list. More...
 
- Public Member Functions inherited from TCollection
virtual ~TCollection ()
 
void AddVector (TObject *obj1,...)
 Add all arguments to the collection. More...
 
virtual void AddAll (const TCollection *col)
 
Bool_t AssertClass (TClass *cl) const
 Make sure all objects in this collection inherit from class cl. More...
 
void Browse (TBrowser *b)
 Browse this collection (called by TBrowser). More...
 
Int_t Capacity () const
 
virtual TObjectClone (const char *newname="") const
 Make a clone of an collection using the Streamer facility. More...
 
Int_t Compare (const TObject *obj) const
 Compare two TCollection objects. More...
 
Bool_t Contains (const char *name) const
 
Bool_t Contains (const TObject *obj) const
 
virtual void Draw (Option_t *option="")
 Draw all objects in this collection. More...
 
virtual void Dump () const
 Dump all objects in this collection. More...
 
TObjectoperator() (const char *name) const
 Find an object in this collection by name. More...
 
virtual Int_t GetEntries () const
 
virtual const char * GetName () const
 Return name of this collection. More...
 
virtual Int_t GetSize () const
 
virtual Int_t GrowBy (Int_t delta) const
 Increase the collection's capacity by delta slots. More...
 
ULong_t Hash () const
 Return hash value for this object. More...
 
Bool_t IsArgNull (const char *where, const TObject *obj) const
 Returns true if object is a null pointer. More...
 
virtual Bool_t IsEmpty () const
 
virtual Bool_t IsFolder () const
 Returns kTRUE in case object contains browsable objects (like containers or lists of other objects). More...
 
Bool_t IsOwner () const
 
Bool_t IsSortable () const
 
virtual void ls (Option_t *option="") const
 List (ls) all objects in this collection. More...
 
virtual TIteratorMakeReverseIterator () const
 
virtual void Paint (Option_t *option="")
 Paint all objects in this collection. More...
 
virtual void Print (Option_t *option="") const
 Default print for collections, calls Print(option, 1). More...
 
virtual void Print (Option_t *option, Int_t recurse) const
 Print the collection header and its elements. More...
 
virtual void Print (Option_t *option, const char *wildcard, Int_t recurse=1) const
 Print the collection header and its elements that match the wildcard. More...
 
virtual void Print (Option_t *option, TPRegexp &regexp, Int_t recurse=1) const
 Print the collection header and its elements that match the regexp. More...
 
virtual void RemoveAll (TCollection *col)
 Remove all objects in collection col from this collection. More...
 
void RemoveAll ()
 
void SetCurrentCollection ()
 Set this collection to be the globally accesible collection. More...
 
void SetName (const char *name)
 
virtual void SetOwner (Bool_t enable=kTRUE)
 Set whether this collection is the owner (enable==true) of its content. More...
 
virtual Int_t Write (const char *name=0, Int_t option=0, Int_t bufsize=0)
 Write all objects in this collection. More...
 
virtual Int_t Write (const char *name=0, Int_t option=0, Int_t bufsize=0) const
 Write all objects in this collection. More...
 
TIter begin () const
 
TIter end () const
 
- Public Member Functions inherited from TObject
 TObject ()
 
 TObject (const TObject &object)
 TObject copy ctor. More...
 
TObjectoperator= (const TObject &rhs)
 TObject assignment operator. More...
 
virtual ~TObject ()
 TObject destructor. More...
 
virtual void AppendPad (Option_t *option="")
 Append graphics object to current pad. More...
 
virtual const char * ClassName () const
 Returns name of class to which the object belongs. More...
 
virtual void Copy (TObject &object) const
 Copy this to obj. More...
 
virtual Int_t DistancetoPrimitive (Int_t px, Int_t py)
 Computes distance from point (px,py) to the object. More...
 
virtual void DrawClass () const
 Draw class inheritance tree of the class to which this object belongs. More...
 
virtual TObjectDrawClone (Option_t *option="") const
 Draw a clone of this object in the current pad. More...
 
virtual void Execute (const char *method, const char *params, Int_t *error=0)
 Execute method on this object with the given parameter string, e.g. More...
 
virtual void Execute (TMethod *method, TObjArray *params, Int_t *error=0)
 Execute method on this object with parameters stored in the TObjArray. More...
 
virtual void ExecuteEvent (Int_t event, Int_t px, Int_t py)
 Execute action corresponding to an event at (px,py). More...
 
virtual Option_tGetDrawOption () const
 Get option used by the graphics system to draw this object. More...
 
virtual UInt_t GetUniqueID () const
 Return the unique object id. More...
 
virtual const char * GetIconName () const
 Returns mime type name of object. More...
 
virtual Option_tGetOption () const
 
virtual char * GetObjectInfo (Int_t px, Int_t py) const
 Returns string containing info about the object at position (px,py). More...
 
virtual const char * GetTitle () const
 Returns title of object. More...
 
virtual Bool_t HandleTimer (TTimer *timer)
 Execute action in response of a timer timing out. More...
 
virtual Bool_t InheritsFrom (const char *classname) const
 Returns kTRUE if object inherits from class "classname". More...
 
virtual Bool_t InheritsFrom (const TClass *cl) const
 Returns kTRUE if object inherits from TClass cl. More...
 
virtual void Inspect () const
 Dump contents of this object in a graphics canvas. More...
 
virtual Bool_t IsEqual (const TObject *obj) const
 Default equal comparison (objects are equal if they have the same address in memory). More...
 
Bool_t IsOnHeap () const
 
Bool_t IsZombie () const
 
virtual Bool_t Notify ()
 This method must be overridden to handle object notification. More...
 
virtual void Pop ()
 Pop on object drawn in a pad to the top of the display list. More...
 
virtual Int_t Read (const char *name)
 Read contents of object with specified name from the current directory. More...
 
virtual void SaveAs (const char *filename="", Option_t *option="") const
 Save this object in the file specified by filename. More...
 
virtual void SavePrimitive (std::ostream &out, Option_t *option="")
 Save a primitive as a C++ statement(s) on output stream "out". More...
 
virtual void SetDrawOption (Option_t *option="")
 Set drawing option for object. More...
 
virtual void SetUniqueID (UInt_t uid)
 Set the unique object id. More...
 
virtual void UseCurrentStyle ()
 Set current style settings in this object This function is called when either TCanvas::UseCurrentStyle or TROOT::ForceStyle have been invoked. More...
 
voidoperator new (size_t sz)
 
voidoperator new[] (size_t sz)
 
voidoperator new (size_t sz, void *vp)
 
voidoperator new[] (size_t sz, void *vp)
 
void operator delete (void *ptr)
 Operator delete. More...
 
void operator delete[] (void *ptr)
 Operator delete []. More...
 
void SetBit (UInt_t f, Bool_t set)
 Set or unset the user status bits as specified in f. More...
 
void SetBit (UInt_t f)
 
void ResetBit (UInt_t f)
 
Bool_t TestBit (UInt_t f) const
 
Int_t TestBits (UInt_t f) const
 
void InvertBit (UInt_t f)
 
virtual void Info (const char *method, const char *msgfmt,...) const
 Issue info message. More...
 
virtual void Warning (const char *method, const char *msgfmt,...) const
 Issue warning message. More...
 
virtual void Error (const char *method, const char *msgfmt,...) const
 Issue error message. More...
 
virtual void SysError (const char *method, const char *msgfmt,...) const
 Issue system error message. More...
 
virtual void Fatal (const char *method, const char *msgfmt,...) const
 Issue fatal error message. More...
 
void AbstractMethod (const char *method) const
 Use this method to implement an "abstract" method that you don't want to leave purely abstract. More...
 
void MayNotUse (const char *method) const
 Use this method to signal that a method (defined in a base class) may not be called in a derived class (in principle against good design since a child class should not provide less functionality than its parent, however, sometimes it is necessary). More...
 
void Obsolete (const char *method, const char *asOfVers, const char *removedFromVers) const
 Use this method to declare a method obsolete. More...
 

Protected Member Functions

TObjLinkLinkAt (Int_t idx) const
 sorting order (when calling Sort() or for TSortedList) More...
 
TObjLinkFindLink (const TObject *obj, Int_t &idx) const
 Returns the TObjLink object that contains object obj. More...
 
TObjLink ** DoSort (TObjLink **head, Int_t n)
 Sort linked list. More...
 
Bool_t LnkCompare (TObjLink *l1, TObjLink *l2)
 Compares the objects stored in the TObjLink objects. More...
 
virtual TObjLinkNewLink (TObject *obj, TObjLink *prev=NULL)
 Return a new TObjLink. More...
 
virtual TObjLinkNewOptLink (TObject *obj, Option_t *opt, TObjLink *prev=NULL)
 Return a new TObjOptLink (a TObjLink that also stores the option). More...
 
virtual void DeleteLink (TObjLink *lnk)
 Delete a TObjLink object. More...
 
- Protected Member Functions inherited from TSeqCollection
 TSeqCollection ()
 
virtual void Changed ()
 
- Protected Member Functions inherited from TCollection
 TCollection ()
 
virtual void PrintCollectionHeader (Option_t *option) const
 Print the collection header. More...
 
virtual const char * GetCollectionEntryName (TObject *entry) const
 For given collection entry return the string that is used to identify the object and, potentially, perform wildcard/regexp filtering on. More...
 
virtual void PrintCollectionEntry (TObject *entry, Option_t *option, Int_t recurse) const
 Print the collection entry. More...
 
- Protected Member Functions inherited from TObject
void MakeZombie ()
 
virtual void DoError (int level, const char *location, const char *fmt, va_list va) const
 Interface to ErrorHandler (protected). More...
 

Protected Attributes

TObjLinkfFirst
 
TObjLinkfLast
 pointer to first entry in linked list More...
 
TObjLinkfCache
 pointer to last entry in linked list More...
 
Bool_t fAscending
 cache to speedup sequential calling of Before() and After() functions More...
 
- Protected Attributes inherited from TSeqCollection
Bool_t fSorted
 
- Protected Attributes inherited from TCollection
TString fName
 
Int_t fSize
 

Private Member Functions

 TList (const TList &)
 
TListoperator= (const TList &)
 

Friends

class TListIter
 

Additional Inherited Members

- Static Public Member Functions inherited from TSeqCollection
static Int_t ObjCompare (TObject *a, TObject *b)
 Compare to objects in the collection. Use member Compare() of object a. More...
 
static void QSort (TObject **a, Int_t first, Int_t last)
 Sort array of TObject pointers using a quicksort algorithm. More...
 
static void QSort (TObject **a, TObject **b, Int_t first, Int_t last)
 
static void QSort (TObject **a, Int_t nBs, TObject ***b, Int_t first, Int_t last)
 Sort array a of TObject pointers using a quicksort algorithm. More...
 
- Static Public Member Functions inherited from TCollection
static TCollectionGetCurrentCollection ()
 Return the globally accessible collection. More...
 
static void StartGarbageCollection ()
 Set up for garbage collection. More...
 
static void GarbageCollect (TObject *obj)
 Add to the list of things to be cleaned up. More...
 
static void EmptyGarbageCollection ()
 Do the garbage collection. More...
 
- Static Public Member Functions inherited from TObject
static Long_t GetDtorOnly ()
 Return destructor only flag. More...
 
static void SetDtorOnly (void *obj)
 Set destructor only flag. More...
 
static Bool_t GetObjectStat ()
 Get status of object stat flag. More...
 
static void SetObjectStat (Bool_t stat)
 Turn on/off tracking of objects in the TObjectTable. More...
 
- Protected Types inherited from TCollection
enum  { kIsOwner = BIT(14) }
 

#include <TList.h>

+ Inheritance diagram for TList:
+ Collaboration diagram for TList:

Member Typedef Documentation

Definition at line 70 of file TList.h.

Constructor & Destructor Documentation

TList::TList ( const TList )
private
TList::TList ( )
inline
TList::TList ( TObject )
inline

Definition at line 73 of file TList.h.

virtual TList::~TList ( )
virtual

Member Function Documentation

virtual void TList::Add ( TObject obj)
inlinevirtual

Reimplemented from TSeqCollection.

Reimplemented in TQUndoManager, TQCommand, and TSortedList.

Definition at line 81 of file TList.h.

Referenced by TMonitor::Activate(), TMonitor::ActivateAll(), TGedEditor::ActivateEditor(), TSortedList::Add(), TVolumeView::Add(), TProofLog::Add(), TGraphTime::Add(), TRootDialog::Add(), TMultiGraph::Add(), TTask::Add(), THashTable::Add(), THStack::Add(), TStatus::Add(), RooStats::HypoTestInverterResult::Add(), TMonitor::Add(), TEntryList::Add(), TFileCollection::Add(), TGlobalMappedFunction::Add(), TVolume::Add(), TChain::Add(), TAlienCollection::Add(), TH1::Add(), TDSet::Add(), TDSetElement::AddAssocObj(), TStyleManager::AddAxisXLine(), TStyleManager::AddAxisYLine(), TStyleManager::AddAxisZLine(), AddBasesClasses(), THashTable::AddBefore(), TH2Poly::AddBin(), TH2Poly::AddBinToPartition(), TPaveText::AddBox(), TTreeCache::AddBranch(), TControlBar::AddButton(), TGToolBar::AddButton(), TStyleManager::AddCanvasDate(), TProof::AddChain(), RooStats::HLFactory::AddChannel(), TStyleManager::AddCheckButton(), ROOT::Internal::TTreeProxyGenerator::AddClass(), TModuleDocInfo::AddClass(), TDocParser::AddClassDataMembersRecursively(), TDocParser::AddClassMethodsRecursively(), TTree::AddClone(), TStyleManager::AddColorEntry(), RooTreeDataStore::addColumns(), RooVectorDataStore::addColumns(), TEnum::AddConstant(), TControlBar::AddControlBar(), RooStats::NumberCountingPdfFactory::AddData(), RooStats::NumberCountingPdfFactory::AddDataWithSideband(), ROOT::Internal::TTreeProxyGenerator::AddDescriptor(), ROOT::Internal::TBranchProxyClassDescriptor::AddDescriptor(), TGraphStruct::AddEdge(), TStyleManager::AddEdition(), TEveGeoShapeExtract::AddElement(), TLegend::AddEntry(), TGPopupMenu::AddEntry(), TGLBContainer::AddEntry(), TGLBContainer::AddEntrySort(), TProof::AddEnvVar(), TPad::AddExec(), TGedFrame::AddExtraTab(), TAlienCollection::AddFast(), TProof::AddFeedback(), TFileMerger::AddFile(), TStyleManager::AddFillStyleEntry(), RooMCStudy::addFitResult(), TSecContext::AddForCleanup(), ROOT::Internal::TTreeProxyGenerator::AddForward(), TGFileContainer::AddFrame(), TGCompositeFrame::AddFrame(), TGMenuBar::AddFrameBefore(), TGPack::AddFrameInternal(), ROOT::Internal::TTreeProxyGenerator::AddFriend(), TChain::AddFriend(), TDSetElement::AddFriend(), TTree::AddFriend(), TFileCollection::AddFromFile(), TStyleManager::AddGeneralFill(), TPluginManager::AddHandler(), ROOT::Internal::TTreeGeneratorBase::AddHeader(), TStyleManager::AddHistosGraphsBorder(), TGClient::AddIdleHandler(), TStatus::AddInfo(), TQueryResult::AddInput(), TProofPlayer::AddInput(), TProof::AddInputData(), TGShutter::AddItem(), TGPopupMenu::AddLabel(), TMacro::AddLine(), TPaveText::AddLine(), TStyleManager::AddLineWidthEntry(), THttpServer::AddLocation(), TStyleManager::AddMarkerStyleEntry(), TGeoBuilder::AddMaterial(), TStyleManager::AddMenus(), TFileCollection::AddMetaData(), TFileInfo::AddMetaData(), ROOT::Internal::TTreeProxyGenerator::AddMissingClassAsEnum(), RooStats::NumberCountingPdfFactory::AddModel(), TStructViewer::AddNode(), TGraphStruct::AddNode(), TStyleManager::AddNumberEntry(), RooPlot::addObject(), RooStats::SamplingDistPlot::addObject(), RooStats::SamplingDistPlot::addOtherObject(), TDatabasePDG::AddParticle(), RooSimultaneous::addPdf(), TReaperTimer::AddPid(), RooPlot::addPlotable(), TGPopupMenu::AddPopup(), TGMenuBar::AddPopup(), ROOT::Internal::TTreeProxyGenerator::AddPragma(), TStyleManager::AddPsPdfColorModel(), TStyleManager::AddPsPdfLineScale(), TProofPlayer::AddQueryResult(), TParallelCoordVar::AddRange(), ROOT::Internal::TTreeReaderGenerator::AddReader(), TGImageMap::AddRegion(), TParallelCoord::AddSelection(), TGPopupMenu::AddSeparator(), TestShutter::AddShutterItem(), TStyleManager::AddStatsFit(), TStyleManager::AddStatsStats(), TSpider::AddSuperposed(), TPaveText::AddText(), TStyleManager::AddTextButton(), TStyleManager::AddTextEntry(), TGMenuBar::AddTitle(), TStyleManager::AddTitle(), TStyleManager::AddTitleBorderSize(), TRootBrowserLite::AddToHistory(), TStyleManager::AddToolbar(), TStyleManager::AddTopLevelInterface(), RooCategory::addToRange(), TGClient::AddUnknownWindowHandler(), TFileInfo::AddUrl(), TProcessUUID::AddUUID(), TParallelCoord::AddVariable(), TGeoManager::AddVolume(), TMergerInfo::AddWorker(), TPacketizerUnit::AddWorkers(), TProof::AddWorkers(), TDirectory::Append(), TDirectoryFile::AppendKey(), TTreeViewer::AppendTree(), TQueryResultManager::ApplyMaxQueries(), TProof::AssertDataSet(), TPacketizerUnit::AssignWork(), TFile::AsyncOpen(), TProofOutputList::AttachList(), TAuthenticate::AuthExists(), TProofDrawProfile::Begin(), TProofDrawProfile2D::Begin(), TProofDrawHist::Begin2D(), TProofDrawHist::Begin3D(), TGMainFrame::BindKey(), TBonjourBrowser::BonjourBrowseReply(), TBranchSTL::Browse(), TRemoteObject::Browse(), TMapFile::Browse(), TBranchElement::Browse(), TDataSetManagerFile::BrowseDataSets(), TApplicationServer::BrowseFile(), TProofNodes::Build(), TClass::BuildEmulatedRealData(), TProofBenchRunCPU::BuildHistos(), TProofBenchRunDataRead::BuildHistos(), TTreeViewer::BuildInterface(), RooSimPdfBuilder::buildPdf(), TGToolBar::ChangeIcon(), TAlienPackage::CheckDependencies(), TApplicationRemote::CheckFile(), TStructViewerGUI::CheckMaxObjects(), TCondor::Claim(), ClassImp(), TProof::ClearData(), TXMLFile::Close(), TFile::Close(), TSQLFile::Close(), TQObject::CollectClassSignalLists(), TStructNodeEditor::ColorSelectedSlot(), TAlien::Command(), TTabCom::Complete(), TQObject::Connect(), TQObject::ConnectToClass(), TEveGeoPolyShape::Construct(), THbookFile::Convert1D(), TEntryListArray::ConvertToTEntryListArray(), TAxis::Copy(), TProofLite::CopyMacroToCache(), TTreePlayer::CopyTree(), TRootControlBar::Create(), TProofMgr::Create(), TRootBrowserLite::CreateBrowser(), THttpServer::CreateEngine(), TCling::CreateListOfBaseClasses(), THtml::CreateListOfClasses(), TGuiBldDragManager::CreateListOfDialogs(), TCling::CreateListOfMethodArgs(), TRootSniffer::CreateMemFile(), TRootContextMenu::CreateMenu(), TProof::CreateMerger(), TDocOutput::CreateModuleIndex(), TPacketizerMulti::CreatePacketizer(), TGImageMap::CreatePopup(), THostAuth::CreateSecContext(), TProofMgrLite::CreateSession(), TProofMgr::CreateSession(), TStyleManager::CreateTabAxis(), TStyleManager::CreateTabGeneral(), TStyleManager::CreateTabHistosFrames(), TStyleManager::CreateTabStats(), TStyleManager::CreateTabTitle(), TMonitor::DeActivate(), TMonitor::DeActivateAll(), TMVA::Configurable::DeclareOptionRef(), RooCmdConfig::defineDependency(), RooCmdConfig::defineDouble(), RooCmdConfig::defineInt(), RooCmdConfig::defineMutex(), RooCmdConfig::defineObject(), RooCmdConfig::defineRequiredArgs(), RooCmdConfig::defineSet(), RooCmdConfig::defineString(), TProofDrawProfile::DefVar(), TProofDrawProfile2D::DefVar(), TProofDrawHist::DefVar1D(), TProofDrawHist::DefVar2D(), TProofDrawHist::DefVar3D(), TMVA::deviations(), TStructViewerGUI::Divide(), do_anadist_ds(), do_anadist_getkey(), TStructViewerGUI::DoubleClickedSlot(), TPad::Draw(), TObject::DrawClone(), TProofBench::DrawCPU(), TProofBench::DrawDataSet(), TProofBench::DrawEfficiency(), TPolyLine3D::DrawOutlineCube(), TSpider::DrawPoly(), TProofPlayerRemote::DrawSelect(), TSpider::DrawSlices(), TEveGeoShape::DumpShapeTree(), TEveGeoNode::DumpShapeTree(), TTreeViewer::EmptyBrackets(), TProof::EnablePackage(), TRootBrowser::ExecPlugin(), RooSimWSTool::executeBuild(), THttpServer::ExecuteHttp(), RooStudyManager::expandWildCardSpec(), RooStudyPackage::exportData(), TDSet::ExportFileList(), TTVLVContainer::ExpressionList(), TProofPerfAnalysis::FileDist(), TProofPerfAnalysis::FileRatePlot(), TAlienDirectory::Fill(), TProofPerfAnalysis::FillFileInfo(), RooFitResult::fillLegacyCorrMatrix(), TDataSetManagerFile::FillLsDataSet(), TProofPerfAnalysis::FillWrkInfo(), TProofPlayerLite::Finalize(), TProofPlayerRemote::Finalize(), TAxis::FindBin(), TRootContextMenu::FindHierarchy(), TProofLite::FindUniqueSlaves(), TProof::FindUniqueSlaves(), RooMCStudy::fit(), TEfficiency::Fit(), RooMCStudy::fitSample(), TMessage::ForceWriteInfo(), TGWin32ProxyBase::ForwardCallBack(), TMakeProject::GenerateMissingStreamerInfo(), THbookFile::Get(), TMonitor::GetActive(), TXMLNode::GetAttributes(), TMethodBrowsable::GetBrowsableMethodsForClass(), TMethodBrowsable::GetBrowsables(), TNonSplitBrowsable::GetBrowsables(), TCollectionPropertyBrowsable::GetBrowsables(), TCollectionMethodBrowsable::GetBrowsables(), TGListTree::GetChecked(), TGListTree::GetCheckedChildren(), TXNetSystem::GetClientAdmin(), TGraph2DPainter::GetContourList(), TProofServ::GetDataSetNodeMap(), TGedEditor::GetEditorTabInfo(), TAlienResult::GetFileInfoList(), TGLiteResult::GetFileInfoList(), TGFileContainer::GetFilePictures(), TFileCollection::GetFilesPerServer(), TDataSetManagerAliEn::GetFindCommandsFromUri(), TGuiBldDragManager::GetFramesInside(), TAlienCollection::GetGridResult(), TGraph2D::GetHistogram(), TUrl::GetHostFQDN(), TProof::GetInputData(), TMVA::GetKeyList(), TListOfFunctions::GetListForObjectNonConst(), TListOfFunctionTemplates::GetListForObjectNonConst(), TMonitor::GetListOfActives(), TMonitor::GetListOfDeActives(), TSystemDirectory::GetListOfFiles(), TFitEditor::GetListOfFittingFunctions(), TROOT::GetListOfGlobals(), TMVA::TMVAGlob::GetListOfJobs(), TMVA::TMVAGlob::GetListOfKeys(), TProofMgr::GetListOfManagers(), TMVA::TMVAGlob::GetListOfMethods(), RooStats::ProfileInspector::GetListOfProfilePlots(), TProofLite::GetListOfQueries(), TProof::GetListOfSlaveInfos(), TMVA::TMVAGlob::GetListOfTitles(), TClass::GetMenuList(), TEventIterUnit::GetNextEvent(), TEventIterObj::GetNextEvent(), TEventIterTree::GetNextEvent(), TPacketizer::GetNextPacket(), TPacketizerAdaptive::GetNextPacket(), TEventIterUnit::GetNextPacket(), TEventIterObj::GetNextPacket(), TEventIterTree::GetNextPacket(), TPacketizer::GetNextUnAlloc(), TPacketizerAdaptive::GetNextUnAlloc(), TSQLObjectDataPool::GetObjectRow(), TLDAPEntry::GetReferrals(), TGLVContainer::GetSelectedEntries(), TGLBContainer::GetSelectedEntries(), TGLVContainer::GetSelectedItems(), TFileStager::GetStaged(), TXMLFile::GetStreamerInfoList(), TSQLiteServer::GetTableInfo(), TPgSQLServer::GetTableInfo(), TOracleServer::GetTableInfo(), TODBCServer::GetTableInfo(), TMySQLServer::GetTableInfo(), TSQLServer::GetTableInfo(), TOracleServer::GetTablesList(), TODBCServer::GetTablesList(), TMySQLServer::GetTablesList(), TSQLServer::GetTablesList(), TCondor::GetVirtualMachines(), TWinNTSystem::GetVolumes(), TXProofServ::GetWorkers(), TProofServ::GetWorkers(), TProofPerfAnalysis::GetWrkFileList(), TProof::GoMoreParallel(), TProof::GoParallel(), TProofServ::HandleCache(), TGuiBldDragManager::HandleCopy(), TProofPlayerRemote::HandleHistogram(), TProof::HandleInputMessage(), TProofServ::HandleProcess(), TProofServ::HandleQueryList(), TProofServ::HandleSocketInput(), TProof::HandleSubmerger(), TProofPlayerLite::HandleTimer(), TProofPlayerRemote::HandleTimer(), TProofPlayerSlave::HandleTimer(), TTabCom::Hook(), RooStats::HypoTestInverterResult::HypoTestInverterResult(), TProofPlayerRemote::Incorporate(), TMinuit2TraceObject::Init(), TOutputListSelectorDataMap::Init(), TDataMember::Init(), TProofLite::Init(), TGTable::Init(), Memstat::TMemStatMng::Init(), TProof::Init(), TProofPlayerRemote::InitPacketizer(), TLegend::InsertEntry(), TGLBContainer::InsertEntry(), TGedEditor::InsertGedFrame(), TASPaletteEditor::InsertNewPalette(), TInspectCanvas::Inspector(), TAlienPackage::InstallAllPackages(), TProof::IsDataReady(), TProfile::LabelsOption(), TProfile2D::LabelsOption(), TH1::LabelsOption(), TProofPerfAnalysis::LatencyPlot(), TODBCServer::ListData(), TAlien::ListPackages(), TProofLite::Load(), TEventIterTree::Load(), TProof::Load(), TProof::LoadPackageOnClient(), TNetXNGSystem::Locate(), TXNetSystem::Locate(), TProofOutputList::ls(), THtml::MakeAll(), TTreePlayer::MakeClass(), TClass::MakeCustomMenuList(), TProofBench::MakeDataSet(), TPrincipal::MakeHistograms(), TMultiDimFit::MakeHistograms(), TRootSnifferScanRec::MakeItemName(), TFile::MakeProject(), TClassTree::Mark(), TPacketizerAdaptive::MarkBad(), TProof::MarkBad(), RooAbsReal::matchArgs(), THStack::Merge(), TProofPlayerRemote::MergeFeedback(), TAuthenticate::MergeHostAuthList(), TProofPlayerRemote::MergeOutput(), TProofPlayerRemote::MergeOutputFiles(), TFileMerger::MergeRecursive(), TProof::ModifyWorkerLists(), TDataSetManager::MonitorUsedSpace(), TGeoTabManager::MoveFrame(), TMVA::MultiClassGetKeyList(), TSessionServerFrame::OnBtnAddClicked(), TSessionFrame::OnBtnAddClicked(), TSessionFrame::OnBtnGetQueriesClicked(), TNewQueryDlg::OnBtnSaveClicked(), TApplication::Open(), TAlienCollection::OpenAlienCollection(), TFileMerger::OpenExcessFiles(), TAlienCollection::OpenQuery(), TMacro::operator=(), TTask::operator=(), RooStats::HypoTestInverterResult::operator=(), TPerfStats::PacketEvent(), THistPainter::PaintContour(), THistPainter::PaintStat(), THistPainter::PaintStat2(), THistPainter::PaintStat3(), TGraphPainter::PaintStats(), TDataSetManager::ParseDataSetSrvMaps(), TMVA::Tools::ParseFormatLine(), TAlienCollection::ParseXML(), TMVA::Plot(), TMVA::plot_efficiencies(), TGMsgBox::PMsgBox(), TProofLite::PollForNewWorkers(), TProof::PollForNewWorkers(), TRootDialog::Popup(), TXSockPipe::Post(), TTreePlayer::Principal(), TProofOutputList::Print(), TProof::Print(), TProofPlayerLite::Process(), RooCmdConfig::process(), TSelEventGen::Process(), TProofLite::Process(), TProofPlayer::Process(), TProofPlayerRemote::Process(), TProof::Process(), RooStudyManager::processBatchOutput(), TGFileDialog::ProcessMessage(), TProofServ::ProcessNext(), TRootSniffer::ProduceExe(), TOracleResult::ProducePool(), TAuthenticate::ProofAuthSetup(), TAlien::Ps(), TTreePlayer::Query(), TXProofMgr::QuerySessions(), TProofMgr::QuerySessions(), TProofServ::QueueQuery(), TProofPerfAnalysis::RatePlot(), TProofResourcesStatic::ReadConfigFile(), TSessionViewer::ReadConfiguration(), TMacro::ReadFile(), TFile::ReadFree(), TDirectoryFile::ReadKeys(), TAuthenticate::ReadRootAuthrc(), TSQLFile::ReadSQLClassInfos(), TPacketizerAdaptive::ReassignPacket(), RooStats::HypoTestInverter::RebuildDistributions(), RecvHostAuth(), TQUndoManager::Redo(), TStructViewerGUI::RedoButtonSlot(), PoolUtils::ReduceObjects(), TMVA::RegGuiGetKeyList(), ROOT::RegisterClassTemplate(), TDataSetManagerFile::RegisterDataSet(), TProofServ::RegisterDataSets(), TTreeFormula::RegisterDimensions(), TGClient::RegisterPopup(), TGClient::RegisterWindow(), TRecorderReplaying::RegisterWindow(), TGeoVolume::RegisterYourself(), TFileCollection::RemoveDuplicates(), TQueryResultManager::RemoveQuery(), TGTab::RemoveTab(), RooCustomizer::replaceArg(), TProofMgr::ReplaceSubdirs(), TSQLFile::RequestSQLClassInfo(), TChain::Reset(), TH1::Reset(), TClass::ResetMenuList(), TGTable::ResizeTable(), TRootSniffer::Restrict(), RooCategorySharedProperties::RooCategorySharedProperties(), RooCmdConfig::RooCmdConfig(), RooSimultaneous::RooSimultaneous(), RooMCStudy::run(), RooStats::HypoTestInverterOriginal::RunOnePoint(), RooStats::HypoTestInverter::RunOnePoint(), TGuiBldDragManager::SaveFrame(), TProof::SaveInputData(), TProofPlayer::SavePartialResults(), TGCompositeFrame::SavePrimitiveSubframes(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TTreePlayer::Scan(), TDataSetManager::ScanDataSet(), TEntryList::ScanPaths(), TQueryResultManager::ScanPreviousQueries(), TSpectrum2::Search(), TSpectrum::Search(), TMonitor::Select(), TEvePointSelector::Select(), TApplicationServer::SendCanvases(), TProofMonSenderML::SendDataSetInfo(), TProofMonSenderSQL::SendDataSetInfo(), TProof::SendFile(), TMonaLisaWriter::SendFileCheckpoint(), TMonaLisaWriter::SendFileCloseEvent(), TProofMonSenderML::SendFileInfo(), TProofMonSenderSQL::SendFileInfo(), TMonaLisaWriter::SendFileOpenProgress(), TMonaLisaWriter::SendInfoDescription(), TMonaLisaWriter::SendInfoStatus(), TMonaLisaWriter::SendInfoTime(), TMonaLisaWriter::SendInfoUser(), TUDPSocket::SendProcessIDs(), TSocket::SendProcessIDs(), TMonaLisaWriter::SendProcessingProgress(), TMonaLisaWriter::SendProcessingStatus(), TUDPSocket::SendStreamerInfos(), TSocket::SendStreamerInfos(), TProofMonSenderML::SendSummary(), TProofMonSenderSQL::SendSummary(), TTree::SetAlias(), TGeoManager::SetAlignableEntry(), TAxis::SetBinLabel(), TChain::SetBranchAddress(), TChain::SetBranchStatus(), TStructViewer::SetColor(), THtml::SetDeclFileName(), THtml::SetImplFileName(), TQueryResult::SetInputList(), TMonitor::SetInterest(), TAlienResult::SetKey(), TGLiteResult::SetKey(), TGedEditor::SetModel(), RooPlot::SetName(), TNode::SetName(), RooDataHist::SetName(), RooDataSet::SetName(), RooFitResult::SetName(), RooPlot::SetNameTitle(), TNode::SetNameTitle(), RooDataHist::SetNameTitle(), RooDataSet::SetNameTitle(), RooFitResult::SetNameTitle(), TQueryResult::SetOutputList(), TProof::SetParameter(), TNode::SetParent(), TSelectorEntries::SetSelection(), TSpider::SetSelectionExpression(), TEntryList::SetTree(), TTreeViewer::SetTree(), TTreeViewer::SetTreeName(), TSPlot::SetTreeSelection(), TPerfStats::Setup(), TProofServ::SetupCommon(), TProofLite::SetupWorkers(), TEnv::SetValue(), TSpider::SetVariablesExpression(), TGPack::SetVertical(), THtml::ShortType(), TSelHist::SlaveBegin(), TSelectorEntries::SlaveTerminate(), TSelEventGen::SlaveTerminate(), TSelVerifyDataSet::SlaveTerminate(), TEveGedEditor::SpawnNewEditor(), RooAbsData::split(), RooCustomizer::splitArg(), TMVA::Configurable::SplitOptions(), TNetXNGSystem::Stage(), TAlienCollection::Stage(), TProofSuperMaster::StartSlaves(), TProofCondor::StartSlaves(), TProof::StartSlaves(), HFit::StoreAndDrawFitFunction(), TProofPlayerLite::StoreFeedback(), TProofPlayerRemote::StoreFeedback(), TProofPlayerRemote::StoreOutput(), TSQLFile::StreamKeysForDirectory(), TMessage::TagStreamerInfo(), TSelectorDraw::TakeAction(), TApplication::TApplication(), TAttParticle::TAttParticle(), TButton::TButton(), TDSet::TDSet(), TEntryList::TEntryList(), TProofDrawHist::Terminate(), TProofDrawProfile::Terminate(), TProofDrawProfile2D::Terminate(), TestDialog::TestDialog(), testTStatistic(), TEveCompositeFrame::TEveCompositeFrame(), TEveScene::TEveScene(), TFileInfo::TFileInfo(), TFitEditor::TFitEditor(), TFree::TFree(), TGeoMedium::TGeoMedium(), THbookFile::THbookFile(), TLegend::TLegend(), TListOfDataMembers::TListOfDataMembers(), TMacro::TMacro(), TMaterial::TMaterial(), TModuleDocInfo::TModuleDocInfo(), TMonitor::TMonitor(), TNode::TNode(), TParallelCoord::TParallelCoord(), TPerfStats::TPerfStats(), TQCommand::TQCommand(), TROOT::TROOT(), TRotMatrix::TRotMatrix(), TShape::TShape(), TSlider::TSlider(), TSpider::TSpider(), TStructNode::TStructNode(), TStructViewer::TStructViewer(), TStyleDialog::TStyleDialog(), TStyleManager::TStyleManager(), TTask::TTask(), TurnOn(), TViewPubDataMembers::TViewPubDataMembers(), TViewPubFunctions::TViewPubFunctions(), TQUndoManager::Undo(), TStructViewerGUI::UndoButtonSlot(), TListOfEnums::Unload(), TListOfFunctionTemplates::Unload(), TListOfDataMembers::Unload(), TListOfFunctions::Unload(), TFileCollection::Update(), TStructViewerGUI::Update(), TSessionViewer::UpdateListOfPackages(), TSessionViewer::UpdateListOfProofs(), TSessionViewer::UpdateListOfSessions(), TUploadDataSetDlg::UploadDataSet(), TProofMgr::UploadFiles(), TDSet::Validate(), TProofSuperMaster::ValidateDSet(), TProof::ValidateDSet(), TPacketizer::ValidateFiles(), TPacketizerAdaptive::ValidateFiles(), TProof::VerifyDataSetParallel(), TDocParser::WriteMethod(), ROOT::Internal::TTreeProxyGenerator::WriteProxy(), TPerfStats::WriteQueryLog(), TFile::WriteStreamerInfo(), and TSQLFile::WriteStreamerInfo().

virtual void TList::Add ( TObject obj,
Option_t opt 
)
inlinevirtual

Reimplemented in TQUndoManager, TQCommand, and TSortedList.

Definition at line 82 of file TList.h.

void TList::AddAfter ( const TObject after,
TObject obj 
)
virtual
void TList::AddAfter ( TObjLink after,
TObject obj 
)
virtual

Insert object after the specified ObjLink object.

If after = 0 then add to the tail of the list. An ObjLink can be obtained by looping over a list using the above describe iterator method 3.

Reimplemented in TListOfFunctions, TListOfEnums, TListOfDataMembers, TListOfFunctionTemplates, TListOfEnumsWithLock, THashList, TViewPubDataMembers, TViewPubFunctions, TSelectorList, and TSortedList.

Definition at line 248 of file TList.cxx.

void TList::AddAt ( TObject obj,
Int_t  idx 
)
virtual
void TList::AddBefore ( const TObject before,
TObject obj 
)
virtual
void TList::AddBefore ( TObjLink before,
TObject obj 
)
virtual

Insert object before the specified ObjLink object.

If before = 0 then add to the head of the list. An ObjLink can be obtained by looping over a list using the above describe iterator method 3.

Reimplemented in TListOfFunctions, TListOfEnums, TListOfDataMembers, TListOfFunctionTemplates, TListOfEnumsWithLock, THashList, TViewPubDataMembers, TViewPubFunctions, TSelectorList, and TSortedList.

Definition at line 200 of file TList.cxx.

void TList::AddFirst ( TObject obj)
virtual

Add object at the beginning of the list.

Implements TSeqCollection.

Reimplemented in TListOfFunctions, TListOfEnums, TListOfDataMembers, TListOfFunctionTemplates, TListOfEnumsWithLock, THashList, TViewPubDataMembers, TViewPubFunctions, TSelectorList, and TSortedList.

Definition at line 92 of file TList.cxx.

Referenced by TRootSniffer::AccessField(), TSortedList::Add(), TVolumeView::Add(), AddAt(), TStyleManager::AddAxisXDivisions(), TStyleManager::AddAxisXLabels(), TStyleManager::AddAxisXLine(), TStyleManager::AddAxisXTitle(), TStyleManager::AddAxisYDivisions(), TStyleManager::AddAxisYLabels(), TStyleManager::AddAxisYLine(), TStyleManager::AddAxisYTitle(), TStyleManager::AddAxisZDivisions(), TStyleManager::AddAxisZLabels(), TStyleManager::AddAxisZLine(), TStyleManager::AddAxisZTitle(), AddBefore(), TStyleManager::AddBorderModeEntry(), TStyleManager::AddCanvasDate(), TStyleManager::AddCanvasFill(), TStyleManager::AddCanvasGeometry(), TStyleManager::AddCheckButton(), THashList::AddFirst(), TStyleManager::AddGeneralFill(), TStyleManager::AddGeneralLine(), TStyleManager::AddGeneralMarker(), TStyleManager::AddGeneralText(), TStyleManager::AddHistosFramesFill(), TStyleManager::AddHistosFramesLine(), TStyleManager::AddHistosGraphsBorder(), TStyleManager::AddHistosGraphsErrors(), TStyleManager::AddHistosGraphsLine(), TStyleManager::AddHistosHistosAxis(), TStyleManager::AddHistosHistosBar(), TStyleManager::AddHistosHistosContours(), TStyleManager::AddHistosHistosFill(), TStyleManager::AddHistosHistosLegoInnerR(), TStyleManager::AddHistosHistosLine(), TStyleManager::AddLineWidthEntry(), TStyleManager::AddNumberEntry(), TStyleManager::AddPadFill(), TStyleManager::AddPadGrid(), TStyleManager::AddPadMargin(), TStyleManager::AddPadTicks(), TStyleManager::AddPsPdfHeader(), TStyleManager::AddPsPdfLineScale(), TStyleManager::AddPsPdfPaperSize(), TStyleManager::AddPsPdfTitle(), TStyleManager::AddStatsFill(), TStyleManager::AddStatsFit(), TStyleManager::AddStatsGeometry(), TStyleManager::AddStatsStats(), TStyleManager::AddStatsText(), TStyleManager::AddTextEntry(), TStyleManager::AddTitle(), TStyleManager::AddTitleBorderSize(), TStyleManager::AddTitleFill(), TStyleManager::AddTitleGeometry(), TStyleManager::AddTitleText(), TStyleManager::AddTopLevelInterface(), TFileInfo::AddUrl(), TProofOutputFile::AssertDir(), ClassImp(), TEntryListArray::ConvertToTEntryListArray(), TStyleManager::CreateTabAxis(), TStyleManager::CreateTabAxisX(), TStyleManager::CreateTabAxisY(), TStyleManager::CreateTabAxisZ(), TStyleManager::CreateTabCanvas(), TStyleManager::CreateTabGeneral(), TStyleManager::CreateTabHistosFrames(), TStyleManager::CreateTabHistosGraphs(), TStyleManager::CreateTabHistosHistos(), TStyleManager::CreateTabPad(), TStyleManager::CreateTabPsPdf(), TStyleManager::CreateTabStats(), TStyleManager::CreateTabTitle(), TClass::GetMenuItems(), TQObject::HighPriority(), TGLBContainer::InsertEntry(), TProfileHelper::Merge(), TH2::Merge(), TH3::Merge(), TH1::Merge(), RooList::moveBefore(), TPad::PaintPadFrame(), THistPainter::PaintPalette(), TParallelCoordRange::SendToBack(), TFileCollection::SetDefaultMetaData(), TLegend::SetHeader(), TEveBrowser::SetupCintExport(), TDSet::TDSet(), TGLSAViewer::TGLSAViewer(), and TLegend::TLegend().

void TList::AddFirst ( TObject obj,
Option_t opt 
)
virtual

Add object at the beginning of the list and also store option.

Storing an option is useful when one wants to change the behaviour of an object a little without having to create a complete new copy of the object. This feature is used, for example, by the Draw() method. It allows the same object to be drawn in different ways.

Reimplemented in TListOfFunctions, TListOfEnums, TListOfDataMembers, TListOfFunctionTemplates, TListOfEnumsWithLock, THashList, TViewPubDataMembers, TViewPubFunctions, TSelectorList, and TSortedList.

Definition at line 116 of file TList.cxx.

void TList::AddLast ( TObject obj)
virtual
void TList::AddLast ( TObject obj,
Option_t opt 
)
virtual

Add object at the end of the list and also store option.

Storing an option is useful when one wants to change the behaviour of an object a little without having to create a complete new copy of the object. This feature is used, for example, by the Draw() method. It allows the same object to be drawn in different ways.

Reimplemented in TListOfFunctions, TListOfEnums, TListOfDataMembers, TListOfFunctionTemplates, TListOfEnumsWithLock, THashList, TViewPubDataMembers, TViewPubFunctions, TSelectorList, and TSortedList.

Definition at line 156 of file TList.cxx.

TObject * TList::After ( const TObject obj) const
virtual
TObject * TList::At ( Int_t  idx) const
virtual

Returns the object at position idx. Returns 0 if idx is out of range.

Implements TSeqCollection.

Reimplemented in TListOfFunctions, TListOfEnumsWithLock, TViewPubDataMembers, and TViewPubFunctions.

Definition at line 310 of file TList.cxx.

Referenced by TProofServ::AcceptResults(), RooStats::HypoTestInverterResult::Add(), TH2Poly::Add(), TSpider::AddVariable(), TListOfEnumsWithLock::At(), TListOfFunctions::At(), TGFileBrowser::BrowseObj(), TGeoMediumDialog::BuildListTree(), TGeoMaterialDialog::BuildListTree(), THStack::BuildStack(), TAlienPackage::CheckDependencies(), ClassImp(), TGeoTabManager::Cleanup(), RooFitResult::correlation(), THtml::CreateListOfClasses(), TProof::CreateMerger(), TMVA::MethodBase::CreateVariableTransforms(), TTVLVContainer::Cut(), TLDAPEntry::DeleteAttribute(), TParallelCoord::DeleteSelection(), TLDAPAttribute::DeleteValue(), TSpider::DeleteVariable(), THStack::DistancetoPrimitive(), RooCustomizer::doBuild(), TProofProgressMemoryPlot::DoPlot(), RooStats::HypoTestInverterPlot::Draw(), TSpider::DrawPoly(), TSpider::DrawSlices(), TTVLVContainer::Ex(), TQCanvasMenu::Execute(), TCling::Execute(), TTVLVContainer::ExpressionItem(), TTVLVContainer::Ey(), TTVLVContainer::Ez(), RooFitResult::fillLegacyCorrMatrix(), TGeoManager::FindDuplicateMaterial(), TGListTree::FindItemByPathname(), TProof::FindNextFreeMerger(), RooMCStudy::fitResult(), RooMCStudy::genData(), TDSetElement::GetAssocObj(), TLDAPEntry::GetAttribute(), RooStats::HypoTestInverterResult::GetBackgroundTestStatDist(), Cppyy::GetBaseName(), TH2Poly::GetBinContent(), TH2Poly::GetBinName(), TH2Poly::GetBinTitle(), Cppyy::GetDatamemberName(), Cppyy::GetDatamemberOffset(), Cppyy::GetDatamemberType(), TDataSetManagerAliEn::GetDataSet(), Cppyy::GetDimensionSize(), TMVA::MethodCuts::GetEfficiency(), TMVA::MethodBase::GetEfficiency(), TTree::GetEntriesFriend(), TAlienResult::GetEntryList(), RooStats::HypoTestInverterResult::GetExpectedPValueDist(), TAlienResult::GetFileName(), TGLiteResult::GetFileName(), TAlienResult::GetFileNamePath(), TGLiteResult::GetFileNamePath(), TEveCaloDataHist::GetHist(), TAlienResult::GetKey(), TGLiteResult::GetKey(), TGeoManager::GetMaterial(), THStack::GetMaximum(), Cppyy::GetMethodArgDefault(), Cppyy::GetMethodArgName(), Cppyy::GetMethodArgType(), THStack::GetMinimum(), TLDAPAttribute::GetMod(), TLDAPEntry::GetMods(), TPacketizerAdaptive::GetNextUnAlloc(), RooPlot::getObject(), TAlienResult::GetPath(), TGLiteResult::GetPath(), TProofBench::GetPerfSpecs(), TLDAPEntry::GetReferrals(), RooStats::HypoTestInverterResult::GetResult(), RooStats::HypoTestInverterResult::GetSignalAndBackgroundTestStatDist(), RooStats::HLFactory::GetTotSigBkgPdf(), TMVA::MethodCuts::GetTrainingEfficiency(), TMVA::MethodBase::GetTrainingEfficiency(), TFileInfo::GetUrlAt(), TLDAPAttribute::GetValue(), TParallelCoord::GetVariable(), TProof::GoParallel(), TGFileBrowser::GotoDir(), TProofLogElem::Grep(), TProof::HandleSubmerger(), RooStats::HypoTestInverterResult::HypoTestInverterResult(), TSpider::InitVariables(), TAlienPackage::InstallAllPackages(), Cppyy::IsConstData(), Cppyy::IsEnumData(), RooFitResult::isIdentical(), Cppyy::IsPublicData(), TLDAPEntry::IsReferral(), Cppyy::IsStaticData(), TProfile::LabelsOption(), TProfile2D::LabelsOption(), TH1::LabelsOption(), TPainter3dAlgorithms::LegoFunction(), TEveCaloVizEditor::MakeSliceInfo(), RooStats::HypoTestInverterPlot::MakeTestStatPlot(), RooPlot::nameOf(), TSessionFrame::OnBtnDownClicked(), TSessionFrame::OnBtnRemoveClicked(), TSessionFrame::OnBtnUpClicked(), TMinuit2TraceObject::operator()(), RooStats::HypoTestInverterResult::operator=(), ROOT::Internal::TBranchProxyClassDescriptor::OutputDecl(), THStack::Paint(), TSpider::Paint(), THistPainter::PaintLego(), TMVA::Tools::ParseANNOptionString(), TTreePlayer::Principal(), TLDAPEntry::Print(), RooCustomizer::printMultiline(), TMVA::MethodFDA::ProcessOptions(), TAlien::Pwd(), TTreePlayer::Query(), TProof::RedirectWorker(), TMVA::regression_averagedevs(), TGeoManager::RemoveMaterial(), TFileInfo::RemoveUrlAt(), TProofMgr::ReplaceSubdirs(), RooMCStudy::run(), TTreePlayer::Scan(), TTVLVContainer::ScanList(), TLDAPServer::Search(), TH2Poly::SetBinContent(), TSpider::SetCurrentEntries(), TSpider::SetFillColor(), TSpider::SetFillStyle(), TAlienResult::SetKey(), TGLiteResult::SetKey(), TSpider::SetLineColor(), TSpider::SetLineStyle(), TSpider::SetLineWidth(), TSpider::SetNx(), TSpider::SetNy(), TSpider::SetSegmentDisplay(), TSPlot::SetTreeSelection(), TGPack::SetVertical(), TPad::ShowGuidelines(), TProofCondor::StartSlaves(), TTreeViewer::SwitchTree(), TSpider::SyncFormulas(), ROOT::Internal::TFriendProxy::TFriendProxy(), TGFSComboBox::TGFSComboBox(), TMultiLayerPerceptron::Train(), type_get_method(), ROOT::Internal::TFriendProxy::Update(), TFunction::Update(), TSpider::UpdateView(), TProofSuperMaster::ValidateDSet(), TProof::ValidateDSet(), TGeoChecker::Weight(), TDatabasePDG::WritePDGTable(), and TMinuit2TraceObject::~TMinuit2TraceObject().

TObject * TList::Before ( const TObject obj) const
virtual
void TList::Clear ( Option_t option = "")
virtual

Remove all objects from the list.

Does not delete the objects unless the TList is the owner (set via SetOwner()) and option "nodelete" is not set. If option="nodelete" then don't delete any heap objects that were marked with the kCanDelete bit, otherwise these objects will be deleted (this option is used by THashTable::Clear()).

Implements TCollection.

Reimplemented in TListOfEnums, TListOfDataMembers, TListOfFunctions, TListOfFunctionTemplates, TViewPubDataMembers, TViewPubFunctions, THashList, and TListOfEnumsWithLock.

Definition at line 348 of file TList.cxx.

Referenced by TMonitor::ActivateAll(), TProof::AssertDataSet(), TProofOutputList::AttachList(), ClassImp(), TSessionViewer::CleanupSession(), THashList::Clear(), THashTable::Clear(), TDirectory::Clear(), TMultiDimFit::Clear(), TPad::Clear(), TProofPlayer::ClearInput(), RooCategory::clearRange(), TPad::Close(), TProof::Close(), TProof::Collect(), TTreePlayer::CopyTree(), THtml::CreateListOfClasses(), TMonitor::DeActivateAll(), TProofPlayerRemote::DrawSelect(), TAlienPackage::Enable(), TTVLVContainer::ExpressionList(), TAlienDirectory::Fill(), TProofPerfAnalysis::FillFileInfo(), TProofPerfAnalysis::FillWrkInfo(), TProofPlayerRemote::Finalize(), TProofLite::FindUniqueSlaves(), TProof::FindUniqueSlaves(), TROOT::GetListOfGlobals(), TMVA::TMVAGlob::GetListOfKeys(), TMVA::TMVAGlob::GetListOfMethods(), TMVA::TMVAGlob::GetListOfTitles(), TProof::GoParallel(), TProof::HandleInputMessage(), TProofServ::HandleProcess(), TProof::HandleSubmerger(), TOutputListSelectorDataMap::Init(), TAlienPackage::InstallAllPackages(), TFile::MakeProject(), TFileMerger::PartialMerge(), TQCanvasMenu::Popup(), TTreePlayer::Principal(), TProofPlayerLite::Process(), TProofLite::Process(), TProof::Process(), TTreePlayer::Query(), TFile::ReadStreamerInfo(), TProof::RecvLogFile(), TFileCollection::RemoveMetaData(), TStructViewer::Reset(), TPacketizer::Reset(), TFileMerger::Reset(), TPacketizerAdaptive::Reset(), TProofBenchRunCPU::Run(), TProofBenchRunDataRead::Run(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TTreePlayer::Scan(), TMonitor::Select(), TMonaLisaWriter::SendFileOpenProgress(), TUDPSocket::SendStreamerInfos(), TSocket::SendStreamerInfos(), TGedEditor::SetModel(), TStructViewerGUI::UnCheckMaxObjects(), TStructViewerGUI::Update(), TUploadDataSetDlg::UploadDataSet(), TMessage::WriteObject(), TAlienDirectory::~TAlienDirectory(), TFitParametersDialog::~TFitParametersDialog(), TGFileContainer::~TGFileContainer(), TGToolBar::~TGToolBar(), THStack::~THStack(), TInspectCanvas::~TInspectCanvas(), TMultiDimFit::~TMultiDimFit(), TProofPlayer::~TProofPlayer(), TQConnection::~TQConnection(), and TStructViewer::~TStructViewer().

void TList::Delete ( Option_t option = "")
virtual

Remove all objects from the list AND delete all heap based objects.

If option="slow" then keep list consistent during delete. This allows recursive list operations during the delete (e.g. during the dtor of an object in this list one can still access the list to search for other not yet deleted objects).

Implements TCollection.

Reimplemented in TQCommand, TListOfEnums, TListOfDataMembers, TListOfFunctions, TListOfFunctionTemplates, TViewPubDataMembers, TViewPubFunctions, THashList, and TListOfEnumsWithLock.

Definition at line 404 of file TList.cxx.

Referenced by TChain::Add(), RooTreeDataStore::addColumns(), RooVectorDataStore::addColumns(), TSpider::AddVariable(), TParallelCoord::ApplySelectionToTree(), RooSimPdfBuilder::buildPdf(), TSecContext::Cleanup(), TQueryResultManager::CleanupQueriesDir(), TProofServ::CleanupWaitingQueries(), TLegend::Clear(), THashList::Clear(), TPaveText::Clear(), TPrincipal::Clear(), TGraph2D::Clear(), TProof::ClearFeedback(), TRootBrowserLite::ClearHistory(), THbookFile::Close(), TXMLFile::Close(), TDirectoryFile::Close(), Memstat::TMemStatMng::Close(), TDirectory::Close(), TFile::Close(), TSQLFile::Close(), TProof::Close(), TRootBrowser::CloseTabs(), TGFileDialog::CloseWindow(), TSessionViewer::CloseWindow(), TDocMacroDirective::CreateSubprocessInputFile(), THashList::Delete(), THashTable::Delete(), TQCommand::Delete(), TProtoClass::Delete(), TDirectory::DeleteAll(), TSpider::DeleteVariable(), TXProofMgr::DetachSession(), TProofMgr::DetachSession(), TSQLFile::DirReadKeys(), TRootContextMenu::DisplayPopup(), RooSimWSTool::executeBuild(), RooStudyManager::expandWildCardSpec(), RooFitResult::fillLegacyCorrMatrix(), TProofPlayerRemote::Finalize(), RooMCStudy::fit(), TGWin32ProxyBase::ForwardCallBack(), RooMCStudy::generate(), RooMCStudy::generateAndFit(), TProofLite::GetListOfQueries(), TProof::GetListOfSlaveInfos(), TDocMacroDirective::GetResult(), TProof::HandleInputMessage(), TXProofServ::HandleTermination(), TMinuit2TraceObject::Init(), TClass::MakeCustomMenuList(), TFile::MakeProject(), RooAbsReal::matchArgs(), TFileMerger::MergeRecursive(), Notify(), TMacro::operator=(), TFunction::operator=(), TTask::operator=(), TDataMember::operator=(), TEfficiency::operator=(), THistPainter::PaintContour(), TProofPlayerLite::Process(), TProofLite::Process(), TProofPlayerRemote::Process(), TProof::Process(), RooStudyManager::processBatchOutput(), TGFileDialog::ProcessMessage(), TRootSniffer::ProduceExe(), TSessionViewer::ReadConfiguration(), TDirectoryFile::ReadKeys(), TQueryResult::RecordEnd(), PoolUtils::ReduceObjects(), TMonitor::RemoveAll(), TFile::ReOpen(), TEntryListArray::Reset(), TEntryList::Reset(), TChain::Reset(), TMemFile::ResetAfterMerge(), TDirectoryFile::ResetAfterMerge(), TClass::ResetCaches(), TClass::ResetMenuList(), TMemFile::ResetObjects(), TParallelCoord::ResetTree(), TGTable::ResizeTable(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TQueryResultManager::ScanPreviousQueries(), TEvePointSelector::Select(), TQUndoManager::SetLogging(), TGFileInfo::SetMultipleSelection(), TSpider::SetNx(), TSpider::SetNy(), TGStatusBar::SetParts(), TEfficiency::SetPassedHistogram(), TSpider::SetSegmentDisplay(), TEfficiency::SetTotalHistogram(), TMemStatShow::Show(), TRootBrowser::ShowMenu(), TTreeCache::StartLearningPhase(), TDataMember::Update(), RooStats::HypoTestInverterResult::~HypoTestInverterResult(), RooCmdConfig::~RooCmdConfig(), RooFitResult::~RooFitResult(), RooMCStudy::~RooMCStudy(), RooPlot::~RooPlot(), RooSimPdfBuilder::~RooSimPdfBuilder(), RooSimultaneous::~RooSimultaneous(), RooThresholdCategory::~RooThresholdCategory(), RooStats::SamplingDistPlot::~SamplingDistPlot(), TButton::~TButton(), TChain::~TChain(), TClass::~TClass(), TClassTree::~TClassTree(), TControlBar::~TControlBar(), TDataMember::~TDataMember(), TDirectory::~TDirectory(), TDirectoryFile::~TDirectoryFile(), TEntryList::~TEntryList(), TEntryListArray::~TEntryListArray(), TestDialog::~TestDialog(), TestShutter::~TestShutter(), TFunction::~TFunction(), TGeoManager::~TGeoManager(), TGeometry::~TGeometry(), TGImageMap::~TGImageMap(), TGMainFrame::~TGMainFrame(), TGMenuBar::~TGMenuBar(), TGMsgBox::~TGMsgBox(), TGPopupMenu::~TGPopupMenu(), TGShutter::~TGShutter(), TGTab::~TGTab(), TGTable::~TGTable(), TGWin32ProxyBase::~TGWin32ProxyBase(), THttpServer::~THttpServer(), TLegend::~TLegend(), TMacro::~TMacro(), TMapFile::~TMapFile(), TMonitor::~TMonitor(), TMPClient::~TMPClient(), TMultiGraph::~TMultiGraph(), TNode::~TNode(), TParallelCoord::~TParallelCoord(), TParallelCoordSelect::~TParallelCoordSelect(), TParallelCoordVar::~TParallelCoordVar(), TPaveText::~TPaveText(), TPrincipal::~TPrincipal(), TProcessUUID::~TProcessUUID(), TQObject::~TQObject(), TRootBrowserLite::~TRootBrowserLite(), TRootContextMenu::~TRootContextMenu(), TRootDialog::~TRootDialog(), TSelectorEntries::~TSelectorEntries(), ~TSingleShotCleaner(), TSpider::~TSpider(), TSQLFile::~TSQLFile(), TSQLObjectDataPool::~TSQLObjectDataPool(), TSQLTableInfo::~TSQLTableInfo(), TTask::~TTask(), TTree::~TTree(), TTreeCache::~TTreeCache(), TTreeFormula::~TTreeFormula(), TTreePlayer::~TTreePlayer(), TTreeViewer::~TTreeViewer(), TVolume::~TVolume(), and TXMLNode::~TXMLNode().

void TList::DeleteLink ( TObjLink lnk)
protectedvirtual

Delete a TObjLink object.

Definition at line 483 of file TList.cxx.

TObjLink ** TList::DoSort ( TObjLink **  head,
Int_t  n 
)
protected

Sort linked list.

Definition at line 814 of file TList.cxx.

TObjLink * TList::FindLink ( const TObject obj,
Int_t idx 
) const
protected

Returns the TObjLink object that contains object obj.

In idx it returns the position of the object in the list.

Definition at line 532 of file TList.cxx.

TObject * TList::FindObject ( const char *  name) const
virtual

Find an object in this list using its name.

Requires a sequential scan till the object has been found. Returns 0 if object with specified name is not found. This method overrides the generic FindObject() of TCollection for efficiency reasons.

Reimplemented from TCollection.

Reimplemented in TListOfDataMembers, TListOfFunctions, TListOfFunctionTemplates, THashList, TListOfEnumsWithLock, TViewPubDataMembers, and TViewPubFunctions.

Definition at line 496 of file TList.cxx.

Referenced by TGedEditor::ActivateEditor(), TProofChain::AddAliases(), TTree::AddClone(), TLegend::AddEntry(), TProof::AddEnvVar(), TProof::AddFeedback(), ROOT::Internal::TTreeProxyGenerator::AddForward(), ROOT::Internal::TTreeGeneratorBase::AddHeader(), TProof::AddInputData(), THttpServer::AddLocation(), ROOT::Internal::TTreeProxyGenerator::AddMissingClassAsEnum(), TGraphStruct::AddNode(), TProofPlayerRemote::AddOutput(), RooSimultaneous::addPdf(), RooCategory::addToRange(), TProcessUUID::AddUUID(), RooSimultaneous::analyticalIntegralWN(), TDirectoryFile::AppendKey(), TTreeViewer::AppendTree(), TQueryResultManager::ApplyMaxQueries(), TProof::AssertDataSet(), TPacketizerUnit::AssignWork(), TTree::AutoSave(), TSelEventGen::Begin(), TSelectorDraw::Begin(), TProofDraw::Begin(), TProofDrawHist::Begin(), TProofDrawProfile::Begin(), TProofDrawProfile2D::Begin(), TBonjourBrowser::BonjourBrowseReply(), THbookKey::Browse(), TDirectoryFile::Browse(), TKey::Browse(), TMapFile::Browse(), TStreamerInfo::Build(), TProofBenchRunCPU::BuildHistos(), TProofBenchRunDataRead::BuildHistos(), TStreamerInfo::BuildOld(), RooSimPdfBuilder::buildPdf(), ClassImp(), TProofServ::CleanupWaitingQueries(), TProof::ClearInputData(), ApplicationWindow::closeEvent(), TStreamerInfo::CompareContent(), TProofDraw::CompileVariables(), TQObject::Connect(), TQObject::ConnectToClass(), TMVA::correlations(), TMVA::correlationsMultiClass(), TDocOutput::CreateClassTypeDefs(), TDocOutput::CreateModuleIndex(), TPacketizerMulti::CreatePacketizer(), RooCmdConfig::defineDouble(), RooCmdConfig::defineInt(), RooCmdConfig::defineObject(), RooCmdConfig::defineSet(), RooCmdConfig::defineString(), TProofDrawHist::DefVar(), TProofDrawProfile::DefVar(), TProofDrawProfile2D::DefVar(), TProofDrawHist::DefVar1D(), TProofDrawHist::DefVar2D(), TProofDrawHist::DefVar3D(), TProof::DelEnvVar(), TPad::DeleteExec(), TProofBenchRunCPU::DeleteParameters(), TProofBenchRunDataRead::DeleteParameters(), TClassDocOutput::DescendHierarchy(), do_anadist_ds(), RooCustomizer::doBuild(), TFitEditor::DoFunction(), TProofProgressMemoryPlot::DoPlot(), TFitEditor::DoUseFuncRange(), TPad::DrawClassObject(), TCanvas::DrawClone(), TTreePlayer::DrawSelect(), TProofPlayerRemote::DrawSelect(), TTreeCache::DropBranch(), TQObject::Emit(), TQObject::EmitVA(), TProof::EnablePackage(), RooSimultaneous::evaluate(), RooSimWSTool::executeBuild(), RooSimultaneous::expectedEvents(), RooSimultaneous::extendMode(), TProofPerfAnalysis::FileProcPlot(), TMemStatShow::FillBTString(), TProofPerfAnalysis::FillFileInfo(), TProofPerfAnalysis::FillWrkInfo(), TProofPlayerRemote::Finalize(), TSQLTableInfo::FindColumn(), THbookFile::FindObject(), THashTable::FindObject(), TGraph2D::FindObject(), TGraph::FindObject(), TDirectory::FindObject(), TPad::FindObject(), TH1::FindObject(), TDirectory::FindObjectAny(), TDirectoryFile::FindObjectAnyFile(), TMultiDimFit::Fit(), TXSockPipe::Flush(), RooSimultaneous::genContext(), TStreamerInfo::GenerateHeaderFile(), TMakeProject::GenerateIncludeForTemplate(), TMakeProject::GenerateMissingStreamerInfo(), TDirectoryFile::Get(), TDirectory::Get(), TTree::GetAlias(), TMethodBrowsable::GetBrowsableMethodsForClass(), THistPainter::GetContourList(), TBranchElement::GetCurrentClass(), RooStats::HistFactory::HistFactoryNavigation::GetDataHist(), Cppyy::GetDatamemberIndex(), RooStats::HistFactory::getDataValuesForObservables(), RooCmdConfig::getDouble(), TGPopupMenu::GetEntry(), TPad::GetFrame(), TMultiGraph::GetFunction(), TGraph::GetFunction(), TH1::GetFunction(), TMakeProject::GetHeaderName(), TProof::GetInputData(), RooCmdConfig::getInt(), TProofMgr::GetListOfManagers(), TGeoManager::GetMaterial(), TGeoManager::GetMedium(), TClass::GetMenuItems(), TFileInfo::GetMetaData(), TFileCollection::GetMetaData(), TProof::GetMissingFiles(), TPacketizerFile::GetNextPacket(), TPacketizerAdaptive::GetNextPacket(), TPacketizer::GetNextUnAlloc(), TPacketizerAdaptive::GetNextUnAlloc(), TProofLite::GetNumberOfWorkers(), RooCmdConfig::getObject(), TDirectoryFile::GetObjectChecked(), TDirectory::GetObjectChecked(), RooCmdConfig::getObjectList(), TProof::GetOutput(), TProof::GetParameter(), RooSimultaneous::getPdf(), TProofBench::GetPerfSpecs(), TClass::GetRealData(), RooCmdConfig::getSet(), ROOT::Internal::TTreeGeneratorBase::GetStreamerInfo(), RooCmdConfig::getString(), TFileCollection::GetTotalEntries(), TXProofServ::GetWorkers(), TProofPerfAnalysis::GetWrkFileList(), TProof::GoMoreParallel(), TProof::GoParallel(), TProofServ::HandleCache(), TProofPlayerRemote::HandleHistogram(), TProof::HandleInputMessage(), TProof::HandleOutputOptions(), TProofServ::HandleProcess(), TProofPlayerRemote::HandleTimer(), TQObject::HasConnection(), RooCmdConfig::hasProcessed(), TRootSniffer::HasRestriction(), TQObject::HighPriority(), TProofPlayerRemote::Incorporate(), TDataMember::Init(), InitCounter(), TGLVoxelPainter::InitGeometry(), TProofPlayerRemote::InitPacketizer(), TGraph2D::Interpolate(), TXSlave::Interrupt(), TMethodBrowsable::IsMethodBrowsable(), RooCategory::isStateInRange(), TEventIterTree::Load(), TProof::Load(), TProof::LoadPackageOnClient(), TChain::LoadTree(), TQObject::LowPriority(), TTreePlayer::MakeClass(), TMultiDimFit::MakeCoefficients(), TCanvas::MakeDefCanvas(), TPrincipal::MakeHistograms(), TMultiDimFit::MakeHistograms(), TRootSnifferScanRec::MakeItemName(), TMultiDimFit::MakeNormalized(), TFile::MakeProject(), TClassTree::Mark(), TGDMLParse::MatProcess(), TFileMerger::MergeRecursive(), TProof::ModifyWorkerLists(), TSessionServerFrame::OnBtnAddClicked(), TSessionServerFrame::OnBtnConnectClicked(), TNewQueryDlg::OnBtnSaveClicked(), TSessionFrame::OnDisablePackages(), TSessionFrame::OnEnablePackages(), TSessionFrame::OnUploadPackages(), TPerfStats::PacketEvent(), THistPainter::PaintContour(), TPad::PaintPadFrame(), THistPainter::PaintPalette(), THistPainter::PaintTable(), THistPainter::PaintTriangles(), TMVA::paracoor(), TProof::ParseConfigField(), TProofLite::PollForNewWorkers(), TFileInfo::Print(), TProofPerfAnalysis::PrintFileInfo(), TProofPerfAnalysis::PrintWrkInfo(), TProofPlayerLite::Process(), TSelHandleDataSet::Process(), RooCmdConfig::process(), TSelEventGen::Process(), TSelVerifyDataSet::Process(), TProofLite::Process(), TProofPlayer::Process(), TProofPlayerRemote::Process(), TProof::Process(), TRootCanvas::ProcessMessage(), TProofServ::ProcessNext(), TXMLPlayer::ProduceStreamerSource(), TXProofMgr::QuerySessions(), TProofMgr::QuerySessions(), TDirectoryFile::ReadAll(), TFile::ReadStreamerInfo(), TBufferFile::ReadVersion(), TBufferFile::ReadVersionForMemberWise(), TPacketizerAdaptive::ReassignPacket(), TDocOutput::ReferenceEntity(), ROOT::RegisterClassTemplate(), TDataSetManagerFile::RegisterDataSet(), TProofServ::RegisterDataSets(), TGeoVolume::RegisterYourself(), TProof::RemoveFeedback(), TGShutter::RemoveItem(), TFileInfo::RemoveMetaData(), TFileCollection::RemoveMetaData(), TRootBrowser::RemoveTab(), RooCustomizer::replaceArg(), TPacketizer::Reset(), TH1::Reset(), TDirectoryFile::ResetAfterMerge(), TChain::ResetBranchAddress(), TMemFile::ResetObjects(), TProofLite::ResolveKeywords(), TProofBenchRunCPU::Run(), TProofBenchRunDataRead::Run(), TProof::SaveInputData(), TProofPlayer::SavePartialResults(), TGCompositeFrame::SavePrimitiveSubframes(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TProof::SaveWorkerInfo(), TSpectrum2::Search(), TSpectrum::Search(), TProofMonSenderML::SendDataSetInfo(), TProofMonSenderSQL::SendDataSetInfo(), TProof::SendInputData(), TUDPSocket::SendProcessIDs(), TSocket::SendProcessIDs(), TProofMonSenderML::SendSummary(), TProofMonSenderSQL::SendSummary(), TTree::SetAlias(), TChain::SetBranchAddress(), TChain::SetBranchStatus(), TFileInfo::SetCurrentUrl(), RooAbsTestStatistic::setData(), TAlienResult::SetKey(), TGLiteResult::SetKey(), TLegendEntry::SetObject(), TQueryResult::SetOutputList(), TProof::SetParameter(), TSlider::SetRange(), TSelectorEntries::SetSelection(), TH1::SetStats(), TRootBrowser::SetTabTitle(), TTreeViewer::SetTreeName(), TPerfStats::Setup(), TProofPlayerLite::SetupFeedback(), TProofPlayerRemote::SetupFeedback(), TProofLite::SetupWorkers(), TMemStatShow::Show(), TProof::ShowMissingFiles(), TBufferFile::SkipVersion(), TSelectorEntries::SlaveBegin(), TSelEventGen::SlaveBegin(), TSelVerifyDataSet::SlaveBegin(), TProofDrawHist::SlaveBegin(), TProofDrawEventList::SlaveBegin(), TProofDrawEntryList::SlaveBegin(), TProofDrawProfile::SlaveBegin(), TProofDrawProfile2D::SlaveBegin(), TProofDrawGraph::SlaveBegin(), TProofDrawPolyMarker3D::SlaveBegin(), RooAbsData::split(), RooCustomizer::splitArg(), TProofPlayerLite::StoreFeedback(), TProofPlayerRemote::StoreFeedback(), TProofPlayerRemote::StoreOutput(), TSelectorDraw::TakeAction(), TDSet::TDSet(), TPrincipal::Test(), TAxis3D::ToggleZoom(), TPerfStats::TPerfStats(), TProofBench::TProofBench(), TProofServ::UnloadPackage(), TProof::UnloadPackageOnClient(), TFileCollection::Update(), TSessionQueryFrame::UpdateHistos(), TSessionViewer::UpdateListOfPackages(), TProofSuperMaster::ValidateDSet(), TProof::ValidateDSet(), TClassDocOutput::WriteClassDocHeader(), and TPerfStats::WriteQueryLog().

TObject * TList::FindObject ( const TObject obj) const
virtual

Find an object in this list using the object's IsEqual() member function.

Requires a sequential scan till the object has been found. Returns 0 if object is not found. This method overrides the generic FindObject() of TCollection for efficiency reasons.

Reimplemented from TCollection.

Reimplemented in TListOfFunctions, THashList, TListOfEnumsWithLock, TViewPubDataMembers, and TViewPubFunctions.

Definition at line 516 of file TList.cxx.

TObject * TList::First ( ) const
virtual

Return the first object in the list. Returns 0 when list is empty.

Implements TSeqCollection.

Reimplemented in TListOfFunctions, TViewPubDataMembers, TViewPubFunctions, and TListOfEnumsWithLock.

Definition at line 556 of file TList.cxx.

Referenced by TContextMenu::Action(), TDSet::AddFriend(), TParallelCoord::ApplySelectionToTree(), TProof::AssertDataSet(), TProofNodes::Build(), RooSimPdfBuilder::buildPdf(), TTree::ChangeFile(), TStructViewerGUI::CheckMaxObjects(), TParallelCoordEditor::CleanUpVariables(), TFile::Close(), TProof::Close(), TEveBrowser::CloseTab(), TRootBrowser::CloseTabs(), TProof::Collect(), TApplicationRemote::CollectInput(), TEntryList::Contains(), TEntryListArray::ConvertToTEntryListArray(), TKey::Create(), TClassDocOutput::CreateDotClassChartInhMem(), TClassDocOutput::CreateHierarchyDot(), TDocLatexDirective::CreateLatex(), TEveTrackPropagatorSubEditor::CreateRefsContainer(), TEveGedEditor::DestroyEditors(), TProof::Detach(), TStructViewerGUI::Divide(), TGFileBrowser::DoubleClicked(), TGraphStruct::Draw(), TGeometry::Draw(), RooStats::HypoTestInverterPlot::Draw(), TPad::DrawClassObject(), TPolyLine3D::DrawOutlineCube(), TEntryListArray::Enter(), TEntryList::Enter(), TQCanvasMenu::Execute(), TGroupButton::ExecuteAction(), RooSimWSTool::executeBuild(), TRootGuiBuilder::FindActionButton(), TMethod::FindDataMember(), TGListBox::FindEntry(), TGContainer::FindItem(), TProofLite::FindUniqueSlaves(), TListOfEnumsWithLock::First(), TListOfFunctions::First(), TParallelCoord::GetCurrentSelection(), TProofBenchRunDataRead::GetDataSet(), TProof::GetDataSet(), TProof::GetDataSetQuota(), TProof::GetDataSets(), TEntryList::GetEntry(), RooStats::HypoTestInverterResult::GetExpectedLimit(), TFileInfo::GetFirstUrl(), TFileInfo::GetMetaData(), TParallelCoord::GetNbins(), TPacketizerAdaptive::GetNextPacket(), TGeometry::GetNode(), TProofBench::GetPerfSpecs(), TDocMacroDirective::GetResult(), TDocLatexDirective::GetResult(), TProofMgrLite::GetSessionLogs(), TVolumeView::GetShape(), TProof::GetStagingStatusDataSet(), RooStats::HLFactory::GetTotBkgPdf(), RooStats::HLFactory::GetTotDataSet(), TProof::GetTreeHeader(), TXProofServ::GetWorkers(), TProof::GoParallel(), TProofServ::HandleCache(), TProof::HandleInputMessage(), TGMenuBar::HandleKey(), TGSplitButton::HandleKey(), TGuiBldDragManager::HandlePaste(), TProofServ::HandleSocketInput(), TFitParametersDialog::HandleTab(), TGContainer::Home(), TClassTree::Init(), TGraphStruct::Layout(), TGShutter::Layout(), TMultiGraph::LeastSquareFit(), TGContainer::LineDown(), TGLVContainer::LineDown(), TGContainer::LineLeft(), TGLVContainer::LineLeft(), TGContainer::LineRight(), TGLVContainer::LineRight(), TGContainer::LineUp(), TGLVContainer::LineUp(), TEventIterTree::Load(), TProof::LoadPackageOnClient(), THistPainter::MakeChopt(), TProofBench::MakeDataSet(), TFile::MakeFree(), TPacketizerAdaptive::MarkBad(), TGuiBldDragManager::Menu4Frame(), TProofPlayerRemote::MergeOutput(), TFileMerger::MergeRecursive(), TEntryList::Next(), TPacketizer::NextActiveNode(), TPacketizerAdaptive::NextActiveNode(), TPacketizerAdaptive::NextNode(), TProofServ::NextQuery(), TPacketizer::NextUnAllocNode(), TProof::Open(), TGraph::operator=(), TGFileBrowser::PadModified(), TGContainer::PageDown(), TGContainer::PageUp(), TGraphPainter::PaintGraph(), TButton::PaintModified(), TFileMerger::PartialMerge(), TGComboBoxPopup::PlacePopup(), TFileInfo::Print(), TProof::Print(), TProofLite::Process(), TGClient::ProcessIdleEvent(), TGShutter::ProcessMessage(), THttpServer::ProcessRequests(), TStructViewerGUI::RedoButtonSlot(), TCondor::Release(), TEntryListArray::Remove(), TEntryList::Remove(), TRootBrowser::RemoveTab(), TFile::ReOpen(), TEntryListArray::Reset(), TEntryList::Reset(), TH1::Reset(), TFileInfo::ResetUrl(), TGraphStruct::SavePrimitive(), TDirectoryFile::SaveSelf(), TMonitor::Select(), TMonaLisaWriter::SendFileOpenProgress(), TProof::SetAlias(), TParallelCoord::SetAxesPosition(), TGedEditor::SetModel(), TEntryListArray::SetTree(), TEntryList::SetTree(), TGPack::SetVertical(), TAlienCollection::Stage(), TRootBrowser::StopEmbedding(), TEveWindowSlot::StopEmbedding(), TGSplitFrame::SwallowBack(), TRootBrowser::SwitchMenus(), TDSet::TDSet(), TGLSAViewer::TGLSAViewer(), TStructViewerGUI::UndoButtonSlot(), TASPaletteEditor::UpdateScreen(), TPacketizer::ValidateFiles(), TPacketizerAdaptive::ValidateFiles(), TDocParser::WriteMethod(), TEfficiency::~TEfficiency(), TGedEditor::~TGedEditor(), TGraph::~TGraph(), TH1::~TH1(), TMultiGraph::~TMultiGraph(), TProof::~TProof(), TStyleDialog::~TStyleDialog(), TStyleManager::~TStyleManager(), and TStylePreview::~TStylePreview().

virtual TObjLink* TList::FirstLink ( ) const
inlinevirtual

Reimplemented in TListOfFunctions, TViewPubDataMembers, TViewPubFunctions, and TListOfEnumsWithLock.

Definition at line 101 of file TList.h.

Referenced by TMultiGraph::Add(), TDirectoryFile::AppendKey(), TGLH2PolyPainter::BuildTesselation(), TGLH2PolyPainter::CacheGeometry(), TDirectoryFile::Close(), TDirectory::Close(), TROOT::CloseFiles(), TGLScenePad::ComposePolymarker(), TVolume::DeletePosition(), TGClient::DoRedraw(), TGLH2PolyPainter::DrawCaps(), TGLH2PolyPainter::DrawExtrusion(), TEveGedEditor::ElementChanged(), TEveGedEditor::ElementDeleted(), TProcessUUID::FindUUID(), TListOfEnumsWithLock::FirstLink(), TListOfFunctions::FirstLink(), TClass::GetBaseClassOffsetRecurse(), TMethodBrowsable::GetBrowsableMethodsForClass(), TNonSplitBrowsable::GetBrowsables(), TGContainer::GetNextSelected(), TNode::GetNode(), TSQLObjectDataPool::GetObjectRow(), TClass::GetRealData(), TProof::HandleInputMessage(), TNode::ImportShapeAttributes(), TGedEditor::InsertGedFrame(), TChain::InvalidateCurrentTree(), TChain::LoadTree(), TBranchRef::Notify(), TGraphTime::Paint(), THStack::Paint(), TMultiGraph::Paint(), TPad::Paint(), THistPainter::PaintFunction(), TGraphPainter::PaintGraphSimple(), TPad::PaintModified(), TMultiGraph::PaintPads(), TFileIter::PurgeKeys(), TFile::ReadStreamerInfo(), TUDPSocket::RecvStreamerInfos(), TSocket::RecvStreamerInfos(), TProcessUUID::RemoveUUID(), TFileIter::Reset(), TGraphTime::SaveAnimatedGif(), THStack::SavePrimitive(), TMultiGraph::SavePrimitive(), TH1::SavePrimitiveHelp(), TApplicationServer::SendCanvases(), TChain::SetBranchAddress(), TFileIter::SkipObjects(), TGLScenePad::SubPadPaint(), TFriendElement__SetTree(), TListOfEnums::Unload(), TListOfFunctionTemplates::Unload(), TListOfDataMembers::Unload(), TGLH2PolyPainter::UpdateGeometry(), TPluginManager::WritePluginMacros(), TPluginManager::WritePluginRecords(), TApplication::~TApplication(), and TTree::~TTree().

TObject ** TList::GetObjectRef ( const TObject obj) const
virtual

Return address of pointer to obj.

Implements TCollection.

Reimplemented in TListOfFunctions, TViewPubDataMembers, TViewPubFunctions, and TListOfEnumsWithLock.

Definition at line 565 of file TList.cxx.

Referenced by TListOfEnumsWithLock::GetObjectRef(), THashTable::GetObjectRef(), and TListOfFunctions::GetObjectRef().

Bool_t TList::IsAscending ( )
inline

Definition at line 107 of file TList.h.

Referenced by TSortedList::Add().

TObject * TList::Last ( ) const
virtual

Return the last object in the list. Returns 0 when list is empty.

Implements TSeqCollection.

Reimplemented in TListOfFunctions, TViewPubDataMembers, TViewPubFunctions, and TListOfEnumsWithLock.

Definition at line 580 of file TList.cxx.

Referenced by TQCommand::Add(), TDSet::Add(), TParallelCoord::AddVariable(), TDataSetManagerFile::BrowseDataSets(), TPacketizerAdaptive::CalculatePacketSize(), TProofLite::CleanupSandbox(), TRootContextMenu::CreateMenu(), TProofMgrLite::CreateSession(), TProofMgr::CreateSession(), TDocParser::DecorateKeywords(), TProofProgressMemoryPlot::DoAveragePlot(), TProofProgressMemoryPlot::DoWorkerPlot(), TGContainer::End(), TRootGuiBuilder::FindActionButton(), TGContainer::FindItem(), TStructViewerGUI::FindNodeProperty(), TFree::GetBestFree(), TStructViewerGUI::GetDefaultColor(), TStructNodeEditor::GetDefaultProperty(), TGMenuBar::GetLastOnLeft(), TXSockPipe::GetLastReady(), TXProofServ::GetWorkers(), TDocParser::HandleDirective(), TGMenuBar::HandleKey(), TGSplitButton::HandleKey(), TProofServ::HandleProcess(), TFitParametersDialog::HandleShiftTab(), TGMdiMenuBar::HideFrames(), TListOfEnumsWithLock::Last(), TListOfFunctions::Last(), TGMenuBar::Layout(), TGContainer::LineDown(), TGLVContainer::LineDown(), TGContainer::LineRight(), TGLVContainer::LineRight(), TGuiBldDragManager::Menu4Frame(), TEntryList::Next(), TSessionServerFrame::OnBtnConnectClicked(), TSessionServerFrame::OnBtnDeleteClicked(), TGContainer::PageDown(), TPad::Pop(), TPaveText::ReadFile(), TFile::Recover(), TStructViewerGUI::RedoButtonSlot(), TGMdiMenuBar::RemoveFrames(), TGCompositeFrame::SavePrimitiveSubframes(), TMonaLisaWriter::SendFileOpenProgress(), TGLViewerEditor::SetGuides(), TParallelCoordEditor::SetModel(), TEntryListArray::SetTree(), TProof::ShowLog(), TRootBrowser::StopEmbedding(), TDSet::TDSet(), TNewQueryDlg::TNewQueryDlg(), TAxis3D::ToggleZoom(), TStructViewerGUI::UndoButtonSlot(), TASPaletteEditor::UpdateScreen(), and TFile::WriteHeader().

virtual TObjLink* TList::LastLink ( ) const
inlinevirtual
TObjLink * TList::LinkAt ( Int_t  idx) const
protected

sorting order (when calling Sort() or for TSortedList)

Return the TObjLink object at index idx.

Definition at line 589 of file TList.cxx.

Bool_t TList::LnkCompare ( TObjLink l1,
TObjLink l2 
)
protected

Compares the objects stored in the TObjLink objects.

Depending on the flag IsAscending() the function returns true if the object in l1 <= l2 (ascending) or l2 <= l1 (descending).

Definition at line 802 of file TList.cxx.

TIterator * TList::MakeIterator ( Bool_t  dir = kIterForward) const
virtual
TObjLink * TList::NewLink ( TObject obj,
TObjLink prev = NULL 
)
protectedvirtual

Return a new TObjLink.

Definition at line 611 of file TList.cxx.

TObjLink * TList::NewOptLink ( TObject obj,
Option_t opt,
TObjLink prev = NULL 
)
protectedvirtual

Return a new TObjOptLink (a TObjLink that also stores the option).

Definition at line 622 of file TList.cxx.

Referenced by TSortedList::Add().

TList& TList::operator= ( const TList )
private
void TList::RecursiveRemove ( TObject obj)
virtual
TObject * TList::Remove ( TObject obj)
virtual

Remove object from the list.

Implements TCollection.

Reimplemented in TListOfFunctions, TListOfDataMembers, TListOfEnums, TListOfFunctionTemplates, TListOfEnumsWithLock, TViewPubDataMembers, TViewPubFunctions, and THashList.

Definition at line 674 of file TList.cxx.

Referenced by TMonitor::Activate(), TQUndoManager::Add(), TProof::AddEnvVar(), TFree::AddFree(), TProofPlayerRemote::AddOutput(), TRootBrowserLite::AddToHistory(), TProof::AddWorkers(), TGeoTrack::AnimateTrack(), TBonjourBrowser::BonjourBrowseReply(), TParallelCoordRange::BringOnTop(), TProofBenchRunCPU::BuildHistos(), TProofBenchRunDataRead::BuildHistos(), TXSockPipe::Clean(), TGCompositeFrame::Cleanup(), TProofLite::CleanupSandbox(), TParallelCoord::CleanUpSelections(), TProofServ::CleanupWaitingQueries(), TProof::ClearInputData(), TApplication::Close(), TPad::Close(), TRootBrowser::CloseTabs(), TEveGedEditor::CloseWindow(), TEntryListArray::ConvertToTEntryListArray(), TKey::Create(), TProofMgr::Create(), TMonitor::DeActivate(), TStructNodeEditor::DefaultButtonSlot(), TProof::DelEnvVar(), TKeyXML::Delete(), TKeySQL::Delete(), TParallelCoordRange::Delete(), TDirectoryFile::Delete(), TKey::Delete(), TQCommand::Delete(), TDirectory::Delete(), TLDAPEntry::DeleteAttribute(), TLegend::DeleteEntry(), TGPopupMenu::DeleteEntry(), TPad::DeleteExec(), TProofBenchRunCPU::DeleteParameters(), TProofBenchRunDataRead::DeleteParameters(), TProof::DeleteParameters(), TVolume::DeletePosition(), TSessionViewer::DeleteQuery(), TParallelCoord::DeleteSelection(), TPaveText::DeleteText(), TLDAPAttribute::DeleteValue(), TSpider::DeleteVariable(), TProof::Detach(), TXProofMgr::DetachSession(), TProofMgr::DetachSession(), TProofMgr::DiscardSession(), TQObject::Disconnect(), TPad::Draw(), TProofPlayerRemote::DrawSelect(), TGuiBldDragManager::Drop(), TTreeCache::DropBranch(), TEveGedEditor::ElementDeleted(), TProof::EnablePackage(), TParallelCoordVar::ExecuteEvent(), TProofPerfAnalysis::FileDist(), TProofPlayerLite::Finalize(), TProofPlayerRemote::Finalize(), TProof::FindUniqueSlaves(), TEfficiency::Fit(), TXSockPipe::Flush(), TMonitor::GetActive(), TAliEnFind::GetGridResult(), TProofMgr::GetListOfManagers(), TClass::GetMenuItems(), TSQLObjectDataPool::GetObjectRow(), TProofMgrLite::GetSessionLogs(), TEventIterTree::GetTrees(), TProof::GoMoreParallel(), TProof::GoParallel(), TProofBenchDataSet::Handle(), TGuiBldDragManager::HandleCopy(), TDocParser::HandleDirective(), TProof::HandleInputMessage(), TProofServ::HandleProcess(), TProofServ::HandleSocketInput(), TProofServ::HandleSubmerger(), TProofPlayerRemote::HandleTimer(), TQObject::HighPriority(), TDataMember::Init(), TProofPlayerRemote::InitPacketizer(), TPaveText::InsertLine(), TASPaletteEditor::InsertNewPalette(), TPaveText::InsertText(), TGMenuBar::Layout(), TQObject::LowPriority(), TProofBench::MakeDataSet(), TFile::MakeProject(), TPacketizerAdaptive::MarkBad(), TProof::MarkBad(), TProfileHelper::Merge(), TH2::Merge(), TH3::Merge(), TH1::Merge(), TAuthenticate::MergeHostAuthList(), TProofPlayerRemote::MergeOutput(), TTree::MergeTrees(), TProof::ModifyWorkerLists(), TGeoTabManager::MoveFrame(), TProofServ::NextQuery(), TReaperTimer::Notify(), TDataSetManagerFile::NotifyUpdate(), TSessionServerFrame::OnBtnDeleteClicked(), TSessionFrame::OnBtnDownClicked(), TSessionFrame::OnBtnRemoveClicked(), TSessionFrame::OnBtnUpClicked(), TFile::Open(), TFileMerger::OpenExcessFiles(), TGraph::operator=(), THistPainter::PaintPalette(), THistPainter::PaintStat(), THistPainter::PaintStat2(), THistPainter::PaintStat3(), THistPainter::PaintTable(), TMVA::plot_efficiencies(), TProofLite::PollForNewWorkers(), TPad::Pop(), TProof::PrepareInputDataFile(), TProofPlayerLite::Process(), RooCmdConfig::process(), TProofLite::Process(), TProofPlayer::Process(), TProofPlayerRemote::Process(), TProof::Process(), TProofServ::ProcessNext(), TFileIter::PurgeKeys(), TXProofMgr::QuerySessions(), TProofMgr::QuerySessions(), TDirectoryFile::ReadKeys(), TInspectCanvas::RecursiveRemove(), THashList::RecursiveRemove(), THStack::RecursiveRemove(), TMultiGraph::RecursiveRemove(), TProofServ::RegisterDataSets(), TGedEditor::ReinitWorkspace(), TCondor::Release(), TMonitor::Remove(), THashList::Remove(), THashTable::Remove(), TAlienCollection::Remove(), RooPlot::remove(), TDirectory::Remove(), TPacketizer::RemoveActiveNode(), TPacketizerAdaptive::RemoveActiveNode(), TGContainer::RemoveAll(), TGLBContainer::RemoveAll(), TGCompositeFrame::RemoveAll(), TGMainFrame::RemoveBind(), TProof::RemoveChain(), TGLBContainer::RemoveEntries(), TGLBContainer::RemoveEntry(), TProof::RemoveFeedback(), TGCompositeFrame::RemoveFrame(), TTree::RemoveFriend(), RooDirItem::removeFromDir(), TPluginManager::RemoveHandler(), TAuthenticate::RemoveHostAuth(), TGClient::RemoveIdleHandler(), TGContainer::RemoveItem(), TGeoManager::RemoveMaterial(), TFileCollection::RemoveMetaData(), TFileInfo::RemoveMetaData(), TGMenuBar::RemovePopup(), TQueryResultManager::RemoveQuery(), TAuthenticate::RemoveSecContext(), THashTable::RemoveSlow(), TEntryListArray::RemoveSubList(), TRootBrowser::RemoveTab(), TPacketizer::RemoveUnAllocNode(), TPacketizerAdaptive::RemoveUnAllocNode(), TGClient::RemoveUnknownWindowHandler(), TFileInfo::RemoveUrl(), TFileInfo::RemoveUrlAt(), TProcessUUID::RemoveUUID(), TParallelCoord::RemoveVariable(), TH1::Reset(), TProofBenchRunCPU::Run(), TProofBenchRunDataRead::Run(), RooStats::HypoTestInverter::RunOnePoint(), TProof::SaveInputData(), TSpectrum2::Search(), TSpectrum::Search(), TProofMonSenderML::SendSummary(), TProofMonSenderSQL::SendSummary(), TParallelCoordRange::SendToBack(), TChain::SetBranchStatus(), TFileCollection::SetDefaultMetaData(), TMonitor::SetInterest(), TAlienResult::SetKey(), TGLiteResult::SetKey(), RooPlot::SetName(), TNode::SetName(), RooDataHist::SetName(), RooDataSet::SetName(), RooFitResult::SetName(), RooPlot::SetNameTitle(), TNode::SetNameTitle(), RooDataHist::SetNameTitle(), RooDataSet::SetNameTitle(), RooFitResult::SetNameTitle(), TQueryResult::SetOutputList(), TProof::SetParameter(), TNode::SetParent(), TH1::SetStats(), TProofLite::SetupWorkers(), TPacketizerAdaptive::SplitPerHost(), TProofCondor::StartSlaves(), TProof::StartSlaves(), HFit::StoreAndDrawFitFunction(), TKeySQL::StoreKeyObject(), TProofPlayerRemote::StoreOutput(), TApplication::TApplication(), TDSet::TDSet(), TProofDrawHist::Terminate(), TProofDrawProfile::Terminate(), TProofDrawProfile2D::Terminate(), TGLSAViewer::TGLSAViewer(), TAxis3D::ToggleZoom(), TQCommand::Undo(), TProofServ::UnloadPackage(), TProof::UnloadPackageOnClient(), TGClient::UnregisterPopup(), TFileCollection::Update(), TProof::ValidateDSet(), TPacketizer::ValidateFiles(), TPacketizerAdaptive::ValidateFiles(), TDirectoryFile::WriteObjectAny(), TFile::WriteStreamerInfo(), TDirectoryFile::WriteTObject(), TApplication::~TApplication(), TClassMenuItem::~TClassMenuItem(), TEfficiency::~TEfficiency(), TEveCompositeFrame::~TEveCompositeFrame(), TGCompositeFrame::~TGCompositeFrame(), TGedFrame::~TGedFrame(), TGraph::~TGraph(), TH1::~TH1(), TMultiGraph::~TMultiGraph(), TNode::~TNode(), TParallelCoordSelect::~TParallelCoordSelect(), TProofMgr::~TProofMgr(), TQConnection::~TQConnection(), TStyleDialog::~TStyleDialog(), TStyleManager::~TStyleManager(), and TStylePreview::~TStylePreview().

TObject * TList::Remove ( TObjLink lnk)
virtual

Remove object link (and therefore the object it contains) from the list.

Reimplemented in TListOfFunctions, TListOfDataMembers, TListOfEnums, TListOfFunctionTemplates, TListOfEnumsWithLock, TViewPubDataMembers, TViewPubFunctions, and THashList.

Definition at line 714 of file TList.cxx.

void TList::RemoveLast ( )
virtual

Remove the last object of the list.

Reimplemented from TSeqCollection.

Definition at line 746 of file TList.cxx.

Referenced by TStructViewerGUI::RedoButtonSlot(), TStructViewerGUI::UndoButtonSlot(), and TFile::WriteStreamerInfo().

void TList::Sort ( Bool_t  order = kSortAscending)
virtual

Friends And Related Function Documentation

friend class TListIter
friend

Definition at line 49 of file TList.h.

Member Data Documentation

Bool_t TList::fAscending
protected

cache to speedup sequential calling of Before() and After() functions

Definition at line 55 of file TList.h.

Referenced by IsAscending(), and TSortedList::TSortedList().

TObjLink* TList::fCache
protected

pointer to last entry in linked list

Definition at line 54 of file TList.h.

Referenced by THashList::Delete().

TObjLink* TList::fFirst
protected
TObjLink* TList::fLast
protected

pointer to first entry in linked list

Definition at line 53 of file TList.h.

Referenced by TQUndoManager::Add(), THashList::Delete(), LastLink(), TListIter::Next(), TQUndoManager::Redo(), and TQCommand::Undo().


The documentation for this class was generated from the following files: