Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooLinkedList.cxx
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * @(#)root/roofitcore:$Id$
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
17/**
18\file RooLinkedList.cxx
19\class RooLinkedList
20\ingroup Roofitcore
21
22Collection class for internal use, storing
23a collection of RooAbsArg pointers in a doubly linked list.
24It can optionally add a hash table to speed up random access
25in large collections
26Use RooAbsCollection derived objects for public use
27(e.g. RooArgSet or RooArgList)
28**/
29
30#include "RooLinkedList.h"
31
32#include "RooLinkedListIter.h"
33#include "RooAbsArg.h"
34#include "RooAbsData.h"
35#include "RooMsgService.h"
36
37#include "Riostream.h"
38#include "TBuffer.h"
39#include "TROOT.h"
40
41#include <algorithm>
42#include <list>
43#include <memory>
44#include <vector>
45
46
47/// \cond ROOFIT_INTERNAL
48
50 /// a chunk of memory in a pool for quick allocation of RooLinkedListElems
51 class Chunk {
52 public:
53 /// constructor
54 Chunk(Int_t sz) :
55 _sz(sz), _free(capacity()),
57 {
58 //cout << "RLLID::Chunk ctor(" << this << ") of size " << _free << " list elements" << std::endl ;
59 // initialise free list
60 for (Int_t i = 0; i < _free; ++i)
61 _chunk[i]._next = (i + 1 < _free) ? &_chunk[i + 1] : nullptr;
62 }
63 /// forbid copying
64 Chunk(const Chunk&) = delete;
65 // forbid assignment
66 Chunk& operator=(const Chunk&) = delete;
67 /// destructor
68 ~Chunk() { delete[] _chunk; }
69 /// chunk capacity
70 Int_t capacity() const
71 { return (1 << _sz) / sizeof(RooLinkedListElem); }
72 /// chunk free elements
73 Int_t free() const { return _free; }
74 /// chunk occupied elements
75 Int_t size() const { return capacity() - free(); }
76 /// return size class
77 int szclass() const { return _sz; }
78 /// chunk full?
79 bool full() const { return !free(); }
80 /// chunk empty?
81 bool empty() const { return capacity() == free(); }
82 /// return address of chunk
83 const void* chunkaddr() const { return _chunk; }
84 /// check if el is in this chunk
85 bool contains(RooLinkedListElem* el) const
86 { return _chunk <= el && el < &_chunk[capacity()]; }
87 /// pop a free element off the free list
89 {
90 if (!_freelist) return nullptr;
92 _freelist = retVal->_next;
93 retVal->_arg = nullptr; retVal->_refCount = 0;
94 retVal->_prev = retVal->_next = nullptr;
95 --_free;
96 return retVal;
97 }
98 /// push a free element back onto the freelist
100 {
101 el->_next = _freelist;
102 _freelist = el;
103 ++_free;
104 }
105 private:
106 Int_t _sz; ///< chunk capacity
107 Int_t _free; ///< length of free list
108 RooLinkedListElem* _chunk; ///< chunk from which elements come
109 RooLinkedListElem* _freelist; ///< list of free elements
110 };
111
112 class Pool {
113 private:
114 enum {
115 minsz = 7, ///< minimum chunk size (just below 1 << minsz bytes)
116 maxsz = 18, ///< maximum chunk size (just below 1 << maxsz bytes)
117 szincr = 1 ///< size class increment (sz = 1 << (minsz + k * szincr))
118 };
119 /// a chunk of memory in the pool
120 typedef RooLinkedListImplDetails::Chunk Chunk;
121 typedef std::list<Chunk*> ChunkList;
122 typedef std::map<const void*, Chunk*> AddrMap;
123 public:
124 /// constructor
125 Pool();
126 /// destructor
127 ~Pool();
128 /// acquire the pool
129 inline void acquire() { ++_refCount; }
130 /// release the pool, return true if the pool is unused
131 inline bool release() { return 0 == --_refCount; }
132 /// pop a free element out of the pool
134 /// push a free element back into the pool
136 private:
141 UInt_t _refCount = 0;
142
143 /// adjust _cursz to current largest block
145 /// find size of next chunk to allocate (in a hopefully smart way)
146 Int_t nextChunkSz() const;
147 };
148
149 Pool::Pool()
150 {
151 std::fill(_szmap, _szmap + ((maxsz - minsz) / szincr), 0);
152 }
153
154 Pool::~Pool()
155 {
156 _freelist.clear();
157 for (AddrMap::iterator it = _addrmap.begin(); _addrmap.end() != it; ++it)
158 delete it->second;
159 _addrmap.clear();
160 }
161
162 RooLinkedListElem* Pool::pop_free_elem()
163 {
164 if (_freelist.empty()) {
165 // allocate and register new chunk and put it on the freelist
166 const Int_t sz = nextChunkSz();
167 Chunk *c = new Chunk(sz);
168 _addrmap[c->chunkaddr()] = c;
169 _freelist.push_back(c);
170 updateCurSz(sz, +1);
171 }
172 // get free element from first chunk on _freelist
173 Chunk* c = _freelist.front();
174 RooLinkedListElem* retVal = c->pop_free_elem();
175 // full chunks are removed from _freelist
176 if (c->full()) _freelist.pop_front();
177 return retVal;
178 }
179
180 void Pool::push_free_elem(RooLinkedListElem* el)
181 {
182 // find from which chunk el came
184 if (!_addrmap.empty()) {
185 ci = _addrmap.lower_bound(el);
186 if (ci == _addrmap.end()) {
187 // point beyond last element, so get last one
188 ci = (++_addrmap.rbegin()).base();
189 } else {
190 // valid ci, check if we need to decrement ci because el isn't the
191 // first element in the chunk
192 if (_addrmap.begin() != ci && ci->first != el) --ci;
193 }
194 }
195 // either empty addressmap, or ci should now point to the chunk which might
196 // contain el
197 if (_addrmap.empty() || !ci->second->contains(el)) {
198 // el is not in any chunk we know about, so just delete it
199 delete el;
200 return;
201 }
202 Chunk *c = ci->second;
203 const bool moveToFreelist = c->full();
204 c->push_free_elem(el);
205 if (c->empty()) {
206 // delete chunk if all empty
207 ChunkList::iterator it = std::find( _freelist.begin(), _freelist.end(), c);
208 if (_freelist.end() != it) _freelist.erase(it);
209 _addrmap.erase(ci->first);
210 updateCurSz(c->szclass(), -1);
211 delete c;
212 } else if (moveToFreelist) {
213 _freelist.push_back(c);
214 }
215 }
216
217 void Pool::updateCurSz(Int_t sz, Int_t incr)
218 {
219 _szmap[(sz - minsz) / szincr] += incr;
220 _cursz = minsz;
221 for (int i = (maxsz - minsz) / szincr; i--; ) {
222 if (_szmap[i]) {
223 _cursz += i * szincr;
224 break;
225 }
226 }
227 }
228
229 Int_t Pool::nextChunkSz() const
230 {
231 // no chunks with space available, figure out chunk size
232 Int_t sz = _cursz;
233 if (_addrmap.empty()) {
234 // if we start allocating chunks, we start from minsz
235 sz = minsz;
236 } else {
237 if (minsz >= sz) {
238 // minimal sized chunks are always grown
239 sz = minsz + szincr;
240 } else {
241 if (1 != _addrmap.size()) {
242 // if we have more than one completely filled chunk, grow
243 sz += szincr;
244 } else {
245 // just one chunk left, try shrinking chunk size
246 sz -= szincr;
247 }
248 }
249 }
250 // clamp size to allowed range
251 if (sz > maxsz) sz = maxsz;
252 if (sz < minsz) sz = minsz;
253 return sz;
254 }
255}
256
257/// \endcond
258
260
261////////////////////////////////////////////////////////////////////////////////
262
264 _hashThresh(htsize), _size(0), _first(nullptr), _last(nullptr), _htableName(nullptr), _htableLink(nullptr), _useNptr(true)
265{
266 if (!_pool) _pool = new Pool;
267 _pool->acquire();
268}
269
270////////////////////////////////////////////////////////////////////////////////
271/// Copy constructor
272
274 TObject(other), _hashThresh(other._hashThresh), _size(0), _first(nullptr), _last(nullptr), _htableName(nullptr), _htableLink(nullptr),
275 _name(other._name),
276 _useNptr(other._useNptr)
277{
278 if (!_pool) _pool = new Pool;
279 _pool->acquire();
280 if (other._htableName) _htableName = std::make_unique<HashTableByName>(other._htableName->size()) ;
281 if (other._htableLink) _htableLink = std::make_unique<HashTableByLink>(other._htableLink->size()) ;
282 for (RooLinkedListElem* elem = other._first; elem; elem = elem->_next) {
283 Add(elem->_arg, elem->_refCount) ;
284 }
285}
286
287////////////////////////////////////////////////////////////////////////////////
288/// std::cout << "RooLinkedList::createElem(" << this << ") obj = " << obj << " elem = " << elem << std::endl ;
289
291{
292 RooLinkedListElem* ret = _pool->pop_free_elem();
293 ret->init(obj, elem);
294 return ret ;
295}
296
297////////////////////////////////////////////////////////////////////////////////
298
300{
301 elem->release() ;
302 _pool->push_free_elem(elem);
303 //delete elem ;
304}
305
306////////////////////////////////////////////////////////////////////////////////
307/// Assignment operator, copy contents from 'other'
308
310{
311 // Prevent self-assignment
312 if (&other==this) return *this ;
313
314 // remove old elements
315 Clear();
316 // Copy elements
317 for (RooLinkedListElem* elem = other._first; elem; elem = elem->_next) {
318 Add(elem->_arg) ;
319 }
320
321 return *this ;
322}
323
324////////////////////////////////////////////////////////////////////////////////
325/// Change the threshold for hash-table use to given size.
326/// If a hash table exists when this method is called, it is regenerated.
327
329{
330 if (size<0) {
331 coutE(InputArguments) << "RooLinkedList::setHashTable() ERROR size must be positive" << std::endl ;
332 return ;
333 }
334 if (size==0) {
335 if (!_htableName) {
336 // No hash table present
337 return ;
338 } else {
339 // Remove existing hash table
340 _htableName.reset();
341 _htableLink.reset();
342 }
343 } else {
344
345 // (Re)create hash tables
346 _htableName = std::make_unique<HashTableByName>(size) ;
347 _htableLink = std::make_unique<HashTableByLink>(size) ;
348
349 // Fill hash table with existing entries
351 while(ptr) {
352 _htableName->insert({ptr->_arg->GetName(), ptr->_arg}) ;
353 _htableLink->insert({ptr->_arg, reinterpret_cast<TObject*>(ptr)}) ;
354 ptr = ptr->_next ;
355 }
356 }
357}
358
359////////////////////////////////////////////////////////////////////////////////
360/// Destructor
361
363{
364 // Required since we overload TObject::Hash.
366
367 _htableName.reset();
368 _htableLink.reset();
369
370 Clear() ;
371 if (_pool->release()) {
372 delete _pool;
373 _pool = nullptr;
374 }
375}
376
377////////////////////////////////////////////////////////////////////////////////
378/// Find the element link containing the given object
379
381{
382 if (_htableLink) {
383 auto found = _htableLink->find(arg);
384 if (found == _htableLink->end()) return nullptr;
385 return const_cast<RooLinkedListElem *>(reinterpret_cast<RooLinkedListElem const*>(found->second));
386 }
387
389 while(ptr) {
390 if (ptr->_arg == arg) {
391 return ptr ;
392 }
393 ptr = ptr->_next ;
394 }
395 return nullptr ;
396
397}
398
399////////////////////////////////////////////////////////////////////////////////
400/// Insert object into collection with given reference count value
401
402void RooLinkedList::Add(TObject* arg, Int_t refCount)
403{
404 if (!arg) return ;
405
406 // Only use RooAbsArg::namePtr() in lookup-by-name if all elements have it
407 if (!dynamic_cast<RooAbsArg*>(arg) && !dynamic_cast<RooAbsData*>(arg)) _useNptr = false;
408
409 // Add to hash table
410 if (_htableName) {
411
412 // Expand capacity of hash table if #entries>#slots
413 if (static_cast<size_t>(_size) > _htableName->size()) {
415 }
416
417 } else if (_hashThresh>0 && _size>_hashThresh) {
418
420 }
421
422 if (_last) {
423 // Append element at end of list
424 _last = createElement(arg,_last) ;
425 } else {
426 // Append first element, set first,last
427 _last = createElement(arg) ;
428 _first=_last ;
429 }
430
431 if (_htableName){
432 //cout << "storing link " << _last << " with hash arg " << arg << std::endl ;
433 _htableName->insert({arg->GetName(), arg});
434 _htableLink->insert({arg, reinterpret_cast<TObject *>(_last)});
435 }
436
437 _size++ ;
438 _last->_refCount = refCount ;
439
440 _at.push_back(_last);
441}
442
443////////////////////////////////////////////////////////////////////////////////
444/// Remove object from collection
445
447{
448 // Find link element
450 if (!elem) return false ;
451
452 // Remove from hash table
453 if (_htableName) {
454 _htableName->erase(arg->GetName()) ;
455 }
456 if (_htableLink) {
457 _htableLink->erase(arg) ;
458 }
459
460 // Update first,last if necessary
461 if (elem==_first) _first=elem->_next ;
462 if (elem==_last) _last=elem->_prev ;
463
464 // Remove from index array
465 auto at_elem_it = std::find(_at.begin(), _at.end(), elem);
466 _at.erase(at_elem_it);
467
468 // Delete and shrink
469 _size-- ;
471 return true ;
472}
473
474////////////////////////////////////////////////////////////////////////////////
475/// If one of the TObject we have a referenced to is deleted, remove the
476/// reference.
477
479{
480 Remove(obj); // This is a nop if the obj is not in the collection.
481}
482
483////////////////////////////////////////////////////////////////////////////////
484/// Return object stored in sequential position given by index.
485/// If index is out of range, a null pointer is returned.
486
488{
489 // Check range
490 if (index<0 || index>=_size) return nullptr ;
491
492 return _at[index]->_arg;
493//
494//
495// // Walk list
496// RooLinkedListElem* ptr = _first;
497// while(index--) ptr = ptr->_next ;
498//
499// // Return arg
500// return ptr->_arg ;
501}
502
503////////////////////////////////////////////////////////////////////////////////
504/// Replace object 'oldArg' in collection with new object 'newArg'.
505/// If 'oldArg' is not found in collection false is returned
506
508{
509 // Find existing element and replace arg
511 if (!elem) return false ;
512
513 if (_htableName) {
514 _htableName->erase(oldArg->GetName());
515 _htableName->insert({newArg->GetName(), newArg});
516 }
517 if (_htableLink) {
518 // Link is hashed by contents and may change slot in hash table
519 _htableLink->erase(oldArg) ;
520 _htableLink->insert({newArg, reinterpret_cast<TObject*>(elem)}) ;
521 }
522
523 elem->_arg = const_cast<TObject*>(newArg);
524 return true ;
525}
526
527////////////////////////////////////////////////////////////////////////////////
528/// Return pointer to object with given name. If no such object
529/// is found return a null pointer.
530
532{
533 return find(name) ;
534}
535
536////////////////////////////////////////////////////////////////////////////////
537/// Find object in list. If list contains object return
538/// (same) pointer to object, otherwise return null pointer
539
541{
542 RooLinkedListElem *elem = findLink(const_cast<TObject*>(obj));
543 return elem ? elem->_arg : nullptr ;
544}
545
546////////////////////////////////////////////////////////////////////////////////
547/// Remove all elements from collection
548
550{
551 for (RooLinkedListElem *elem = _first, *next; elem; elem = next) {
552 next = elem->_next ;
554 }
555 _first = nullptr ;
556 _last = nullptr ;
557 _size = 0 ;
558
559 if (_htableName) {
560 _htableName = std::make_unique<HashTableByName>(_htableName->size()) ;
561 }
562 if (_htableLink) {
563 _htableLink = std::make_unique<HashTableByLink>(_htableLink->size()) ;
564 }
565
566 // empty index array
567 _at.clear();
568}
569
570////////////////////////////////////////////////////////////////////////////////
571/// Remove all elements in collection and delete all elements
572/// NB: Collection does not own elements, this function should
573/// be used judiciously by caller.
574
576{
578 while(elem) {
579 RooLinkedListElem* next = elem->_next ;
580 delete elem->_arg ;
582 elem = next ;
583 }
584 _first = nullptr ;
585 _last = nullptr ;
586 _size = 0 ;
587
588 if (_htableName) {
589 _htableName = std::make_unique<HashTableByName>(_htableName->size()) ;
590 }
591 if (_htableLink) {
592 _htableLink = std::make_unique<HashTableByLink>(_htableLink->size()) ;
593 }
594
595 // empty index array
596 _at.clear();
597}
598
599////////////////////////////////////////////////////////////////////////////////
600/// Return pointer to object with given name in collection.
601/// If no such object is found, return null pointer.
602
604{
605
606 if (_htableName) {
607 auto found = _htableName->find(name);
608 TObject *a = found != _htableName->end() ? const_cast<TObject*>(found->second) : nullptr;
609 // RooHashTable::find could return false negative if element was renamed to 'name'.
610 // The list search means it won't return false positive, so can return here.
611 if (a) return a;
612 if (_useNptr) {
613 // See if it might have been renamed
615 //cout << "RooLinkedList::find: possibly renamed '" << name << "', kRenamedArg=" << (nptr&&nptr->TestBit(RooNameReg::kRenamedArg)) << std::endl;
616 if (nptr && nptr->TestBit(RooNameReg::kRenamedArg)) {
618 while(ptr) {
619 if ( (dynamic_cast<RooAbsArg*>(ptr->_arg) && static_cast<RooAbsArg*>(ptr->_arg)->namePtr() == nptr) ||
620 (dynamic_cast<RooAbsData*>(ptr->_arg) && static_cast<RooAbsData*>(ptr->_arg)->namePtr() == nptr)) {
621 return ptr->_arg ;
622 }
623 ptr = ptr->_next ;
624 }
625 }
626 return nullptr ;
627 }
628 //cout << "RooLinkedList::find: possibly renamed '" << name << "'" << std::endl;
629 }
630
632
633 // The penalty for RooNameReg lookup seems to be outweighted by the faster search
634 // when the size list is longer than ~7, but let's be a bit conservative.
635 if (_useNptr && _size>9) {
637 if (!nptr) return nullptr;
638
639 while(ptr) {
640 if ( (dynamic_cast<RooAbsArg*>(ptr->_arg) && static_cast<RooAbsArg*>(ptr->_arg)->namePtr() == nptr) ||
641 (dynamic_cast<RooAbsData*>(ptr->_arg) && static_cast<RooAbsData*>(ptr->_arg)->namePtr() == nptr)) {
642 return ptr->_arg ;
643 }
644 ptr = ptr->_next ;
645 }
646 return nullptr ;
647 }
648
649 while(ptr) {
650 if (!strcmp(ptr->_arg->GetName(),name)) {
651 return ptr->_arg ;
652 }
653 ptr = ptr->_next ;
654 }
655 return nullptr ;
656}
657
658////////////////////////////////////////////////////////////////////////////////
659/// Return pointer to object with given name in collection.
660/// If no such object is found, return null pointer.
661
663{
664 if (_htableName) {
665 RooAbsArg* a = const_cast<RooAbsArg *>(static_cast<RooAbsArg const*>((*_htableName)[arg->GetName()]));
666 if (a) return a;
667 //cout << "RooLinkedList::findArg: possibly renamed '" << arg->GetName() << "', kRenamedArg=" << arg->namePtr()->TestBit(RooNameReg::kRenamedArg) << std::endl;
668 // See if it might have been renamed
669 if (!arg->namePtr()->TestBit(RooNameReg::kRenamedArg)) return nullptr;
670 }
671
673 const TNamed* nptr = arg->namePtr();
674 while(ptr) {
675 if ((static_cast<RooAbsArg*>(ptr->_arg))->namePtr() == nptr) {
676 return static_cast<RooAbsArg*>(ptr->_arg) ;
677 }
678 ptr = ptr->_next ;
679 }
680 return nullptr ;
681}
682
683////////////////////////////////////////////////////////////////////////////////
684/// Return position of given object in list. If object
685/// is not contained in list, return -1
686
688{
690 Int_t idx(0) ;
691 while(ptr) {
692 if (ptr->_arg==arg) return idx ;
693 ptr = ptr->_next ;
694 idx++ ;
695 }
696 return -1 ;
697}
698
699////////////////////////////////////////////////////////////////////////////////
700/// Return position of given object in list. If object
701/// is not contained in list, return -1
702
704{
706 Int_t idx(0) ;
707 while(ptr) {
708 if (strcmp(ptr->_arg->GetName(),name)==0) return idx ;
709 ptr = ptr->_next ;
710 idx++ ;
711 }
712 return -1 ;
713}
714
715////////////////////////////////////////////////////////////////////////////////
716/// Print contents of list, defers to Print() function
717/// of contained objects
718
719void RooLinkedList::Print(const char* opt) const
720{
722 while(elem) {
723 std::cout << elem->_arg << " : " ;
724 elem->_arg->Print(opt) ;
725 elem = elem->_next ;
726 }
727}
728
729////////////////////////////////////////////////////////////////////////////////
730/// Create a TIterator for this list.
731/// \param forward Run in forward direction (default).
732/// \return Pointer to a TIterator. The caller owns the pointer.
733
735 auto iterImpl = std::make_unique<RooLinkedListIterImpl>(this, forward);
736 return new RooLinkedListIter(std::move(iterImpl));
737}
738
739////////////////////////////////////////////////////////////////////////////////
740/// Create an iterator for this list.
741/// \param forward Run in forward direction (default).
742/// \return RooLinkedListIter (subclass of TIterator) over this list
743
745 auto iterImpl = std::make_unique<RooLinkedListIterImpl>(this, forward);
746 return RooLinkedListIter(std::move(iterImpl));
747}
748
749////////////////////////////////////////////////////////////////////////////////
750/// Create a one-time-use forward iterator for this list.
751/// \return RooFIter that only supports next()
752
754 auto iterImpl = std::make_unique<RooFIterForLinkedList>(this);
755 return RooFIter(std::move(iterImpl));
756}
757
759 return {this, true};
760}
761
763 return {this, nullptr, true};
764}
765
767 return {this, false};
768}
769
771 return {this, nullptr, false};
772}
773
774////////////////////////////////////////////////////////////////////////////////
775
777{
780
781 // rebuild index array
783 for (auto it = _at.begin(); it != _at.end(); ++it, elem = elem->_next) {
784 *it = elem;
785 }
786}
787
788////////////////////////////////////////////////////////////////////////////////
789/// length 0, 1 lists are sorted
790
791template <bool ascending>
793 RooLinkedListElem* l1, const unsigned sz, RooLinkedListElem** tail)
794{
795 if (!l1 || sz < 2) {
796 // if desired, update the tail of the (newly merged sorted) list
797 if (tail) *tail = l1;
798 return l1;
799 }
800 if (sz <= 16) {
801 // for short lists, we sort in an array
802 std::vector<RooLinkedListElem *> arr(sz, nullptr);
803 for (int i = 0; l1; l1 = l1->_next, ++i) arr[i] = l1;
804 // straight insertion sort
805 {
806 int i = 1;
807 do {
808 int j = i - 1;
809 RooLinkedListElem *tmp = arr[i];
810 while (0 <= j) {
811 const bool inOrder = ascending ?
812 (tmp->_arg->Compare(arr[j]->_arg) <= 0) :
813 (arr[j]->_arg->Compare(tmp->_arg) <= 0);
814 if (!inOrder) break;
815 arr[j + 1] = arr[j];
816 --j;
817 }
818 arr[j + 1] = tmp;
819 ++i;
820 } while (int(sz) != i);
821 }
822 // link elements in array
823 arr[0]->_prev = arr[sz - 1]->_next = nullptr;
824 for (int i = 0; i < int(sz - 1); ++i) {
825 arr[i]->_next = arr[i + 1];
826 arr[i + 1]->_prev = arr[i];
827 }
828 if (tail) *tail = arr[sz - 1];
829 return arr[0];
830 }
831 // find middle of l1, and let a second list l2 start there
833 for (RooLinkedListElem *end = l2; end->_next; end = end->_next) {
834 end = end->_next;
835 l2 = l2->_next;
836 if (!end->_next) break;
837 }
838 // disconnect the two sublists
839 l2->_prev->_next = nullptr;
840 l2->_prev = nullptr;
841 // sort the two sublists (only recurse if we have to)
842 if (l1->_next) l1 = mergesort_impl<ascending>(l1, sz / 2);
843 if (l2->_next) l2 = mergesort_impl<ascending>(l2, sz - sz / 2);
844 // merge the two (sorted) sublists
845 // l: list head, t: list tail of merged list
846 RooLinkedListElem *l = (ascending ? (l1->_arg->Compare(l2->_arg) <= 0) :
847 (l2->_arg->Compare(l1->_arg) <= 0)) ? l1 : l2;
848 RooLinkedListElem *t = l;
849 if (l == l2) {
850 RooLinkedListElem* tmp = l1;
851 l1 = l2;
852 l2 = tmp;
853 }
854 l1 = l1->_next;
855 while (l1 && l2) {
856 const bool inOrder = ascending ? (l1->_arg->Compare(l2->_arg) <= 0) :
857 (l2->_arg->Compare(l1->_arg) <= 0);
858 if (!inOrder) {
859 // insert l2 just before l1
860 if (l1->_prev) {
861 l1->_prev->_next = l2;
862 l2->_prev = l1->_prev;
863 }
864 // swap l2 and l1
865 RooLinkedListElem *tmp = l1;
866 l1 = l2;
867 l2 = tmp;
868 }
869 // move forward in l1
870 t = l1;
871 l1 = l1->_next;
872 }
873 // attach l2 at t
874 if (l2) {
875 l2->_prev = t;
876 if (t) t->_next = l2;
877 }
878 // if desired, update the tail of the (newly merged sorted) list
879 if (tail) {
880 for (l1 = t; l1; l1 = l1->_next) t = l1;
881 *tail = t;
882 }
883 // return the head of the sorted list
884 return l;
885}
886// void Roo1DTable::Streamer(TBuffer &R__b)
887// {
888// // Stream an object of class Roo1DTable.
889
890// if (R__b.IsReading()) {
891// R__b.ReadClassBuffer(Roo1DTable::Class(),this);
892// } else {
893// R__b.WriteClassBuffer(Roo1DTable::Class(),this);
894// }
895// }
896
897////////////////////////////////////////////////////////////////////////////////
898/// Custom streaming handling schema evolution w.r.t past implementations
899
901{
902 if (R__b.IsReading()) {
903
904 Version_t v = R__b.ReadVersion();
905 //R__b.ReadVersion();
907
908 Int_t size ;
909 TObject* arg ;
910
911 R__b >> size ;
912 while(size--) {
913 R__b >> arg ;
914 Add(arg) ;
915 }
916
917 if (v > 1 && v < 4) {
918 R__b >> _name;
919 }
920
921 } else {
922 R__b.WriteVersion(RooLinkedList::IsA());
924 R__b << _size ;
925
927 while(ptr) {
928 R__b << ptr->_arg ;
929 ptr = ptr->_next ;
930 }
931
932 R__b << _name ;
933 }
934}
#define c(i)
Definition RSha256.hxx:101
#define a(i)
Definition RSha256.hxx:99
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
#define coutE(a)
int Int_t
Definition RtypesCore.h:45
short Version_t
Definition RtypesCore.h:65
const char Option_t
Definition RtypesCore.h:66
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t index
char name[80]
Definition TGX11.cxx:110
Binding & operator=(OUT(*fun)(void))
#define free
Definition civetweb.c:1539
const_iterator begin() const
const_iterator end() const
Common abstract base class for objects that represent a value and a "shape" in RooFit.
Definition RooAbsArg.h:77
const TNamed * namePtr() const
De-duplicated pointer to this object's name.
Definition RooAbsArg.h:504
Abstract base class for binned and unbinned datasets.
Definition RooAbsData.h:57
const TNamed * namePtr() const
De-duplicated pointer to this object's name.
Definition RooAbsData.h:299
A one-time forward iterator working on RooLinkedList or RooAbsCollection.
Link element for the RooLinkedList class.
TObject * _arg
Link to contents.
Int_t _refCount
! Reference count
RooLinkedListElem * _next
Link to next element in list.
Implementation of the actual iterator on RooLinkedLists.
A wrapper around TIterator derivatives.
Collection class for internal use, storing a collection of RooAbsArg pointers in a doubly linked list...
RooLinkedListIterImpl rend() const
TObject * At(int index) const
Return object stored in sequential position given by index.
RooLinkedListIter iterator(bool forward=true) const
Create an iterator for this list.
static Pool * _pool
shared memory pool for allocation of RooLinkedListElems
~RooLinkedList() override
Destructor.
RooLinkedListIterImpl end() const
RooLinkedListImplDetails::Pool Pool
memory pool for quick allocation of RooLinkedListElems
std::vector< RooLinkedListElem * > _at
! index list for quick index through At
std::unique_ptr< HashTableByName > _htableName
! Hash table by name
void RecursiveRemove(TObject *obj) override
If one of the TObject we have a referenced to is deleted, remove the reference.
bool Replace(const TObject *oldArg, const TObject *newArg)
Replace object 'oldArg' in collection with new object 'newArg'.
RooLinkedList(Int_t htsize=0)
void Print(const char *opt) const override
Print contents of list, defers to Print() function of contained objects.
std::unique_ptr< HashTableByLink > _htableLink
! Hash table by link pointer
RooFIter fwdIterator() const
Create a one-time-use forward iterator for this list.
void deleteElement(RooLinkedListElem *)
RooLinkedListElem * findLink(const TObject *arg) const
Find the element link containing the given object.
void Streamer(TBuffer &) override
Custom streaming handling schema evolution w.r.t past implementations.
RooLinkedListIterImpl rbegin() const
std::size_t size() const
TClass * IsA() const override
Int_t _hashThresh
Size threshold for hashing.
RooLinkedListElem * createElement(TObject *obj, RooLinkedListElem *elem=nullptr)
std::cout << "RooLinkedList::createElem(" << this << ") obj = " << obj << " elem = " << elem << std::...
RooAbsArg * findArg(const RooAbsArg *) const
Return pointer to object with given name in collection.
void Delete(Option_t *o=nullptr) override
Remove all elements in collection and delete all elements NB: Collection does not own elements,...
TObject * find(const char *name) const
Return pointer to object with given name in collection.
RooLinkedList & operator=(const RooLinkedList &other)
Assignment operator, copy contents from 'other'.
virtual void Add(TObject *arg)
Int_t _size
Current size of list.
RooLinkedListIterImpl begin() const
RooLinkedListElem * _last
! Link to last element of list
void setHashTableSize(Int_t size)
Change the threshold for hash-table use to given size.
TObject * FindObject(const char *name) const override
Return pointer to object with given name.
RooLinkedListElem * _first
! Link to first element of list
TIterator * MakeIterator(bool forward=true) const
Create a TIterator for this list.
void Clear(Option_t *o=nullptr) override
Remove all elements from collection.
static RooLinkedListElem * mergesort_impl(RooLinkedListElem *l1, const unsigned sz, RooLinkedListElem **tail=nullptr)
length 0, 1 lists are sorted
void Sort(bool ascend=true)
Int_t IndexOf(const char *name) const
Return position of given object in list.
virtual bool Remove(TObject *arg)
Remove object from collection.
static const TNamed * known(const char *stringPtr)
If the name is already known, return its TNamed pointer. Otherwise return 0 (don't register the name)...
@ kRenamedArg
TNamed flag to indicate that some RooAbsArg has been renamed (flag set in new name)
Definition RooNameReg.h:46
Buffer base class used for serializing objects.
Definition TBuffer.h:43
Iterator abstract base class.
Definition TIterator.h:30
The TNamed class is the base class for all named ROOT classes.
Definition TNamed.h:29
const char * GetName() const override
Returns name of object.
Definition TNamed.h:47
Mother of all ROOT objects.
Definition TObject.h:41
virtual const char * GetName() const
Returns name of object.
Definition TObject.cxx:456
virtual void Streamer(TBuffer &)
Stream an object of class TObject.
Definition TObject.cxx:906
void CallRecursiveRemoveIfNeeded(TObject &obj)
call RecursiveRemove for obj if gROOT is valid and obj.TestBit(kMustCleanup) is true.
Definition TROOT.h:395
TLine l
Definition textangle.C:4