Logo ROOT  
Reference Guide
RooAbsArg.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooAbsArg.h,v 1.93 2007/07/16 21:04:28 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_ARG
17#define ROO_ABS_ARG
18
19#include "TNamed.h"
20#include "TObjArray.h"
21#include "TRefArray.h"
22#include "RooPrintable.h"
23#include "RooSTLRefCountList.h"
24#include "RooAbsCache.h"
25#include "RooNameReg.h"
26#include "RooLinkedListIter.h"
28#include <RooStringView.h>
29
30#include <deque>
31#include <iostream>
32#include <map>
33#include <memory>
34#include <set>
35#include <stack>
36#include <string>
37
38
39class TTree ;
40class RooArgSet ;
41class RooAbsCollection ;
43class RooAbsData ;
44class RooAbsDataStore ;
45class RooAbsProxy ;
46class RooArgProxy ;
47template<class RooCollection_t>
52class RooWorkspace ;
53
54class RooRefArray : public TObjArray {
55 public:
57 } ;
58 RooRefArray(const RooRefArray& other) : TObjArray(other) {
59 }
60 RooRefArray& operator=(const RooRefArray& other) = default;
61 ~RooRefArray() override {} ;
62 protected:
63 ClassDefOverride(RooRefArray,1) // Helper class for proxy lists
64} ;
65
66class RooAbsArg;
67/// Print at the prompt
68namespace cling {
69std::string printValue(RooAbsArg*);
70}
71
72class RooAbsArg : public TNamed, public RooPrintable {
73public:
76
77 // Constructors, cloning and assignment
78 RooAbsArg() ;
79 ~RooAbsArg() override;
80 RooAbsArg(const char *name, const char *title);
81 RooAbsArg(const RooAbsArg& other, const char* name=nullptr) ;
82 RooAbsArg& operator=(const RooAbsArg& other) = delete;
83 virtual TObject* clone(const char* newname=nullptr) const = 0 ;
84 TObject* Clone(const char* newname = nullptr) const override {
85 return clone(newname && newname[0] != '\0' ? newname : nullptr);
86 }
87 virtual RooAbsArg* cloneTree(const char* newname=nullptr) const ;
88
89 // Accessors to client-server relation information
90
91 /// Does value or shape of this arg depend on any other arg?
92 virtual bool isDerived() const {
93 return true ;
94 }
95 bool isCloneOf(const RooAbsArg& other) const ;
96
97 /// Check whether this object depends on values from an element in the `serverList`.
98 ///
99 /// @param serverList Test if one of the elements in this list serves values to `this`.
100 /// @param ignoreArg Ignore values served by this object.
101 /// @return True if values are served.
102 bool dependsOnValue(const RooAbsCollection& serverList, const RooAbsArg* ignoreArg=nullptr) const {
103 return dependsOn(serverList,ignoreArg,true) ;
104 }
105 /// Check whether this object depends on values served from the object passed as `server`.
106 ///
107 /// @param server Test if `server` serves values to `this`.
108 /// @param ignoreArg Ignore values served by this object.
109 /// @return True if values are served.
110 bool dependsOnValue(const RooAbsArg& server, const RooAbsArg* ignoreArg=nullptr) const {
111 return dependsOn(server,ignoreArg,true) ;
112 }
113 bool dependsOn(const RooAbsCollection& serverList, const RooAbsArg* ignoreArg=nullptr, bool valueOnly=false) const ;
114 bool dependsOn(const RooAbsArg& server, const RooAbsArg* ignoreArg=nullptr, bool valueOnly=false) const ;
115 bool overlaps(const RooAbsArg& testArg, bool valueOnly=false) const ;
116 bool hasClients() const { return !_clientList.empty(); }
117
118 ////////////////////////////////////////////////////////////////////////////
119 /// \name Legacy RooFit interface.
120 /// This is a collection of functions that remain supported, but more elegant
121 /// interfaces are usually available.
122 /// @{
123
124 /// Retrieve a client iterator.
125 inline TIterator* clientIterator() const
126 R__SUGGEST_ALTERNATIVE("Use clients() and begin(), end() or range-based loops.") {
127 // Return iterator over all client RooAbsArgs
129 }
131 R__SUGGEST_ALTERNATIVE("Use valueClients() and begin(), end() or range-based loops.") {
132 // Return iterator over all shape client RooAbsArgs
134 }
136 R__SUGGEST_ALTERNATIVE("Use shapeClients() and begin(), end() or range-based loops.") {
137 // Return iterator over all shape client RooAbsArgs
139 }
140 inline TIterator* serverIterator() const
141 R__SUGGEST_ALTERNATIVE("Use servers() and begin(), end() or range-based loops.") {
142 // Return iterator over all server RooAbsArgs
144 }
145
147 R__SUGGEST_ALTERNATIVE("Use valueClients() and begin(), end() or range-based loops.") {
148 return RooFIter(std::unique_ptr<RefCountListLegacyIterator_t>(makeLegacyIterator(_clientListValue)));
149 }
151 R__SUGGEST_ALTERNATIVE("Use shapeClients() and begin(), end() or range-based loops.") {
152 return RooFIter(std::unique_ptr<RefCountListLegacyIterator_t>(makeLegacyIterator(_clientListShape)));
153 }
155 R__SUGGEST_ALTERNATIVE("Use servers() and begin(), end() or range-based loops.") {
156 return RooFIter(std::unique_ptr<RefCountListLegacyIterator_t>(makeLegacyIterator(_serverList)));
157 }
158
159 // --- Obsolete functions for backward compatibility
160 /// \deprecated Use getObservables()
161 inline RooArgSet* getDependents(const RooArgSet& set) const { return getObservables(set) ; }
162 /// \deprecated Use getObservables()
163 inline RooArgSet* getDependents(const RooAbsData* set) const { return getObservables(set) ; }
164 /// \deprecated Use getObservables()
165 inline RooArgSet* getDependents(const RooArgSet* depList) const { return getObservables(depList) ; }
166 /// \deprecated Use observableOverlaps()
167 inline bool dependentOverlaps(const RooAbsData* dset, const RooAbsArg& testArg) const { return observableOverlaps(dset,testArg) ; }
168 /// \deprecated Use observableOverlaps()
169 inline bool dependentOverlaps(const RooArgSet* depList, const RooAbsArg& testArg) const { return observableOverlaps(depList, testArg) ; }
170 /// \deprecated Use checkObservables()
171 inline bool checkDependents(const RooArgSet* nset) const { return checkObservables(nset) ; }
172 /// \deprecated Use recursiveCheckObservables()
173 inline bool recursiveCheckDependents(const RooArgSet* nset) const { return recursiveCheckObservables(nset) ; }
174 // --- End obsolete functions for backward compatibility
175 /// @}
176 ////////////////////////////////////////////////////////////////////////////
177
178 ////////////////////////////////////////////////////////////////////////////
179 /// \anchor clientServerInterface
180 /// \name Client-Server Interface
181 /// These functions allow RooFit to figure out who is serving values to whom.
182 /// @{
183
184 /// List of all clients of this object.
185 const RefCountList_t& clients() const {
186 return _clientList;
187 }
188 /// List of all value clients of this object. Value clients receive value updates.
190 return _clientListValue;
191 }
192 /// List of all shape clients of this object. Shape clients receive property information such as
193 /// changes of a value range.
195 return _clientListShape;
196 }
197
198 /// List of all servers of this object.
199 const RefCountList_t& servers() const {
200 return _serverList;
201 }
202 /// Return server of `this` with name `name`. Returns nullptr if not found.
203 inline RooAbsArg* findServer(const char *name) const {
204 const auto serverIt = _serverList.findByName(name);
205 return serverIt != _serverList.end() ? *serverIt : nullptr;
206 }
207 /// Return server of `this` that has the same name as `arg`. Returns `nullptr` if not found.
208 inline RooAbsArg* findServer(const RooAbsArg& arg) const {
209 return _serverList.findByNamePointer(&arg);
210 }
211 /// Return i-th server from server list.
214 }
215 /// Check if `this` is serving values to `arg`.
216 inline bool isValueServer(const RooAbsArg& arg) const {
218 }
219 /// Check if `this` is serving values to an object with name `name`.
220 inline bool isValueServer(const char* name) const {
222 }
223 /// Check if `this` is serving shape to `arg`.
224 inline bool isShapeServer(const RooAbsArg& arg) const {
226 }
227 /// Check if `this` is serving shape to an object with name `name`.
228 inline bool isShapeServer(const char* name) const {
230 }
231 void leafNodeServerList(RooAbsCollection* list, const RooAbsArg* arg=nullptr, bool recurseNonDerived=false) const ;
232 void branchNodeServerList(RooAbsCollection* list, const RooAbsArg* arg=nullptr, bool recurseNonDerived=false) const ;
233 void treeNodeServerList(RooAbsCollection* list, const RooAbsArg* arg=nullptr,
234 bool doBranch=true, bool doLeaf=true,
235 bool valueOnly=false, bool recurseNonDerived=false) const ;
236
237
238 /// Is this object a fundamental type that can be added to a dataset?
239 /// Fundamental-type subclasses override this method to return true.
240 /// Note that this test is subtlely different from the dynamic isDerived()
241 /// test, e.g. a constant is not derived but is also not fundamental.
242 inline virtual bool isFundamental() const {
243 return false;
244 }
245
246 /// Create a fundamental-type object that stores our type of value. The
247 /// created object will have a valid value, but not necessarily the same
248 /// as our value. The caller is responsible for deleting the returned object.
249 virtual RooAbsArg *createFundamental(const char* newname=nullptr) const = 0;
250
251 /// Is this argument an l-value, i.e., can it appear on the left-hand side
252 /// of an assignment expression? LValues are also special since they can
253 /// potentially be analytically integrated and generated.
254 inline virtual bool isLValue() const {
255 return false;
256 }
257
258
259 // Server redirection interface
260 bool redirectServers(const RooAbsCollection& newServerList, bool mustReplaceAll=false, bool nameChange=false, bool isRecursionStep=false) ;
261 bool recursiveRedirectServers(const RooAbsCollection& newServerList, bool mustReplaceAll=false, bool nameChange=false, bool recurseInNewSet=true) ;
262
263 virtual bool redirectServersHook(const RooAbsCollection & newServerList, bool mustReplaceAll,
264 bool nameChange, bool isRecursiveStep);
265
266 virtual void serverNameChangeHook(const RooAbsArg* /*oldServer*/, const RooAbsArg* /*newServer*/) { } ;
267
268 void addServer(RooAbsArg& server, bool valueProp=true, bool shapeProp=false, std::size_t refCount = 1);
269 void addServerList(RooAbsCollection& serverList, bool valueProp=true, bool shapeProp=false) ;
270 void
271 R__SUGGEST_ALTERNATIVE("This interface is unsafe! Use RooAbsArg::redirectServers()")
272 replaceServer(RooAbsArg& oldServer, RooAbsArg& newServer, bool valueProp, bool shapeProp) ;
273 void changeServer(RooAbsArg& server, bool valueProp, bool shapeProp) ;
274 void removeServer(RooAbsArg& server, bool force=false) ;
275 RooAbsArg *findNewServer(const RooAbsCollection &newSet, bool nameChange) const;
276
277
278 /// @}
279 ///////////////////////////////////////////////////////////////////////////////
280
281
282 // Parameter & observable interpretation of servers
283 RooArgSet* getVariables(bool stripDisconnected=true) const ;
284 RooArgSet* getParameters(const RooAbsData* data, bool stripDisconnected=true) const ;
285 /// Return the parameters of this p.d.f when used in conjuction with dataset 'data'
286 RooArgSet* getParameters(const RooAbsData& data, bool stripDisconnected=true) const {
287 return getParameters(&data,stripDisconnected) ;
288 }
289 /// Return the parameters of the p.d.f given the provided set of observables
290 RooArgSet* getParameters(const RooArgSet& observables, bool stripDisconnected=true) const {
291 return getParameters(&observables,stripDisconnected);
292 }
293 RooArgSet* getParameters(const RooArgSet* observables, bool stripDisconnected=true) const;
294 virtual bool getParameters(const RooArgSet* observables, RooArgSet& outputSet, bool stripDisconnected=true) const;
295 /// Given a set of possible observables, return the observables that this PDF depends on.
296 RooArgSet* getObservables(const RooArgSet& set, bool valueOnly=true) const {
297 return getObservables(&set,valueOnly) ;
298 }
299 RooArgSet* getObservables(const RooAbsData* data) const ;
300 /// Return the observables of this pdf given the observables defined by `data`.
302 return getObservables(&data) ;
303 }
304 RooArgSet* getObservables(const RooArgSet* depList, bool valueOnly=true) const ;
305 bool getObservables(const RooAbsCollection* depList, RooArgSet& outputSet, bool valueOnly=true) const;
306 bool observableOverlaps(const RooAbsData* dset, const RooAbsArg& testArg) const ;
307 bool observableOverlaps(const RooArgSet* depList, const RooAbsArg& testArg) const ;
308 virtual bool checkObservables(const RooArgSet* nset) const ;
309 bool recursiveCheckObservables(const RooArgSet* nset) const ;
310 RooArgSet* getComponents() const ;
311
312
313
314 void attachArgs(const RooAbsCollection &set);
315 void attachDataSet(const RooAbsData &set);
316 void attachDataStore(const RooAbsDataStore &set);
317
318 // I/O streaming interface (machine readable)
319 virtual bool readFromStream(std::istream& is, bool compact, bool verbose=false) = 0 ;
320 virtual void writeToStream(std::ostream& os, bool compact) const = 0 ;
321
322 /// Print the object to the defaultPrintStream().
323 /// \param[in] options **V** print verbose. **T** print a tree structure with all children.
324 void Print(Option_t *options= nullptr) const override {
325 // Printing interface (human readable)
327 }
328
329 void printName(std::ostream& os) const override ;
330 void printTitle(std::ostream& os) const override ;
331 void printClassName(std::ostream& os) const override ;
332 void printAddress(std::ostream& os) const override ;
333 void printArgs(std::ostream& os) const override ;
334 virtual void printMetaArgs(std::ostream& /*os*/) const {} ;
335 void printMultiline(std::ostream& os, Int_t contents, bool verbose=false, TString indent="") const override;
336 void printTree(std::ostream& os, TString indent="") const override ;
337
338 Int_t defaultPrintContents(Option_t* opt) const override ;
339
340 // Accessors to attributes
341 void setAttribute(const Text_t* name, bool value=true) ;
342 bool getAttribute(const Text_t* name) const ;
343 inline const std::set<std::string>& attributes() const {
344 // Returns set of names of boolean attributes defined
345 return _boolAttrib ;
346 }
347
348 void setStringAttribute(const Text_t* key, const Text_t* value) ;
349 void removeStringAttribute(const Text_t* key) ;
350 const Text_t* getStringAttribute(const Text_t* key) const ;
351 inline const std::map<std::string,std::string>& stringAttributes() const {
352 // Returns std::map<string,string> with all string attributes defined
353 return _stringAttrib ;
354 }
355
356 // Accessors to transient attributes
357 void setTransientAttribute(const Text_t* name, bool value=true) ;
358 bool getTransientAttribute(const Text_t* name) const ;
359 inline const std::set<std::string>& transientAttributes() const {
360 // Return set of transient boolean attributes
361 return _boolAttribTransient ;
362 }
363
364 /// Check if the "Constant" attribute is set.
365 inline bool isConstant() const {
366 return _isConstant ; //getAttribute("Constant") ;
367 }
369
370 // Sorting
371 Int_t Compare(const TObject* other) const override ;
372 bool IsSortable() const override {
373 // Object is sortable in ROOT container class
374 return true ;
375 }
376
377 virtual bool operator==(const RooAbsArg& other) const = 0 ;
378 virtual bool isIdentical(const RooAbsArg& other, bool assumeSameType=false) const = 0 ;
379
380 // Range management
381 virtual bool inRange(const char*) const {
382 // Is value in range (dummy interface always returns true)
383 return true ;
384 }
385 virtual bool hasRange(const char*) const {
386 // Has this argument a defined range (dummy interface always returns flase)
387 return false ;
388 }
389
390
392 enum CacheMode { Always=0, NotAdvised=1, Never=2 } ;
393 enum OperMode { Auto=0, AClean=1, ADirty=2 } ;
394
395 ////////////////////////////////////////////////////////////////////////////
396 /// \anchor optimisationInterface
397 /// \name Optimisation interface
398 /// These functions allow RooFit to optimise a computation graph, to keep track
399 /// of cached values, and to invalidate caches.
400 /// @{
401
402 // Cache mode optimization (tracks changes & do lazy evaluation vs evaluate always)
403 virtual void optimizeCacheMode(const RooArgSet& observables) ;
404 virtual void optimizeCacheMode(const RooArgSet& observables, RooArgSet& optNodes, RooLinkedList& processedNodes) ;
405
406
407 // Find constant terms in expression
408 bool findConstantNodes(const RooArgSet& observables, RooArgSet& cacheList) ;
409 bool findConstantNodes(const RooArgSet& observables, RooArgSet& cacheList, RooLinkedList& processedNodes) ;
410
411
412 // constant term optimization
413 virtual void constOptimizeTestStatistic(ConstOpCode opcode, bool doAlsoTrackingOpt=true) ;
414
415 virtual CacheMode canNodeBeCached() const { return Always ; }
416 virtual void setCacheAndTrackHints(RooArgSet& /*trackNodes*/ ) {} ;
417
418 // Dirty state accessor
419 inline bool isShapeDirty() const {
420 // Return true is shape has been invalidated by server value change
421 return isDerived()?_shapeDirty:false ;
422 }
423
424 inline bool isValueDirty() const {
425 // Returns true of value has been invalidated by server value change
426 if (inhibitDirty()) return true ;
427 switch(_operMode) {
428 case AClean:
429 return false ;
430 case ADirty:
431 return true ;
432 case Auto:
433 if (_valueDirty) return isDerived() ;
434 return false ;
435 }
436 return true ; // we should never get here
437 }
438
439 inline bool isValueDirtyAndClear() const {
440 // Returns true of value has been invalidated by server value change
441 if (inhibitDirty()) return true ;
442 switch(_operMode) {
443 case AClean:
444 return false ;
445 case ADirty:
446 return true ;
447 case Auto:
448 if (_valueDirty) {
449 _valueDirty = false ;
450 return isDerived();
451 }
452 return false ;
453 }
454 return true ; // But we should never get here
455 }
456
457
458 inline bool isValueOrShapeDirtyAndClear() const {
459 // Returns true of value has been invalidated by server value change
460
461 if (inhibitDirty()) return true ;
462 switch(_operMode) {
463 case AClean:
464 return false ;
465 case ADirty:
466 return true ;
467 case Auto:
468 if (_valueDirty || _shapeDirty) {
469 _shapeDirty = false ;
470 _valueDirty = false ;
471 return isDerived();
472 }
473 _shapeDirty = false ;
474 _valueDirty = false ;
475 return false ;
476 }
477 return true ; // But we should never get here
478 }
479
480 // Cache management
481 void registerCache(RooAbsCache& cache) ;
482 void unRegisterCache(RooAbsCache& cache) ;
483 Int_t numCaches() const ;
485
486 /// Query the operation mode of this node.
487 inline OperMode operMode() const { return _operMode ; }
488 /// Set the operation mode of this node.
489 void setOperMode(OperMode mode, bool recurseADirty=true) ;
490
491 // Dirty state modifiers
492 /// Mark the element dirty. This forces a re-evaluation when a value is requested.
494 if (_operMode == Auto && !inhibitDirty())
495 setValueDirty(nullptr);
496 }
497 /// Notify that a shape-like property (*e.g.* binning) has changed.
498 void setShapeDirty() { setShapeDirty(nullptr); }
499
500 const char* aggregateCacheUniqueSuffix() const ;
501 virtual const char* cacheUniqueSuffix() const { return nullptr ; }
502
503 void wireAllCaches() ;
504
507
508 /// Overwrite the current value stored in this object, making it look like this object computed that value.
509 // \param[in] value Value to store.
510 // \param[in] notifyClients Notify users of this object that they need to
511 /// recompute their values.
512 virtual void setCachedValue(double /*value*/, bool /*notifyClients*/ = true) {};
513
514 /// @}
515 ////////////////////////////////////////////////////////////////////////////
516
517 //Debug hooks
518 static void verboseDirty(bool flag) ;
519 void printDirty(bool depth=true) const ;
520 static void setDirtyInhibit(bool flag) ;
521
522 void graphVizTree(const char* fileName, const char* delimiter="\n", bool useTitle=false, bool useLatex=false) ;
523 void graphVizTree(std::ostream& os, const char* delimiter="\n", bool useTitle=false, bool useLatex=false) ;
524
525 void printComponentTree(const char* indent="",const char* namePat=nullptr, Int_t nLevel=999) ;
526 void printCompactTree(const char* indent="",const char* fileName=nullptr, const char* namePat=nullptr, RooAbsArg* client=nullptr) ;
527 void printCompactTree(std::ostream& os, const char* indent="", const char* namePat=nullptr, RooAbsArg* client=nullptr) ;
528 virtual void printCompactTreeHook(std::ostream& os, const char *ind="") ;
529
530 // We want to support three cases here:
531 // * passing a RooArgSet
532 // * passing a RooArgList
533 // * passing an initializer list
534 // Before, there was only an overload taking a RooArg set, which caused an
535 // implicit creation of a RooArgSet when a RooArgList was passed. This needs
536 // to be avoided, because if the passed RooArgList is owning the argumnets,
537 // this information will be lost with the copy. The solution is to have one
538 // overload that takes a general RooAbsCollection, and one overload for
539 // RooArgList that is invoked in the case of passing an initializer list.
540 bool addOwnedComponents(const RooAbsCollection& comps) ;
542 bool addOwnedComponents(RooArgList&& comps) ;
543
544 // Transfer the ownership of one or more other RooAbsArgs to this RooAbsArg
545 // via a `std::unique_ptr`.
546 template<typename... Args_t>
547 bool addOwnedComponents(std::unique_ptr<Args_t>... comps) {
548 return addOwnedComponents({*comps.release() ...});
549 }
550 const RooArgSet* ownedComponents() const { return _ownedComponents ; }
551
553
554 void setWorkspace(RooWorkspace &ws) { _myws = &ws; }
555 inline RooWorkspace* workspace() const { return _myws; }
556
558 Int_t numProxies() const ;
559
560 /// De-duplicated pointer to this object's name.
561 /// This can be used for fast name comparisons.
562 /// like `if (namePtr() == other.namePtr())`.
563 /// \note TNamed::GetName() will return a pointer that's
564 /// different for each object, but namePtr() always points
565 /// to a unique instance.
566 inline const TNamed* namePtr() const {
567 return _namePtr ;
568 }
569
570 void SetName(const char* name) override ;
571 void SetNameTitle(const char *name, const char *title) override ;
572
574 {
575 _myws = &ws;
576 return false;
577 };
578
579 virtual bool canComputeBatchWithCuda() const { return false; }
580 virtual bool isReducerNode() const { return false; }
581
582 virtual void applyWeightSquared(bool flag);
583
584 virtual std::unique_ptr<RooAbsArg> compileForNormSet(RooArgSet const &normSet, RooFit::Detail::CompileContext & ctx) const;
585
586 virtual bool isCategory() const { return false; }
587
588protected:
589 void graphVizAddConnections(std::set<std::pair<RooAbsArg*,RooAbsArg*> >&) ;
590
591 virtual void operModeHook() {} ;
592
593 virtual void optimizeDirtyHook(const RooArgSet* /*obs*/) {} ;
594
595 virtual bool isValid() const ;
596
597 virtual void getParametersHook(const RooArgSet* /*nset*/, RooArgSet* /*list*/, bool /*stripDisconnected*/) const {} ;
598 virtual void getObservablesHook(const RooArgSet* /*nset*/, RooArgSet* /*list*/) const {} ;
599
601 _valueDirty=false ;
602 _shapeDirty=false ;
603 }
604
605 void clearValueDirty() const {
606 _valueDirty=false ;
607 }
608 void clearShapeDirty() const {
609 _shapeDirty=false ;
610 }
611
612 /// Force element to re-evaluate itself when a value is requested.
613 void setValueDirty(const RooAbsArg* source);
614 /// Notify that a shape-like property (*e.g.* binning) has changed.
615 void setShapeDirty(const RooAbsArg* source);
616
617 virtual void ioStreamerPass2() ;
618 static void ioStreamerPass2Finalize() ;
619
620
621private:
622 void addParameters(RooAbsCollection& params, const RooArgSet* nset = nullptr, bool stripDisconnected = true) const;
623 std::size_t getParametersSizeEstimate(const RooArgSet* nset = nullptr) const;
624
626
627
628 protected:
629 friend class RooAbsReal;
630
631 // Client-Server relation and Proxy management
632 friend class RooAbsCollection ;
633 friend class RooWorkspace ;
634 friend class RooRealIntegral ;
635 RefCountList_t _serverList ; // list of server objects
636 RefCountList_t _clientList; // list of client objects
637 RefCountList_t _clientListShape; // subset of clients that requested shape dirty flag propagation
638 RefCountList_t _clientListValue; // subset of clients that requested value dirty flag propagation
639
640 RooRefArray _proxyList ; // list of proxies
641
642 std::vector<RooAbsCache*> _cacheList ; //! list of caches
643
644
645 // Proxy management
646 friend class RooArgProxy ;
647 template<class RooCollection_t>
648 friend class RooCollectionProxy;
649 friend class RooHistPdf ;
650 friend class RooHistFunc ;
651 void registerProxy(RooArgProxy& proxy) ;
652 void registerProxy(RooSetProxy& proxy) ;
653 void registerProxy(RooListProxy& proxy) ;
654 void unRegisterProxy(RooArgProxy& proxy) ;
655 void unRegisterProxy(RooSetProxy& proxy) ;
656 void unRegisterProxy(RooListProxy& proxy) ;
657 void setProxyNormSet(const RooArgSet* nset) ;
658
659 // Attribute list
660 std::set<std::string> _boolAttrib ; // Boolean attributes
661 std::map<std::string,std::string> _stringAttrib ; // String attributes
662 std::set<std::string> _boolAttribTransient ; //! Transient boolean attributes (not copied in ctor)
663
664 void printAttribList(std::ostream& os) const;
665
666 // Hooks for RooTreeData interface
668 friend class RooTreeDataStore ;
669 friend class RooVectorDataStore ;
670 friend class RooDataSet ;
671 friend class RooRealMPFE ;
672 virtual void syncCache(const RooArgSet* nset=nullptr) = 0 ;
673 virtual void copyCache(const RooAbsArg* source, bool valueOnly=false, bool setValDirty=true) = 0 ;
674
675 virtual void attachToTree(TTree& t, Int_t bufSize=32000) = 0 ;
676 virtual void attachToVStore(RooVectorDataStore& vstore) = 0 ;
677 /// Attach this argument to the data store such that it reads data from there.
678 void attachToStore(RooAbsDataStore& store) ;
679
680 virtual void setTreeBranchStatus(TTree& t, bool active) = 0 ;
681 virtual void fillTreeBranch(TTree& t) = 0 ;
682 TString cleanBranchName() const ;
683
684 // Global
685 friend std::ostream& operator<<(std::ostream& os, const RooAbsArg &arg);
686 friend std::istream& operator>>(std::istream& is, RooAbsArg &arg) ;
688
690 std::vector<RooAbsProxy*> cache;
691 bool isDirty = true;
692 };
693 ProxyListCache _proxyListCache; //! cache of the list of proxies. Avoids type casting.
694
695 // Debug stuff
696 static bool _verboseDirty ; // Static flag controlling verbose messaging for dirty state changes
697 static bool _inhibitDirty ; // Static flag controlling global inhibit of dirty state propagation
698 bool _deleteWatch ; //! Delete watch flag
699
700 bool inhibitDirty() const ;
701
702 public:
703 void setLocalNoDirtyInhibit(bool flag) const { _localNoInhibitDirty = flag ; }
705
706 /// Returns the token for retrieving results in the BatchMode. For internal use only.
707 std::size_t dataToken() const { return _dataToken; }
708
709 /// Sets the token for retrieving results in the BatchMode. For internal use only.
710 void setDataToken(std::size_t index) { _dataToken = index; }
711 protected:
712
713
714 mutable bool _valueDirty ; // Flag set if value needs recalculating because input values modified
715 mutable bool _shapeDirty ; // Flag set if value needs recalculating because input shapes modified
716
717 mutable OperMode _operMode ; // Dirty state propagation mode
718 mutable bool _fast = false; // Allow fast access mode in getVal() and proxies
719
720 // Owned components
721 RooArgSet* _ownedComponents ; //! Set of owned component
722
723 mutable bool _prohibitServerRedirect ; //! Prohibit server redirects -- Debugging tool
724
725 mutable RooExpensiveObjectCache* _eocache{nullptr}; //! Pointer to global cache manager for any expensive components created by this object
726
727 mutable const TNamed * _namePtr ; //! De-duplicated name pointer. This will be equal for all objects with the same name.
728 bool _isConstant ; //! Cached isConstant status
729
730 mutable bool _localNoInhibitDirty ; //! Prevent 'AlwaysDirty' mode for this node
731
732/* RooArgSet _leafNodeCache ; //! Cached leaf nodes */
733/* RooArgSet _branchNodeCache //! Cached branch nodes */
734
735 mutable RooWorkspace *_myws; //! In which workspace do I live, if any
736
737 std::size_t _dataToken = 0; //! Set by the RooFitDriver for this arg to retrieve its result in the run context
738
739 /// \cond Internal
740 // Legacy streamers need the following statics:
741 friend class RooFitResult;
742
743 public:
744 static std::map<RooAbsArg*,std::unique_ptr<TRefArray>> _ioEvoList; // temporary holding list for proxies needed in schema evolution
745 protected:
746 static std::stack<RooAbsArg*> _ioReadStack ; // reading stack
747 /// \endcond
748
749 ClassDefOverride(RooAbsArg,9) // Abstract variable
750};
751
752std::ostream& operator<<(std::ostream& os, const RooAbsArg &arg);
753std::istream& operator>>(std::istream& is, RooAbsArg &arg);
754
755
756#endif
#define R__SUGGEST_ALTERNATIVE(ALTERNATIVE)
Definition: RConfig.hxx:534
std::ostream & operator<<(std::ostream &os, const RooAbsArg &arg)
Ostream operator.
Definition: RooAbsArg.cxx:1592
std::istream & operator>>(std::istream &is, RooAbsArg &arg)
Istream operator.
Definition: RooAbsArg.cxx:1601
char Text_t
Definition: RtypesCore.h:62
const char Option_t
Definition: RtypesCore.h:66
#define ClassDefOverride(name, id)
Definition: Rtypes.h:339
static void indent(ostringstream &buf, int indent_level)
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data
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
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
Option_t Option_t TPoint TPoint const char mode
char name[80]
Definition: TGX11.cxx:110
RooAbsArg is the common abstract base class for objects that represent a value and a "shape" in RooFi...
Definition: RooAbsArg.h:72
RooExpensiveObjectCache & expensiveObjectCache() const
Definition: RooAbsArg.cxx:2293
void setLocalNoDirtyInhibit(bool flag) const
Definition: RooAbsArg.h:703
bool overlaps(const RooAbsArg &testArg, bool valueOnly=false) const
Test if any of the nodes of tree are shared with that of the given tree.
Definition: RooAbsArg.cxx:881
RooRefArray _proxyList
Definition: RooAbsArg.h:640
void replaceServer(RooAbsArg &oldServer, RooAbsArg &newServer, bool valueProp, bool shapeProp)
Replace 'oldServer' with 'newServer', specifying whether the new server has value or shape server pro...
Definition: RooAbsArg.cxx:442
bool _isConstant
De-duplicated name pointer. This will be equal for all objects with the same name.
Definition: RooAbsArg.h:728
void clearValueAndShapeDirty() const
Definition: RooAbsArg.h:600
void Print(Option_t *options=nullptr) const override
Print the object to the defaultPrintStream().
Definition: RooAbsArg.h:324
virtual void copyCache(const RooAbsArg *source, bool valueOnly=false, bool setValDirty=true)=0
bool dependsOn(const RooAbsCollection &serverList, const RooAbsArg *ignoreArg=nullptr, bool valueOnly=false) const
Test whether we depend on (ie, are served by) any object in the specified collection.
Definition: RooAbsArg.cxx:826
void attachToStore(RooAbsDataStore &store)
Attach this argument to the data store such that it reads data from there.
Definition: RooAbsArg.cxx:2280
bool recursiveRedirectServers(const RooAbsCollection &newServerList, bool mustReplaceAll=false, bool nameChange=false, bool recurseInNewSet=true)
Recursively replace all servers with the new servers in newSet.
Definition: RooAbsArg.cxx:1215
const TNamed * namePtr() const
De-duplicated pointer to this object's name.
Definition: RooAbsArg.h:566
const char * aggregateCacheUniqueSuffix() const
Definition: RooAbsArg.cxx:2305
void printArgs(std::ostream &os) const override
Print object arguments, ie its proxies.
Definition: RooAbsArg.cxx:1482
void printClassName(std::ostream &os) const override
Print object class name.
Definition: RooAbsArg.cxx:1465
bool dependentOverlaps(const RooAbsData *dset, const RooAbsArg &testArg) const
Definition: RooAbsArg.h:167
virtual void getObservablesHook(const RooArgSet *, RooArgSet *) const
Definition: RooAbsArg.h:598
ProxyListCache _proxyListCache
Definition: RooAbsArg.h:693
RooWorkspace * _myws
Prevent 'AlwaysDirty' mode for this node.
Definition: RooAbsArg.h:735
~RooAbsArg() override
Destructor.
Definition: RooAbsArg.cxx:177
void attachDataStore(const RooAbsDataStore &set)
Replace server nodes with names matching the dataset variable names with those data set variables,...
Definition: RooAbsArg.cxx:1656
bool addOwnedComponents(std::unique_ptr< Args_t >... comps)
Definition: RooAbsArg.h:547
virtual bool operator==(const RooAbsArg &other) const =0
RooArgSet * _ownedComponents
Definition: RooAbsArg.h:721
void printAddress(std::ostream &os) const override
Print class name of object.
Definition: RooAbsArg.cxx:1471
void setShapeDirty()
Notify that a shape-like property (e.g. binning) has changed.
Definition: RooAbsArg.h:498
virtual bool isCategory() const
Definition: RooAbsArg.h:586
virtual void setCachedValue(double, bool=true)
Overwrite the current value stored in this object, making it look like this object computed that valu...
Definition: RooAbsArg.h:512
void setDataToken(std::size_t index)
Sets the token for retrieving results in the BatchMode. For internal use only.
Definition: RooAbsArg.h:710
virtual void syncCache(const RooArgSet *nset=nullptr)=0
void registerProxy(RooArgProxy &proxy)
Register an RooArgProxy in the proxy list.
Definition: RooAbsArg.cxx:1255
void setOperMode(OperMode mode, bool recurseADirty=true)
Set the operation mode of this node.
Definition: RooAbsArg.cxx:1888
friend std::ostream & operator<<(std::ostream &os, const RooAbsArg &arg)
Ostream operator.
Definition: RooAbsArg.cxx:1592
RooFIter valueClientMIterator() const
Definition: RooAbsArg.h:146
void setProhibitServerRedirect(bool flag)
Definition: RooAbsArg.h:552
void attachArgs(const RooAbsCollection &set)
Bind this node to objects in set.
Definition: RooAbsArg.cxx:1631
RooArgSet * getDependents(const RooArgSet &set) const
Definition: RooAbsArg.h:161
void setStringAttribute(const Text_t *key, const Text_t *value)
Associate string 'value' to this object under key 'key'.
Definition: RooAbsArg.cxx:277
bool isShapeServer(const RooAbsArg &arg) const
Check if this is serving shape to arg.
Definition: RooAbsArg.h:224
bool isShapeDirty() const
Definition: RooAbsArg.h:419
static void ioStreamerPass2Finalize()
Method called by workspace container to finalize schema evolution issues that cannot be handled in a ...
Definition: RooAbsArg.cxx:2415
bool isValueDirtyAndClear() const
Definition: RooAbsArg.h:439
RooArgSet * getDependents(const RooAbsData *set) const
Definition: RooAbsArg.h:163
virtual CacheMode canNodeBeCached() const
Definition: RooAbsArg.h:415
bool isConstant() const
Check if the "Constant" attribute is set.
Definition: RooAbsArg.h:365
bool _fast
Definition: RooAbsArg.h:718
void setWorkspace(RooWorkspace &ws)
Definition: RooAbsArg.h:554
virtual TObject * clone(const char *newname=nullptr) const =0
void addParameters(RooAbsCollection &params, const RooArgSet *nset=nullptr, bool stripDisconnected=true) const
Add all parameters of the function and its daughters to params.
Definition: RooAbsArg.cxx:574
const RooArgSet * ownedComponents() const
Definition: RooAbsArg.h:550
void removeServer(RooAbsArg &server, bool force=false)
Unregister another RooAbsArg as a server to us, ie, declare that we no longer depend on its value and...
Definition: RooAbsArg.cxx:401
RooAbsArg & operator=(const RooAbsArg &other)=delete
void setTransientAttribute(const Text_t *name, bool value=true)
Set (default) or clear a named boolean attribute of this object.
Definition: RooAbsArg.cxx:312
void graphVizAddConnections(std::set< std::pair< RooAbsArg *, RooAbsArg * > > &)
Utility function that inserts all point-to-point client-server connections between any two RooAbsArgs...
Definition: RooAbsArg.cxx:2195
void unRegisterProxy(RooArgProxy &proxy)
Remove proxy from proxy list.
Definition: RooAbsArg.cxx:1284
bool checkDependents(const RooArgSet *nset) const
Definition: RooAbsArg.h:171
RooArgSet * getObservables(const RooArgSet &set, bool valueOnly=true) const
Given a set of possible observables, return the observables that this PDF depends on.
Definition: RooAbsArg.h:296
virtual bool canComputeBatchWithCuda() const
Definition: RooAbsArg.h:579
bool _shapeDirty
Definition: RooAbsArg.h:715
const RefCountList_t & shapeClients() const
List of all shape clients of this object.
Definition: RooAbsArg.h:194
void SetName(const char *name) override
Set the name of the TNamed.
Definition: RooAbsArg.cxx:2336
RooSTLRefCountList< RooAbsArg > RefCountList_t
Definition: RooAbsArg.h:74
const RefCountList_t & valueClients() const
List of all value clients of this object. Value clients receive value updates.
Definition: RooAbsArg.h:189
friend std::istream & operator>>(std::istream &is, RooAbsArg &arg)
Istream operator.
Definition: RooAbsArg.cxx:1601
RooArgSet * getObservables(const RooAbsData &data) const
Return the observables of this pdf given the observables defined by data.
Definition: RooAbsArg.h:301
virtual void setExpensiveObjectCache(RooExpensiveObjectCache &cache)
Definition: RooAbsArg.h:506
virtual bool hasRange(const char *) const
Definition: RooAbsArg.h:385
std::set< std::string > _boolAttrib
Definition: RooAbsArg.h:660
void unRegisterCache(RooAbsCache &cache)
Unregister a RooAbsCache. Called from the RooAbsCache destructor.
Definition: RooAbsArg.cxx:2051
RefCountList_t _clientListValue
Definition: RooAbsArg.h:638
bool addOwnedComponents(const RooAbsCollection &comps)
Take ownership of the contents of 'comps'.
Definition: RooAbsArg.cxx:2207
void printAttribList(std::ostream &os) const
Transient boolean attributes (not copied in ctor)
Definition: RooAbsArg.cxx:1610
void printTree(std::ostream &os, TString indent="") const override
Print object tree structure.
Definition: RooAbsArg.cxx:1583
void SetNameTitle(const char *name, const char *title) override
Set all the TNamed parameters (name and title).
Definition: RooAbsArg.cxx:2353
const Text_t * getStringAttribute(const Text_t *key) const
Get string attribute mapped under key 'key'.
Definition: RooAbsArg.cxx:298
bool findConstantNodes(const RooArgSet &observables, RooArgSet &cacheList)
Find branch nodes with all-constant parameters, and add them to the list of nodes that can be cached ...
Definition: RooAbsArg.cxx:1784
virtual RooAbsArg * createFundamental(const char *newname=nullptr) const =0
Create a fundamental-type object that stores our type of value.
static bool _verboseDirty
cache of the list of proxies. Avoids type casting.
Definition: RooAbsArg.h:696
bool _deleteWatch
Definition: RooAbsArg.h:698
void addServerList(RooAbsCollection &serverList, bool valueProp=true, bool shapeProp=false)
Register a list of RooAbsArg as servers to us by calling addServer() for each arg in the list.
Definition: RooAbsArg.cxx:386
virtual bool readFromStream(std::istream &is, bool compact, bool verbose=false)=0
bool dependsOnValue(const RooAbsArg &server, const RooAbsArg *ignoreArg=nullptr) const
Check whether this object depends on values served from the object passed as server.
Definition: RooAbsArg.h:110
RooArgSet * getParameters(const RooArgSet &observables, bool stripDisconnected=true) const
Return the parameters of the p.d.f given the provided set of observables.
Definition: RooAbsArg.h:290
bool redirectServers(const RooAbsCollection &newServerList, bool mustReplaceAll=false, bool nameChange=false, bool isRecursionStep=false)
Replace all direct servers of this object with the new servers in newServerList.
Definition: RooAbsArg.cxx:1020
virtual bool isLValue() const
Is this argument an l-value, i.e., can it appear on the left-hand side of an assignment expression?...
Definition: RooAbsArg.h:254
bool isValueServer(const char *name) const
Check if this is serving values to an object with name name.
Definition: RooAbsArg.h:220
RooFIter serverMIterator() const
Definition: RooAbsArg.h:154
static void setDirtyInhibit(bool flag)
Control global dirty inhibit mode.
Definition: RooAbsArg.cxx:218
virtual void serverNameChangeHook(const RooAbsArg *, const RooAbsArg *)
Definition: RooAbsArg.h:266
virtual void printCompactTreeHook(std::ostream &os, const char *ind="")
Hook function interface for object to insert additional information when printed in the context of a ...
Definition: RooAbsArg.cxx:2029
virtual void setCacheAndTrackHints(RooArgSet &)
Definition: RooAbsArg.h:416
bool recursiveCheckDependents(const RooArgSet *nset) const
Definition: RooAbsArg.h:173
const std::set< std::string > & attributes() const
Definition: RooAbsArg.h:343
bool isShapeServer(const char *name) const
Check if this is serving shape to an object with name name.
Definition: RooAbsArg.h:228
const TNamed * _namePtr
Pointer to global cache manager for any expensive components created by this object.
Definition: RooAbsArg.h:727
void printCompactTree(const char *indent="", const char *fileName=nullptr, const char *namePat=nullptr, RooAbsArg *client=nullptr)
Print tree structure of expression tree on stdout, or to file if filename is specified.
Definition: RooAbsArg.cxx:1915
virtual std::unique_ptr< RooAbsArg > compileForNormSet(RooArgSet const &normSet, RooFit::Detail::CompileContext &ctx) const
Definition: RooAbsArg.cxx:2495
virtual void getParametersHook(const RooArgSet *, RooArgSet *, bool) const
Definition: RooAbsArg.h:597
RooWorkspace * workspace() const
Definition: RooAbsArg.h:555
void clearValueDirty() const
Definition: RooAbsArg.h:605
virtual void ioStreamerPass2()
Method called by workspace container to finalize schema evolution issues that cannot be handled in a ...
Definition: RooAbsArg.cxx:2387
void wireAllCaches()
Definition: RooAbsArg.cxx:2321
virtual bool importWorkspaceHook(RooWorkspace &ws)
Definition: RooAbsArg.h:573
bool _valueDirty
Definition: RooAbsArg.h:714
bool _prohibitServerRedirect
Set of owned component.
Definition: RooAbsArg.h:723
virtual const char * cacheUniqueSuffix() const
Definition: RooAbsArg.h:501
RefCountListLegacyIterator_t * makeLegacyIterator(const RefCountList_t &list) const
Definition: RooAbsArg.cxx:2433
@ NotAdvised
Definition: RooAbsArg.h:392
const RefCountList_t & servers() const
List of all servers of this object.
Definition: RooAbsArg.h:199
std::size_t _dataToken
In which workspace do I live, if any.
Definition: RooAbsArg.h:737
TIterator * valueClientIterator() const
Definition: RooAbsArg.h:130
bool dependsOnValue(const RooAbsCollection &serverList, const RooAbsArg *ignoreArg=nullptr) const
Check whether this object depends on values from an element in the serverList.
Definition: RooAbsArg.h:102
void addServer(RooAbsArg &server, bool valueProp=true, bool shapeProp=false, std::size_t refCount=1)
Register another RooAbsArg as a server to us, ie, declare that we depend on it.
Definition: RooAbsArg.cxx:350
void removeStringAttribute(const Text_t *key)
Delete a string attribute with a given key.
Definition: RooAbsArg.cxx:289
RooArgSet * getVariables(bool stripDisconnected=true) const
Return RooArgSet with all variables (tree leaf nodes of expresssion tree)
Definition: RooAbsArg.cxx:2079
Int_t Compare(const TObject *other) const override
Utility function used by TCollection::Sort to compare contained TObjects We implement comparison by n...
Definition: RooAbsArg.cxx:1666
Int_t defaultPrintContents(Option_t *opt) const override
Define default contents to print.
Definition: RooAbsArg.cxx:1505
virtual bool isDerived() const
Does value or shape of this arg depend on any other arg?
Definition: RooAbsArg.h:92
virtual void attachToTree(TTree &t, Int_t bufSize=32000)=0
Overloadable function for derived classes to implement attachment as branch to a TTree.
Definition: RooAbsArg.cxx:1423
void printComponentTree(const char *indent="", const char *namePat=nullptr, Int_t nLevel=999)
Print tree structure of expression tree on given ostream, only branch nodes are printed.
Definition: RooAbsArg.cxx:1975
OperMode _operMode
Definition: RooAbsArg.h:717
virtual void constOptimizeTestStatistic(ConstOpCode opcode, bool doAlsoTrackingOpt=true)
Interface function signaling a request to perform constant term optimization.
Definition: RooAbsArg.cxx:1875
virtual bool isReducerNode() const
Definition: RooAbsArg.h:580
RooLinkedList getCloningAncestors() const
Return ancestors in cloning chain of this RooAbsArg.
Definition: RooAbsArg.cxx:2089
void setValueDirty()
Mark the element dirty. This forces a re-evaluation when a value is requested.
Definition: RooAbsArg.h:493
bool getAttribute(const Text_t *name) const
Check if a named attribute is set. By default, all attributes are unset.
Definition: RooAbsArg.cxx:268
bool isValueOrShapeDirtyAndClear() const
Definition: RooAbsArg.h:458
RooAbsArg * findServer(const RooAbsArg &arg) const
Return server of this that has the same name as arg. Returns nullptr if not found.
Definition: RooAbsArg.h:208
static void verboseDirty(bool flag)
Activate verbose messaging related to dirty flag propagation.
Definition: RooAbsArg.cxx:227
virtual bool inRange(const char *) const
Definition: RooAbsArg.h:381
virtual void setTreeBranchStatus(TTree &t, bool active)=0
const std::map< std::string, std::string > & stringAttributes() const
Definition: RooAbsArg.h:351
RooAbsCache * getCache(Int_t index) const
Return registered cache object by index.
Definition: RooAbsArg.cxx:2070
virtual void writeToStream(std::ostream &os, bool compact) const =0
void printMultiline(std::ostream &os, Int_t contents, bool verbose=false, TString indent="") const override
Implement multi-line detailed printing.
Definition: RooAbsArg.cxx:1515
virtual RooAbsArg * cloneTree(const char *newname=nullptr) const
Clone tree expression of objects.
Definition: RooAbsArg.cxx:2242
void registerCache(RooAbsCache &cache)
Register RooAbsCache with this object.
Definition: RooAbsArg.cxx:2042
virtual void optimizeCacheMode(const RooArgSet &observables)
Activate cache mode optimization with given definition of observables.
Definition: RooAbsArg.cxx:1708
RefCountList_t _clientListShape
Definition: RooAbsArg.h:637
virtual void attachToVStore(RooVectorDataStore &vstore)=0
TString cleanBranchName() const
Construct a mangled name from the actual name that is free of any math symbols that might be interpre...
Definition: RooAbsArg.cxx:2000
bool inhibitDirty() const
Delete watch flag.
Definition: RooAbsArg.cxx:109
bool observableOverlaps(const RooAbsData *dset, const RooAbsArg &testArg) const
Test if any of the dependents of the arg tree (as determined by getObservables) overlaps with those o...
Definition: RooAbsArg.cxx:895
void changeServer(RooAbsArg &server, bool valueProp, bool shapeProp)
Change dirty flag propagation mask for specified server.
Definition: RooAbsArg.cxx:459
RooAbsArg * findServer(Int_t index) const
Return i-th server from server list.
Definition: RooAbsArg.h:212
Int_t numProxies() const
Return the number of registered proxies.
Definition: RooAbsArg.cxx:1383
@ DeActivate
Definition: RooAbsArg.h:391
@ ValueChange
Definition: RooAbsArg.h:391
@ ConfigChange
Definition: RooAbsArg.h:391
void printName(std::ostream &os) const override
Print object name.
Definition: RooAbsArg.cxx:1445
bool hasClients() const
Definition: RooAbsArg.h:116
const std::set< std::string > & transientAttributes() const
Definition: RooAbsArg.h:359
const RefCountList_t & clients() const
List of all clients of this object.
Definition: RooAbsArg.h:185
RooArgSet * getDependents(const RooArgSet *depList) const
Definition: RooAbsArg.h:165
bool isValueDirty() const
Definition: RooAbsArg.h:424
bool _localNoInhibitDirty
Cached isConstant status.
Definition: RooAbsArg.h:730
virtual void printMetaArgs(std::ostream &) const
Definition: RooAbsArg.h:334
virtual bool isIdentical(const RooAbsArg &other, bool assumeSameType=false) const =0
virtual void applyWeightSquared(bool flag)
Disables or enables the usage of squared weights.
Definition: RooAbsArg.cxx:2488
static bool _inhibitDirty
Definition: RooAbsArg.h:697
void setAttribute(const Text_t *name, bool value=true)
Set (default) or clear a named boolean attribute of this object.
Definition: RooAbsArg.cxx:245
TIterator * shapeClientIterator() const
Definition: RooAbsArg.h:135
void setProxyNormSet(const RooArgSet *nset)
Forward a change in the cached normalization argset to all the registered proxies.
Definition: RooAbsArg.cxx:1394
std::size_t dataToken() const
Returns the token for retrieving results in the BatchMode. For internal use only.
Definition: RooAbsArg.h:707
void branchNodeServerList(RooAbsCollection *list, const RooAbsArg *arg=nullptr, bool recurseNonDerived=false) const
Fill supplied list with all branch nodes of the arg tree starting with ourself as top node.
Definition: RooAbsArg.cxx:504
RefCountList_t _clientList
Definition: RooAbsArg.h:636
void printDirty(bool depth=true) const
Print information about current value dirty state information.
Definition: RooAbsArg.cxx:1678
RooAbsProxy * getProxy(Int_t index) const
Return the nth proxy from the proxy list.
Definition: RooAbsArg.cxx:1370
RooFIter shapeClientMIterator() const
Definition: RooAbsArg.h:150
TObject * Clone(const char *newname=nullptr) const override
Make a clone of an object using the Streamer facility.
Definition: RooAbsArg.h:84
RefCountList_t _serverList
Definition: RooAbsArg.h:635
void clearShapeDirty() const
Definition: RooAbsArg.h:608
void leafNodeServerList(RooAbsCollection *list, const RooAbsArg *arg=nullptr, bool recurseNonDerived=false) const
Fill supplied list with all leaf nodes of the arg tree, starting with ourself as top node.
Definition: RooAbsArg.cxx:493
RooExpensiveObjectCache * _eocache
Prohibit server redirects – Debugging tool.
Definition: RooAbsArg.h:725
virtual bool isFundamental() const
Is this object a fundamental type that can be added to a dataset? Fundamental-type subclasses overrid...
Definition: RooAbsArg.h:242
RooArgSet * getComponents() const
Create a RooArgSet with all components (branch nodes) of the expression tree headed by this object.
Definition: RooAbsArg.cxx:775
virtual bool isValid() const
WVE (08/21/01) Probably obsolete now.
Definition: RooAbsArg.cxx:1434
std::set< std::string > _boolAttribTransient
Definition: RooAbsArg.h:662
bool isCloneOf(const RooAbsArg &other) const
Check if this object was created as a clone of 'other'.
Definition: RooAbsArg.cxx:235
RooArgSet * getParameters(const RooAbsData *data, bool stripDisconnected=true) const
Create a list of leaf nodes in the arg tree starting with ourself as top node that don't match any of...
Definition: RooAbsArg.cxx:562
void printTitle(std::ostream &os) const override
Print object title.
Definition: RooAbsArg.cxx:1455
virtual bool redirectServersHook(const RooAbsCollection &newServerList, bool mustReplaceAll, bool nameChange, bool isRecursiveStep)
Function that is called at the end of redirectServers().
Definition: RooAbsArg.cxx:1239
virtual void fillTreeBranch(TTree &t)=0
std::size_t getParametersSizeEstimate(const RooArgSet *nset=nullptr) const
Obtain an estimate of the number of parameters of the function and its daughters.
Definition: RooAbsArg.cxx:613
void graphVizTree(const char *fileName, const char *delimiter="\n", bool useTitle=false, bool useLatex=false)
Create a GraphViz .dot file visualizing the expression tree headed by this RooAbsArg object.
Definition: RooAbsArg.cxx:2118
bool getTransientAttribute(const Text_t *name) const
Check if a named attribute is set.
Definition: RooAbsArg.cxx:334
virtual void operModeHook()
Definition: RooAbsArg.h:591
TIterator * clientIterator() const
Retrieve a client iterator.
Definition: RooAbsArg.h:125
virtual void optimizeDirtyHook(const RooArgSet *)
Definition: RooAbsArg.h:593
TIterator * serverIterator() const
Definition: RooAbsArg.h:140
bool recursiveCheckObservables(const RooArgSet *nset) const
Recursively call checkObservables on all nodes in the expression tree.
Definition: RooAbsArg.cxx:802
bool isValueServer(const RooAbsArg &arg) const
Check if this is serving values to arg.
Definition: RooAbsArg.h:216
std::map< std::string, std::string > _stringAttrib
Definition: RooAbsArg.h:661
bool localNoDirtyInhibit() const
Definition: RooAbsArg.h:704
Int_t numCaches() const
Return number of registered caches.
Definition: RooAbsArg.cxx:2061
virtual bool checkObservables(const RooArgSet *nset) const
Overloadable function in which derived classes can implement consistency checks of the variables.
Definition: RooAbsArg.cxx:793
RooAbsArg()
Default constructor.
Definition: RooAbsArg.cxx:118
void attachDataSet(const RooAbsData &set)
Replace server nodes with names matching the dataset variable names with those data set variables,...
Definition: RooAbsArg.cxx:1646
TIteratorToSTLInterface< RefCountList_t::Container_t > RefCountListLegacyIterator_t
Definition: RooAbsArg.h:75
RooAbsArg * findServer(const char *name) const
Return server of this with name name. Returns nullptr if not found.
Definition: RooAbsArg.h:203
std::vector< RooAbsCache * > _cacheList
Definition: RooAbsArg.h:642
void treeNodeServerList(RooAbsCollection *list, const RooAbsArg *arg=nullptr, bool doBranch=true, bool doLeaf=true, bool valueOnly=false, bool recurseNonDerived=false) const
Fill supplied list with nodes of the arg tree, following all server links, starting with ourself as t...
Definition: RooAbsArg.cxx:520
bool IsSortable() const override
Definition: RooAbsArg.h:372
RooAbsArg * findNewServer(const RooAbsCollection &newSet, bool nameChange) const
Find the new server in the specified set that matches the old server.
Definition: RooAbsArg.cxx:1129
OperMode operMode() const
Query the operation mode of this node.
Definition: RooAbsArg.h:487
bool dependentOverlaps(const RooArgSet *depList, const RooAbsArg &testArg) const
Definition: RooAbsArg.h:169
RooAbsCache is the abstract base class for data members of RooAbsArgs that cache other (composite) Ro...
Definition: RooAbsCache.h:27
RooAbsCollection is an abstract container object that can hold multiple RooAbsArg objects.
RooAbsDataStore is the abstract base class for data collection that use a TTree as internal storage m...
RooAbsData is the common abstract base class for binned and unbinned datasets.
Definition: RooAbsData.h:61
RooAbsProxy is the abstact interface for proxy classes.
Definition: RooAbsProxy.h:33
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:61
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgList.h:22
RooArgProxy is the abstract interface for RooAbsArg proxy classes.
Definition: RooArgProxy.h:24
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgSet.h:56
RooCollectionProxy is the concrete proxy for RooArgSet or RooArgList objects.
RooCompositeDataStore combines several disjunct datasets into one.
RooDataSet is a container class to hold unbinned data.
Definition: RooDataSet.h:57
RooExpensiveObjectCache is a singleton class that serves as repository for objects that are expensive...
A one-time forward iterator working on RooLinkedList or RooAbsCollection.
RooFitResult is a container class to hold the input and output of a PDF fit to a dataset.
Definition: RooFitResult.h:40
RooHistFunc implements a real-valued function sampled from a multidimensional histogram.
Definition: RooHistFunc.h:31
RooHistPdf implements a probablity density function sampled from a multidimensional histogram.
Definition: RooHistPdf.h:30
RooLinkedList is an collection class for internal use, storing a collection of RooAbsArg pointers in ...
Definition: RooLinkedList.h:38
RooPlotable is a 'mix-in' base class that define the standard RooFit plotting and printing methods.
Definition: RooPrintable.h:25
virtual StyleOption defaultPrintStyle(Option_t *opt) const
static std::ostream & defaultPrintStream(std::ostream *os=nullptr)
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,...
RooRealIntegral performs hybrid numerical/analytical integrals of RooAbsReal objects.
RooRealMPFE is the multi-processor front-end for parallel calculation of RooAbsReal objects.
Definition: RooRealMPFE.h:29
RooRefArray & operator=(const RooRefArray &other)=default
void Streamer(TBuffer &) override
Stream an object of class RooRefArray.
Definition: RooAbsArg.cxx:2440
RooRefArray(const RooRefArray &other)
Definition: RooAbsArg.h:58
~RooRefArray() override
Definition: RooAbsArg.h:61
bool containsSameName(const char *name) const
Check if list contains an item using findByName().
T * findByNamePointer(const T *item) const
Find an item by comparing RooAbsArg::namePtr() adresses.
const Container_t & containedObjects() const
Direct reference to container of objects held by this list.
Container_t::const_iterator end() const
End of contained objects.
bool empty() const
Check if empty.
Container_t::const_iterator findByName(const char *name) const
Find an item by comparing strings returned by RooAbsArg::GetName()
bool containsByNamePtr(const T *obj) const
Check if list contains an item using findByNamePointer().
RooTreeDataStore is a TTree-backed data storage.
RooVectorDataStore uses std::vectors to store data columns.
The RooWorkspace is a persistable container for RooFit projects.
Definition: RooWorkspace.h:43
Buffer base class used for serializing objects.
Definition: TBuffer.h:43
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
An array of TObjects.
Definition: TObjArray.h:31
Mother of all ROOT objects.
Definition: TObject.h:41
Basic string class.
Definition: TString.h:136
A TTree represents a columnar dataset.
Definition: TTree.h:79
std::vector< RooAbsProxy * > cache
Definition: RooAbsArg.h:690