Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooAbsCollection.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooAbsCollection.h,v 1.26 2007/08/09 19:55:47 wouter 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_ABS_COLLECTION
17#define ROO_ABS_COLLECTION
18
19#include "TObject.h"
20#include "TString.h"
21#include "RooAbsArg.h"
22#include "RooPrintable.h"
23#include "RooCmdArg.h"
24#include "RooLinkedListIter.h"
25
26// The range casts are not used in this file, but if you want to work with
27// RooFit collections you also want to have static_range_cast and
28// dynamic_range_cast available without including RangeCast.h every time.
29#include "ROOT/RRangeCast.hxx"
30
31#include "ROOT/RSpan.hxx"
32
33#include <string>
34#include <unordered_map>
35#include <vector>
36#include <type_traits>
37#include <memory>
38
39
40// To make ROOT::RangeStaticCast available under the name static_range_cast.
41template <typename T, typename Range_t>
43{
44 return ROOT::RangeStaticCast<T>(std::forward<Range_t>(coll));
45}
46
47
48// To make ROOT::RangeDynCast available under the dynamic_range_cast.
49template <typename T, typename Range_t>
51{
52 return ROOT::RangeDynCast<T>(std::forward<Range_t>(coll));
53}
54
55
56class RooCmdArg;
57
58namespace RooFit {
59namespace Detail {
60struct HashAssistedFind;
61}
62}
63
64class RooAbsCollection : public TObject, public RooPrintable {
65public:
66 using Storage_t = std::vector<RooAbsArg*>;
67 using const_iterator = Storage_t::const_iterator;
68
69
70 // Constructors, assignment etc.
72 RooAbsCollection(const char *name);
73 virtual TObject* clone(const char* newname) const = 0 ;
74 virtual TObject* create(const char* newname) const = 0 ;
75 virtual TObject* Clone(const char* newname=0) const {
76 return clone(newname?newname:GetName()) ;
77 }
78 virtual ~RooAbsCollection();
79
80 // Create a copy of an existing list. New variables cannot be added
81 // to a copied list. The variables in the copied list are independent
82 // of the original variables.
83 RooAbsCollection(const RooAbsCollection& other, const char *name="");
85
86 void assign(const RooAbsCollection& other) const;
87 RooAbsCollection &assignValueOnly(const RooAbsCollection& other, bool forceIfSizeOne=false);
88 void assignFast(const RooAbsCollection& other, bool setValDirty=true) const;
89
90 // Move constructor
92
93 // Copy list and contents (and optionally 'deep' servers)
94 RooAbsCollection *snapshot(Bool_t deepCopy=kTRUE) const ;
96
97 /// Set the size at which the collection will automatically start using an extra
98 /// lookup table instead of performing a linear search.
99 void setHashTableSize(Int_t number) {
101 }
102 /// Query the size at which the collection will automatically start using an extra
103 /// lookup table instead of performing a linear search.
106 }
107
108 /// Const access to the underlying stl container.
109 Storage_t const& get() const { return _list; }
110
111 // List content management
112 virtual Bool_t add(const RooAbsArg& var, Bool_t silent=kFALSE) ;
113 virtual Bool_t addOwned(RooAbsArg& var, Bool_t silent=kFALSE);
114 bool addOwned(std::unique_ptr<RooAbsArg> var, bool silent=false);
115 virtual RooAbsArg *addClone(const RooAbsArg& var, Bool_t silent=kFALSE) ;
116 virtual Bool_t replace(const RooAbsArg& var1, const RooAbsArg& var2) ;
117 virtual Bool_t remove(const RooAbsArg& var, Bool_t silent=kFALSE, Bool_t matchByNameOnly=kFALSE) ;
118 virtual void removeAll() ;
119
120 template<typename Iterator_t,
121 typename value_type = typename std::remove_pointer<typename std::iterator_traits<Iterator_t>::value_type>,
122 typename = std::enable_if<std::is_convertible<const value_type*, const RooAbsArg*>::value> >
123 bool add(Iterator_t beginIt, Iterator_t endIt, bool silent=false) {
124 bool result = false ;
125 _list.reserve(_list.size() + std::distance(beginIt, endIt));
126 for (auto it = beginIt; it != endIt; ++it) {
127 result |= add(**it,silent);
128 }
129 return result;
130 }
131 ////////////////////////////////////////////////////////////////////////////////
132 /// Add a collection of arguments to this collection by calling add()
133 /// for each element in the source collection
134 bool add(const RooAbsCollection& list, bool silent=kFALSE) {
135 return add(list._list.begin(), list._list.end(), silent);
136 }
137 virtual bool addOwned(const RooAbsCollection& list, bool silent=false);
138 bool addOwned(RooAbsCollection&& list, bool silent=false);
139 virtual void addClone(const RooAbsCollection& list, Bool_t silent=kFALSE);
140 Bool_t replace(const RooAbsCollection &other);
141 Bool_t remove(const RooAbsCollection& list, Bool_t silent=kFALSE, Bool_t matchByNameOnly=kFALSE) ;
142 template<class forwardIt>
143 void remove(forwardIt rangeBegin, forwardIt rangeEnd, Bool_t silent = kFALSE, Bool_t matchByNameOnly = kFALSE) {
144 for (forwardIt it = rangeBegin; it != rangeEnd; ++it) {
145 static_assert(std::is_same<
146 typename std::iterator_traits<forwardIt>::value_type,
147 RooAbsArg*>::value, "Can only remove lists of RooAbsArg*.");
148 auto castedElm = static_cast<RooAbsArg*>(*it);
149 remove(*castedElm, silent, matchByNameOnly);
150 }
151 }
152
153 // Utilities functions when used as configuration object
154 Double_t getRealValue(const char* name, Double_t defVal=0, Bool_t verbose=kFALSE) const ;
155 const char* getCatLabel(const char* name, const char* defVal="", Bool_t verbose=kFALSE) const ;
156 Int_t getCatIndex(const char* name, Int_t defVal=0, Bool_t verbose=kFALSE) const ;
157 const char* getStringValue(const char* name, const char* defVal="", Bool_t verbose=kFALSE) const ;
158 Bool_t setRealValue(const char* name, Double_t newVal=0, Bool_t verbose=kFALSE) ;
159 Bool_t setCatLabel(const char* name, const char* newVal="", Bool_t verbose=kFALSE) ;
160 Bool_t setCatIndex(const char* name, Int_t newVal=0, Bool_t verbose=kFALSE) ;
161 Bool_t setStringValue(const char* name, const char* newVal="", Bool_t verbose=kFALSE) ;
162
163 // Group operations on AbsArgs
164 void setAttribAll(const Text_t* name, Bool_t value=kTRUE) ;
165
166 // List search methods
167 RooAbsArg *find(const char *name) const ;
168 RooAbsArg *find(const RooAbsArg&) const ;
169
170 /// Find object by name in the collection
171 TObject* FindObject(const char* name) const { return find(name); }
172
173 /// Find object in the collection, Note: matching by object name, like the find() method
174 TObject* FindObject(const TObject* obj) const { auto arg = dynamic_cast<const RooAbsArg*>(obj); return (arg) ? find(*arg) : nullptr; }
175
176 /// Check if collection contains an argument with the same name as var.
177 /// To check for a specific instance, use containsInstance().
178 Bool_t contains(const RooAbsArg& var) const {
179 return find(var) != nullptr;
180 }
181 /// Check if this exact instance is in this collection.
182 virtual Bool_t containsInstance(const RooAbsArg& var) const {
183 return std::find(_list.begin(), _list.end(), &var) != _list.end();
184 }
185 RooAbsCollection* selectByAttrib(const char* name, Bool_t value) const ;
186 bool selectCommon(const RooAbsCollection& refColl, RooAbsCollection& outColl) const ;
187 RooAbsCollection* selectCommon(const RooAbsCollection& refColl) const ;
188 RooAbsCollection* selectByName(const char* nameList, Bool_t verbose=kFALSE) const ;
189 Bool_t equals(const RooAbsCollection& otherColl) const ;
190 bool hasSameLayout(const RooAbsCollection& other) const;
191
192 template<typename Iterator_t,
193 typename value_type = typename std::remove_pointer<typename std::iterator_traits<Iterator_t>::value_type>,
194 typename = std::enable_if<std::is_convertible<const value_type*, const RooAbsArg*>::value> >
195 bool overlaps(Iterator_t otherCollBegin, Iterator_t otherCollEnd) const {
196 for (auto it = otherCollBegin; it != otherCollEnd; ++it) {
197 if (find(**it)) {
198 return true ;
199 }
200 }
201 return false ;
202 }
203
204 ////////////////////////////////////////////////////////////////////////////////
205 /// Check if this and other collection have common entries
206 bool overlaps(const RooAbsCollection& otherColl) const {
207 return overlaps(otherColl._list.begin(), otherColl._list.end());
208 }
209
210 /// TIterator-style iteration over contained elements.
211 /// \note These iterators are slow. Use begin() and end() or
212 /// range-based for loop instead.
214 R__SUGGEST_ALTERNATIVE("begin(), end() and range-based for loops.") {
215 // Create and return an iterator over the elements in this collection
216 return new RooLinkedListIter(makeLegacyIterator(dir));
217 }
218
219 /// TIterator-style iteration over contained elements.
220 /// \note This iterator is slow. Use begin() and end() or range-based for loop instead.
222 R__SUGGEST_ALTERNATIVE("begin(), end() and range-based for loops.") {
224 }
225
226 /// One-time forward iterator.
227 /// \note Use begin() and end() or range-based for loop instead.
229 R__SUGGEST_ALTERNATIVE("begin(), end() and range-based for loops.") {
231 }
232
234 return _list.begin();
235 }
236
238 return _list.end();
239 }
240
241 Storage_t::const_reverse_iterator rbegin() const {
242 return _list.rbegin();
243 }
244
245 Storage_t::const_reverse_iterator rend() const {
246 return _list.rend();
247 }
248
249 Storage_t::size_type size() const {
250 return _list.size();
251 }
252
253 bool empty() const {
254 return _list.empty();
255 }
256
257 void reserve(Storage_t::size_type count) {
258 _list.reserve(count);
259 }
260
261 /// Clear contents. If the collection is owning, it will also delete the contents.
262 void clear() {
263 removeAll();
264 }
265
266 inline Int_t getSize() const {
267 // Return the number of elements in the collection
268 return _list.size();
269 }
270
271 inline RooAbsArg *first() const {
272 // Return the first element in this collection
273 return _list.front();
274 }
275
276 RooAbsArg * operator[](Storage_t::size_type i) const {
277 return _list[i];
278 }
279
280
281 /// Returns index of given arg, or -1 if arg is not in the collection.
282 inline Int_t index(const RooAbsArg* arg) const {
283 auto item = std::find(_list.begin(), _list.end(), arg);
284 return item != _list.end() ? item - _list.begin() : -1;
285 }
286
287 /// Returns index of given arg, or -1 if arg is not in the collection.
288 inline Int_t index(const RooAbsArg& arg) const {
289 return index(&arg);
290 }
291
292 Int_t index(const char* name) const;
293
294 inline virtual void Print(Option_t *options= 0) const {
295 // Printing interface (human readable)
297 }
298 std::string contentsString() const ;
299
300
301 virtual void printName(std::ostream& os) const ;
302 virtual void printTitle(std::ostream& os) const ;
303 virtual void printClassName(std::ostream& os) const ;
304 virtual void printValue(std::ostream& os) const ;
305 virtual void printMultiline(std::ostream& os, Int_t contents, Bool_t verbose=kFALSE, TString indent="") const ;
306
307 virtual Int_t defaultPrintContents(Option_t* opt) const ;
308
309 // Latex printing methods
310 void printLatex(const RooCmdArg& arg1=RooCmdArg(), const RooCmdArg& arg2=RooCmdArg(),
311 const RooCmdArg& arg3=RooCmdArg(), const RooCmdArg& arg4=RooCmdArg(),
312 const RooCmdArg& arg5=RooCmdArg(), const RooCmdArg& arg6=RooCmdArg(),
313 const RooCmdArg& arg7=RooCmdArg(), const RooCmdArg& arg8=RooCmdArg()) const ;
314 void printLatex(std::ostream& ofs, Int_t ncol, const char* option="NEYU", Int_t sigDigit=1,
315 const RooLinkedList& siblingLists=RooLinkedList(), const RooCmdArg* formatCmd=0) const ;
316
317 void setName(const char *name) {
318 // Set name of collection
319 _name= name;
320 }
321 const char* GetName() const {
322 // Return namer of collection
323 return _name.Data() ;
324 }
325 Bool_t isOwning() const {
326 // Does collection own contents?
327 return _ownCont ;
328 }
329
330 Bool_t allInRange(const char* rangeSpec) const ;
331
332 void dump() const ;
333
336
337 void sort(Bool_t reverse = false);
338 void sortTopologically();
339
340 virtual void RecursiveRemove(TObject *obj);
341
342 void useHashMapForFind(bool flag) const;
343
344 // For use in the RooArgList/Set(std::vector<RooAbsArgPtrOrDouble> const&) constructor.
345 // Can be replaced with std::variant when C++17 is the minimum supported standard.
347 RooAbsArgPtrOrDouble(RooAbsArg & arg) : ptr{&arg}, hasPtr{true} {}
348 RooAbsArgPtrOrDouble(double x) : val{x}, hasPtr{false} {}
349
350 RooAbsArg * ptr = nullptr;
351 double val = 0.0;
352 bool hasPtr = false;
353 };
354
355protected:
356 Storage_t _list; // Actual object storage
358
359 Bool_t _ownCont; // Flag to identify a list that owns its contents.
360 TString _name; // Our name.
361 Bool_t _allRRV ; // All contents are RRV
362
363 void deleteList() ;
364
365 // Support for snapshot method
367
370
371 mutable TNamed* _structureTag{nullptr}; //! Structure tag
372 mutable TNamed* _typedStructureTag{nullptr}; //! Typed structure tag
373
375
376 void makeStructureTag() ;
377 void makeTypedStructureTag() ;
378
379 /// Determine whether it's possible to add a given RooAbsArg to the collection or not.
380 virtual bool canBeAdded(const RooAbsArg& arg, bool silent) const = 0;
381
382 template<class T>
383 static void assert_is_no_temporary(T &&) {
384 static_assert(!std::is_rvalue_reference<T&&>::value,
385 "A reference to a temporary RooAbsArg will be passed to a RooAbsCollection constructor! "
386 "This is not allowed, because the collection will not own the arguments. "
387 "Hence, the collection will contain dangling pointers when the temporary goes out of scope."
388 );
389 }
390
391private:
392 std::unique_ptr<LegacyIterator_t> makeLegacyIterator (bool forward = true) const;
393
395 mutable std::unique_ptr<HashAssistedFind> _hashAssistedFind; //!
397
398 void insert(RooAbsArg*);
399
400 ClassDef(RooAbsCollection,3) // Collection of RooAbsArg objects
401};
402
403#endif
#define R__SUGGEST_ALTERNATIVE(ALTERNATIVE)
Definition RConfig.hxx:524
ROOT::RRangeCast< T, true, Range_t > dynamic_range_cast(Range_t &&coll)
ROOT::RRangeCast< T, false, Range_t > static_range_cast(Range_t &&coll)
char Text_t
Definition RtypesCore.h:62
const Bool_t kFALSE
Definition RtypesCore.h:101
double Double_t
Definition RtypesCore.h:59
const Bool_t kTRUE
Definition RtypesCore.h:100
const char Option_t
Definition RtypesCore.h:66
#define ClassDef(name, id)
Definition Rtypes.h:325
static void indent(ostringstream &buf, int indent_level)
const Bool_t kIterForward
Definition TCollection.h:42
char name[80]
Definition TGX11.cxx:110
Wraps any collection that can be used in range-based loops and applies static_cast<T> or dynamic_cast...
RooAbsArg is the common abstract base class for objects that represent a value and a "shape" in RooFi...
Definition RooAbsArg.h:69
RooAbsCollection is an abstract container object that can hold multiple RooAbsArg objects.
void clearStructureTags()
Typed structure tag.
std::unique_ptr< HashAssistedFind > _hashAssistedFind
virtual void removeAll()
Remove all arguments from our set, deleting them if we own them.
void deleteList()
Delete contents of the list.
void remove(forwardIt rangeBegin, forwardIt rangeEnd, Bool_t silent=kFALSE, Bool_t matchByNameOnly=kFALSE)
std::vector< RooAbsArg * > Storage_t
TNamed * _typedStructureTag
Structure tag.
Storage_t const & get() const
Const access to the underlying stl container.
RooAbsCollection & assignValueOnly(const RooAbsCollection &other, bool forceIfSizeOne=false)
Sets the value of any argument in our set that also appears in the other set.
Bool_t setCatLabel(const char *name, const char *newVal="", Bool_t verbose=kFALSE)
Set state name of a RooAbsCategoryLValue stored in set with given name to newVal.
virtual TObject * create(const char *newname) const =0
void assignFast(const RooAbsCollection &other, bool setValDirty=true) const
Functional equivalent of assign() but assumes this and other collection have same layout.
Bool_t setCatIndex(const char *name, Int_t newVal=0, Bool_t verbose=kFALSE)
Set index value of a RooAbsCategoryLValue stored in set with given name to newVal.
Int_t getCatIndex(const char *name, Int_t defVal=0, Bool_t verbose=kFALSE) const
Get index value of a RooAbsCategory stored in set with given name.
void sortTopologically()
Sort collection topologically: the servers of any RooAbsArg will be before that RooAbsArg in the coll...
TNamed * typedStructureTag()
virtual bool canBeAdded(const RooAbsArg &arg, bool silent) const =0
Determine whether it's possible to add a given RooAbsArg to the collection or not.
RooAbsCollection()
Default constructor.
virtual Bool_t replace(const RooAbsArg &var1, const RooAbsArg &var2)
Replace var1 with var2 and return kTRUE for success.
const char * getCatLabel(const char *name, const char *defVal="", Bool_t verbose=kFALSE) const
Get state name of a RooAbsCategory stored in set with given name.
Int_t getSize() const
Storage_t::const_reverse_iterator rend() const
void sort(Bool_t reverse=false)
Sort collection using std::sort and name comparison.
Bool_t contains(const RooAbsArg &var) const
Check if collection contains an argument with the same name as var.
Bool_t addServerClonesToList(const RooAbsArg &var)
Add clones of servers of given argument to end of list.
virtual void printName(std::ostream &os) const
Return collection name.
bool overlaps(const RooAbsCollection &otherColl) const
Check if this and other collection have common entries.
void printLatex(const RooCmdArg &arg1=RooCmdArg(), const RooCmdArg &arg2=RooCmdArg(), const RooCmdArg &arg3=RooCmdArg(), const RooCmdArg &arg4=RooCmdArg(), const RooCmdArg &arg5=RooCmdArg(), const RooCmdArg &arg6=RooCmdArg(), const RooCmdArg &arg7=RooCmdArg(), const RooCmdArg &arg8=RooCmdArg()) const
Output content of collection as LaTex table.
Storage_t::const_reverse_iterator rbegin() const
RooAbsCollection * snapshot(Bool_t deepCopy=kTRUE) const
Take a snap shot of current collection contents.
virtual RooAbsArg * addClone(const RooAbsArg &var, Bool_t silent=kFALSE)
Add a clone of the specified argument to list.
Int_t index(const RooAbsArg *arg) const
Returns index of given arg, or -1 if arg is not in the collection.
virtual TObject * Clone(const char *newname=0) const
Make a clone of an object using the Streamer facility.
RooFIter fwdIterator() const
One-time forward iterator.
bool overlaps(Iterator_t otherCollBegin, Iterator_t otherCollEnd) const
virtual Bool_t add(const RooAbsArg &var, Bool_t silent=kFALSE)
Add the specified argument to list.
const_iterator end() const
bool hasSameLayout(const RooAbsCollection &other) const
Check that all entries where the collections overlap have the same name.
Bool_t setStringValue(const char *name, const char *newVal="", Bool_t verbose=kFALSE)
Set string value of a RooStringVar stored in set with given name to newVal.
TObject * FindObject(const TObject *obj) const
Find object in the collection, Note: matching by object name, like the find() method.
Double_t getRealValue(const char *name, Double_t defVal=0, Bool_t verbose=kFALSE) const
Get value of a RooAbsReal stored in set with given name.
void assign(const RooAbsCollection &other) const
Sets the value, cache and constant attribute of any argument in our set that also appears in the othe...
virtual Bool_t addOwned(RooAbsArg &var, Bool_t silent=kFALSE)
Add an argument and transfer the ownership to the collection.
virtual ~RooAbsCollection()
Destructor.
Storage_t::size_type size() const
RooAbsArg * operator[](Storage_t::size_type i) const
Bool_t setRealValue(const char *name, Double_t newVal=0, Bool_t verbose=kFALSE)
Set value of a RooAbsRealLValye stored in set with given name to newVal No error messages are printed...
RooAbsArg * first() const
static void assert_is_no_temporary(T &&)
void reserve(Storage_t::size_type count)
RooAbsCollection * selectByName(const char *nameList, Bool_t verbose=kFALSE) const
Create a subset of the current collection, consisting only of those elements with names matching the ...
void clear()
Clear contents. If the collection is owning, it will also delete the contents.
virtual Bool_t containsInstance(const RooAbsArg &var) const
Check if this exact instance is in this collection.
TObject * FindObject(const char *name) const
Find object by name in the collection.
Bool_t allInRange(const char *rangeSpec) const
Return true if all contained object report to have their value inside the specified range.
bool add(const RooAbsCollection &list, bool silent=kFALSE)
Add a collection of arguments to this collection by calling add() for each element in the source coll...
virtual void printMultiline(std::ostream &os, Int_t contents, Bool_t verbose=kFALSE, TString indent="") const
Implement multiline printing of collection, one line for each contained object showing the requested ...
Int_t index(const RooAbsArg &arg) const
Returns index of given arg, or -1 if arg is not in the collection.
const_iterator begin() const
virtual void Print(Option_t *options=0) const
This method must be overridden when a class wants to print itself.
std::unique_ptr< LegacyIterator_t > makeLegacyIterator(bool forward=true) const
Factory for legacy iterators.
bool add(Iterator_t beginIt, Iterator_t endIt, bool silent=false)
std::size_t _sizeThresholdForMapSearch
void setAttribAll(const Text_t *name, Bool_t value=kTRUE)
Set given attribute in each element of the collection by calling each elements setAttribute() functio...
void dump() const
Base contents dumper for debugging purposes.
bool selectCommon(const RooAbsCollection &refColl, RooAbsCollection &outColl) const
Create a subset of the current collection, consisting only of those elements that are contained as we...
Bool_t isOwning() const
virtual void printTitle(std::ostream &os) const
Return collection title.
Bool_t equals(const RooAbsCollection &otherColl) const
Check if this and other collection have identically-named contents.
RooAbsCollection * selectByAttrib(const char *name, Bool_t value) const
Create a subset of the current collection, consisting only of those elements with the specified attri...
void useHashMapForFind(bool flag) const
const char * getStringValue(const char *name, const char *defVal="", Bool_t verbose=kFALSE) const
Get string value of a RooStringVar stored in set with given name.
const char * GetName() const
Returns name of object.
virtual void printClassName(std::ostream &os) const
Return collection class name.
void setHashTableSize(Int_t number)
Set the size at which the collection will automatically start using an extra lookup table instead of ...
std::string contentsString() const
Return comma separated list of contained object names as STL string.
void setName(const char *name)
RooAbsCollection & operator=(const RooAbsCollection &other)
Assign values from the elements in other to our elements.
Int_t getHashTableSize() const
Query the size at which the collection will automatically start using an extra lookup table instead o...
RooLinkedListIter iterator(Bool_t dir=kIterForward) const
TIterator-style iteration over contained elements.
virtual void RecursiveRemove(TObject *obj)
If one of the TObject we have a referenced to is deleted, remove the reference.
virtual Bool_t remove(const RooAbsArg &var, Bool_t silent=kFALSE, Bool_t matchByNameOnly=kFALSE)
Remove the specified argument from our list.
virtual TObject * clone(const char *newname) const =0
void insert(RooAbsArg *)
Insert an element into the owned collections.
TIterator * createIterator(Bool_t dir=kIterForward) const
TIterator-style iteration over contained elements.
RooAbsArg * find(const char *name) const
Find object with given name in list.
Storage_t::const_iterator const_iterator
virtual void printValue(std::ostream &os) const
Print value of collection, i.e.
virtual Int_t defaultPrintContents(Option_t *opt) const
Define default RooPrinable print options for given Print() flag string For inline printing only show ...
RooCmdArg is a named container for two doubles, two integers two object points and three string point...
Definition RooCmdArg.h:27
A one-time forward iterator working on RooLinkedList or RooAbsCollection.
A wrapper around TIterator derivatives.
RooLinkedList is an collection class for internal use, storing a collection of RooAbsArg pointers in ...
RooPlotable is a 'mix-in' base class that define the standard RooFit plotting and printing methods.
virtual StyleOption defaultPrintStyle(Option_t *opt) const
static std::ostream & defaultPrintStream(std::ostream *os=0)
Return a reference to the current default stream to use in Print().
virtual void printStream(std::ostream &os, Int_t contents, StyleOption style, TString indent="") const
Print description of object on ostream, printing contents set by contents integer,...
TIterator and GenericRooFIter front end with STL back end.
Iterator abstract base class.
Definition TIterator.h:30
The TNamed class is the base class for all named ROOT classes.
Definition TNamed.h:29
Mother of all ROOT objects.
Definition TObject.h:41
Basic string class.
Definition TString.h:136
const char * Data() const
Definition TString.h:369
Double_t x[n]
Definition legend1.C:17
for(Int_t i=0;i< n;i++)
Definition legend1.C:18
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
Definition Common.h:18
Helper for hash-map-assisted finding of elements by name.
static void output(int code)
Definition gifencode.c:226