Logo ROOT   6.16/01
Reference Guide
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 virtual ~RooRefCountList() {} ;
25
26 virtual void Add(TObject* arg) { Add(arg,1) ; }
27 virtual void Add(TObject* obj, Int_t count) ;
28 virtual Bool_t Remove(TObject* obj) ;
29 virtual Bool_t RemoveAll(TObject* obj) ;
30 Int_t refCount(TObject* obj) ;
31
32protected:
33 ClassDef(RooRefCountList,1) // RooLinkedList with reference counting
34};
35
36#endif
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
#define ClassDef(name, id)
Definition: Rtypes.h:324
RooLinkedList is an collection class for internal use, storing a collection of RooAbsArg pointers in ...
Definition: RooLinkedList.h:35
A RooRefCountList is a RooLinkedList that keeps a reference counter with each added node.
Int_t refCount(TObject *obj)
Return reference count associated with 'obj'.
RooRefCountList()
Default constructor construct lists with initial hash table size of 17.
virtual void Add(TObject *arg)
virtual Bool_t RemoveAll(TObject *obj)
Remove object from list and delete object itself regardless of reference count.
virtual ~RooRefCountList()
virtual Bool_t Remove(TObject *obj)
Remove object from list and if reference count reaches zero delete object itself as well.
Mother of all ROOT objects.
Definition: TObject.h:37