Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooRefCountList.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooRefCountList.h,v 1.7 2007/05/11 09:11:30 verkerke Exp $
5 * Authors: *
6 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8 * *
9 * Copyright (c) 2000-2005, Regents of the University of California *
10 * and Stanford University. All rights reserved. *
11 * *
12 * Redistribution and use in source and binary forms, *
13 * with or without modification, are permitted according to the terms *
14 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15 *****************************************************************************/
16#ifndef ROO_REF_COUNT_LIST
17#define ROO_REF_COUNT_LIST
18
19#include "RooLinkedList.h"
20
22public:
24 ~RooRefCountList() override {} ;
25
26 void Add(TObject* arg) override { Add(arg,1) ; }
27 void Add(TObject* obj, Int_t count) override ;
28 bool Remove(TObject* obj) override ;
29 virtual bool RemoveAll(TObject* obj) ;
30 Int_t refCount(TObject* obj) const;
31
32protected:
33 ClassDefOverride(RooRefCountList,1) // RooLinkedList with reference counting
34};
35
36#endif
int Int_t
Definition RtypesCore.h:45
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
RooLinkedList is an collection class for internal use, storing a collection of RooAbsArg pointers in ...
A RooRefCountList is a RooLinkedList that keeps a reference counter with each added node.
Int_t refCount(TObject *obj) const
Return reference count associated with 'obj'.
RooRefCountList()
Default constructor construct lists with initial hash table size of 17.
void Add(TObject *arg) override
bool Remove(TObject *obj) override
Remove object from list and if reference count reaches zero delete object itself as well.
~RooRefCountList() override
virtual bool RemoveAll(TObject *obj)
Remove object from list and delete object itself regardless of reference count.
Mother of all ROOT objects.
Definition TObject.h:41