Logo ROOT   6.16/01
Reference Guide
RooAbsReal.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooAbsReal.h,v 1.75 2007/07/13 21:50:24 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_REAL
17#define ROO_ABS_REAL
18
19#include "RooAbsArg.h"
20#include "RooCmdArg.h"
21#include "RooCurve.h"
22#include "RooArgSet.h"
23#include "RooArgList.h"
24#include "RooGlobalFunc.h"
25
26class RooArgList ;
27class RooDataSet ;
28class RooPlot;
29class RooRealVar;
30class RooAbsFunc;
32class RooCategory ;
33class RooLinkedList ;
34class RooNumIntConfig ;
35class RooDataHist ;
36class RooFunctor ;
37class RooGenFunction ;
39class RooFitResult ;
40class RooAbsMoment ;
41class RooDerivative ;
43
44class TH1;
45class TH1F;
46class TH2F;
47class TH3F;
48
49#include <list>
50#include <string>
51#include <iostream>
52
53class RooAbsReal : public RooAbsArg {
54public:
55 // Constructors, assignment etc
56 RooAbsReal() ;
57 RooAbsReal(const char *name, const char *title, const char *unit= "") ;
58 RooAbsReal(const char *name, const char *title, Double_t minVal, Double_t maxVal,
59 const char *unit= "") ;
60 RooAbsReal(const RooAbsReal& other, const char* name=0);
61 virtual ~RooAbsReal();
62
63 /// Evaluate object. Returns either cached value or triggers a recalculation.
64 inline Double_t getVal(const RooArgSet* set=0) const {
65/* if (_fast && !_inhibitDirty && std::string("RooHistFunc")==IsA()->GetName()) std::cout << "RooAbsReal::getVal(" << GetName() << ") CLEAN value = " << _value << std::endl ; */
66#ifndef _WIN32
67 return (_fast && !_inhibitDirty) ? _value : getValV(set) ;
68#else
69 return (_fast && !inhibitDirty()) ? _value : getValV(set) ;
70#endif
71 }
72 /// Evaluate object. Returns either cached value or triggers a recalculation.
73 inline Double_t getVal(const RooArgSet& set) const { return _fast ? _value : getValV(&set) ; }
74
75 virtual Double_t getValV(const RooArgSet* set=0) const ;
76
78
79 Bool_t operator==(Double_t value) const ;
80 virtual Bool_t operator==(const RooAbsArg& other) ;
81 virtual Bool_t isIdentical(const RooAbsArg& other, Bool_t assumeSameType=kFALSE) ;
82
83
84 inline const Text_t *getUnit() const {
85 // Return string with unit description
86 return _unit.Data();
87 }
88 inline void setUnit(const char *unit) {
89 // Set unit description to given string
90 _unit= unit;
91 }
92 TString getTitle(Bool_t appendUnit= kFALSE) const;
93
94 // Lightweight interface adaptors (caller takes ownership)
95 RooAbsFunc *bindVars(const RooArgSet &vars, const RooArgSet* nset=0, Bool_t clipInvalid=kFALSE) const;
96
97 // Create a fundamental-type object that can hold our value.
98 RooAbsArg *createFundamental(const char* newname=0) const;
99
100 // Analytical integration support
101 virtual Int_t getAnalyticalIntegralWN(RooArgSet& allVars, RooArgSet& analVars, const RooArgSet* normSet, const char* rangeName=0) const ;
102 virtual Double_t analyticalIntegralWN(Int_t code, const RooArgSet* normSet, const char* rangeName=0) const ;
103 virtual Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ;
104 virtual Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const ;
105 virtual Bool_t forceAnalyticalInt(const RooAbsArg& /*dep*/) const {
106 // Interface to force RooRealIntegral to offer given observable for internal integration
107 // even if this is deemed unsafe. This default implementation returns always flase
108 return kFALSE ;
109 }
110 virtual void forceNumInt(Bool_t flag=kTRUE) {
111 // If flag is true, all advertised analytical integrals will be ignored
112 // and all integrals are calculated numerically
113 _forceNumInt = flag ;
114 }
115 Bool_t getForceNumInt() const { return _forceNumInt ; }
116
117 // Chi^2 fits to histograms
119 const RooCmdArg& arg3=RooCmdArg::none(), const RooCmdArg& arg4=RooCmdArg::none(), const RooCmdArg& arg5=RooCmdArg::none(),
120 const RooCmdArg& arg6=RooCmdArg::none(), const RooCmdArg& arg7=RooCmdArg::none(), const RooCmdArg& arg8=RooCmdArg::none()) ;
121 virtual RooFitResult* chi2FitTo(RooDataHist& data, const RooLinkedList& cmdList) ;
122
123 virtual RooAbsReal* createChi2(RooDataHist& data, const RooLinkedList& cmdList) ;
125 const RooCmdArg& arg3=RooCmdArg::none(), const RooCmdArg& arg4=RooCmdArg::none(), const RooCmdArg& arg5=RooCmdArg::none(),
126 const RooCmdArg& arg6=RooCmdArg::none(), const RooCmdArg& arg7=RooCmdArg::none(), const RooCmdArg& arg8=RooCmdArg::none()) ;
127
128 // Chi^2 fits to X-Y datasets
129 virtual RooFitResult* chi2FitTo(RooDataSet& xydata, const RooCmdArg& arg1=RooCmdArg::none(), const RooCmdArg& arg2=RooCmdArg::none(),
130 const RooCmdArg& arg3=RooCmdArg::none(), const RooCmdArg& arg4=RooCmdArg::none(), const RooCmdArg& arg5=RooCmdArg::none(),
131 const RooCmdArg& arg6=RooCmdArg::none(), const RooCmdArg& arg7=RooCmdArg::none(), const RooCmdArg& arg8=RooCmdArg::none()) ;
132 virtual RooFitResult* chi2FitTo(RooDataSet& xydata, const RooLinkedList& cmdList) ;
133
134 virtual RooAbsReal* createChi2(RooDataSet& data, const RooLinkedList& cmdList) ;
136 const RooCmdArg& arg3=RooCmdArg::none(), const RooCmdArg& arg4=RooCmdArg::none(), const RooCmdArg& arg5=RooCmdArg::none(),
137 const RooCmdArg& arg6=RooCmdArg::none(), const RooCmdArg& arg7=RooCmdArg::none(), const RooCmdArg& arg8=RooCmdArg::none()) ;
138
139
140 virtual RooAbsReal* createProfile(const RooArgSet& paramsOfInterest) ;
141
142
143 RooAbsReal* createIntegral(const RooArgSet& iset, const RooCmdArg& arg1, const RooCmdArg& arg2=RooCmdArg::none(),
144 const RooCmdArg& arg3=RooCmdArg::none(), const RooCmdArg& arg4=RooCmdArg::none(),
145 const RooCmdArg& arg5=RooCmdArg::none(), const RooCmdArg& arg6=RooCmdArg::none(),
146 const RooCmdArg& arg7=RooCmdArg::none(), const RooCmdArg& arg8=RooCmdArg::none()) const ;
147
148 RooAbsReal* createIntegral(const RooArgSet& iset, const char* rangeName) const {
149 // Create integral over observables in iset in range named rangeName
150 return createIntegral(iset,0,0,rangeName) ;
151 }
152 RooAbsReal* createIntegral(const RooArgSet& iset, const RooArgSet& nset, const char* rangeName=0) const {
153 // Create integral over observables in iset in range named rangeName with integrand normalized over observables in nset
154 return createIntegral(iset,&nset,0,rangeName) ;
155 }
156 RooAbsReal* createIntegral(const RooArgSet& iset, const RooArgSet& nset, const RooNumIntConfig& cfg, const char* rangeName=0) const {
157 // Create integral over observables in iset in range named rangeName with integrand normalized over observables in nset while
158 // using specified configuration for any numeric integration
159 return createIntegral(iset,&nset,&cfg,rangeName) ;
160 }
161 RooAbsReal* createIntegral(const RooArgSet& iset, const RooNumIntConfig& cfg, const char* rangeName=0) const {
162 // Create integral over observables in iset in range named rangeName using specified configuration for any numeric integration
163 return createIntegral(iset,0,&cfg,rangeName) ;
164 }
165 virtual RooAbsReal* createIntegral(const RooArgSet& iset, const RooArgSet* nset=0, const RooNumIntConfig* cfg=0, const char* rangeName=0) const ;
166
167
168 void setParameterizeIntegral(const RooArgSet& paramVars) ;
169
170 // Create running integrals
171 RooAbsReal* createRunningIntegral(const RooArgSet& iset, const RooArgSet& nset=RooArgSet()) ;
172 RooAbsReal* createRunningIntegral(const RooArgSet& iset, const RooCmdArg& arg1, const RooCmdArg& arg2=RooCmdArg::none(),
173 const RooCmdArg& arg3=RooCmdArg::none(), const RooCmdArg& arg4=RooCmdArg::none(),
174 const RooCmdArg& arg5=RooCmdArg::none(), const RooCmdArg& arg6=RooCmdArg::none(),
175 const RooCmdArg& arg7=RooCmdArg::none(), const RooCmdArg& arg8=RooCmdArg::none()) ;
176 RooAbsReal* createIntRI(const RooArgSet& iset, const RooArgSet& nset=RooArgSet()) ;
177 RooAbsReal* createScanRI(const RooArgSet& iset, const RooArgSet& nset, Int_t numScanBins, Int_t intOrder) ;
178
179
180 // Optimized accept/reject generator support
181 virtual Int_t getMaxVal(const RooArgSet& vars) const ;
182 virtual Double_t maxVal(Int_t code) const ;
183 virtual Int_t minTrialSamples(const RooArgSet& /*arGenObs*/) const { return 0 ; }
184
185
186 // Plotting options
187 void setPlotLabel(const char *label);
188 const char *getPlotLabel() const;
189
190 virtual Double_t defaultErrorLevel() const {
191 // Return default level for MINUIT error analysis
192 return 1.0 ;
193 }
194
195 const RooNumIntConfig* getIntegratorConfig() const ;
200 void setIntegratorConfig() ;
201 void setIntegratorConfig(const RooNumIntConfig& config) ;
202
203 virtual void fixAddCoefNormalization(const RooArgSet& addNormSet=RooArgSet(),Bool_t force=kTRUE) ;
204 virtual void fixAddCoefRange(const char* rangeName=0,Bool_t force=kTRUE) ;
205
206 virtual void preferredObservableScanOrder(const RooArgSet& obs, RooArgSet& orderedObs) const ;
207
208 // User entry point for plotting
209 virtual RooPlot* plotOn(RooPlot* frame,
210 const RooCmdArg& arg1=RooCmdArg(), const RooCmdArg& arg2=RooCmdArg(),
211 const RooCmdArg& arg3=RooCmdArg(), const RooCmdArg& arg4=RooCmdArg(),
212 const RooCmdArg& arg5=RooCmdArg(), const RooCmdArg& arg6=RooCmdArg(),
213 const RooCmdArg& arg7=RooCmdArg(), const RooCmdArg& arg8=RooCmdArg(),
214 const RooCmdArg& arg9=RooCmdArg(), const RooCmdArg& arg10=RooCmdArg()
215 ) const ;
216
217
219
220 // Forwarder function for backward compatibility
221 virtual RooPlot *plotSliceOn(RooPlot *frame, const RooArgSet& sliceSet, Option_t* drawOptions="L",
222 Double_t scaleFactor=1.0, ScaleType stype=Relative, const RooAbsData* projData=0) const;
223
224 // Fill an existing histogram
225 TH1 *fillHistogram(TH1 *hist, const RooArgList &plotVars,
226 Double_t scaleFactor= 1, const RooArgSet *projectedVars= 0, Bool_t scaling=kTRUE,
227 const RooArgSet* condObs=0, Bool_t setError=kTRUE) const;
228
229 // Create 1,2, and 3D histograms from and fill it
230 TH1 *createHistogram(const char* varNameList, Int_t xbins=0, Int_t ybins=0, Int_t zbins=0) const ;
231 TH1* createHistogram(const char *name, const RooAbsRealLValue& xvar, RooLinkedList& argList) const ;
232 TH1 *createHistogram(const char *name, const RooAbsRealLValue& xvar,
233 const RooCmdArg& arg1=RooCmdArg::none(), const RooCmdArg& arg2=RooCmdArg::none(),
234 const RooCmdArg& arg3=RooCmdArg::none(), const RooCmdArg& arg4=RooCmdArg::none(),
235 const RooCmdArg& arg5=RooCmdArg::none(), const RooCmdArg& arg6=RooCmdArg::none(),
236 const RooCmdArg& arg7=RooCmdArg::none(), const RooCmdArg& arg8=RooCmdArg::none()) const ;
237
238 // Fill a RooDataHist
239 RooDataHist* fillDataHist(RooDataHist *hist, const RooArgSet* nset, Double_t scaleFactor,
240 Bool_t correctForBinVolume=kFALSE, Bool_t showProgress=kFALSE) const ;
241
242 // I/O streaming interface (machine readable)
243 virtual Bool_t readFromStream(std::istream& is, Bool_t compact, Bool_t verbose=kFALSE) ;
244 virtual void writeToStream(std::ostream& os, Bool_t compact) const ;
245
246 // Printing interface (human readable)
247 virtual void printValue(std::ostream& os) const ;
248 virtual void printMultiline(std::ostream& os, Int_t contents, Bool_t verbose=kFALSE, TString indent="") const ;
249
250 static void setCacheCheck(Bool_t flag) ;
251
252 // Evaluation error logging
253 class EvalError {
254 public:
256 EvalError(const EvalError& other) : _msg(other._msg), _srvval(other._srvval) { }
257 void setMessage(const char* tmp) { std::string s(tmp); s.swap(_msg); }
258 void setServerValues(const char* tmp) { std::string s(tmp); s.swap(_srvval); }
259 std::string _msg;
260 std::string _srvval;
261 } ;
262
266 void logEvalError(const char* message, const char* serverValueString=0) const ;
267 static void logEvalError(const RooAbsReal* originator, const char* origName, const char* message, const char* serverValueString=0) ;
268 static void printEvalErrors(std::ostream&os=std::cout, Int_t maxPerNode=10000000) ;
269 static Int_t numEvalErrors() ;
270 static Int_t numEvalErrorItems() ;
271
272
273 typedef std::map<const RooAbsArg*,std::pair<std::string,std::list<EvalError> > >::const_iterator EvalErrorIter ;
275
276 static void clearEvalErrorLog() ;
277
278 virtual Bool_t isBinnedDistribution(const RooArgSet& /*obs*/) const { return kFALSE ; }
279 virtual std::list<Double_t>* binBoundaries(RooAbsRealLValue& /*obs*/, Double_t /*xlo*/, Double_t /*xhi*/) const { return 0 ; }
280 virtual std::list<Double_t>* plotSamplingHint(RooAbsRealLValue& /*obs*/, Double_t /*xlo*/, Double_t /*xhi*/) const {
281 // Interface for returning an optional hint for initial sampling points when constructing a curve
282 // projected on observable.
283 return 0 ;
284 }
285
287 RooMultiGenFunction* iGenFunction(const RooArgSet& observables, const RooArgSet& nset=RooArgSet()) ;
288
289 RooFunctor* functor(const RooArgList& obs, const RooArgList& pars=RooArgList(), const RooArgSet& nset=RooArgSet()) const ;
290 TF1* asTF(const RooArgList& obs, const RooArgList& pars=RooArgList(), const RooArgSet& nset=RooArgSet()) const ;
291
292 RooDerivative* derivative(RooRealVar& obs, Int_t order=1, Double_t eps=0.001) ;
293 RooDerivative* derivative(RooRealVar& obs, const RooArgSet& normSet, Int_t order, Double_t eps=0.001) ;
294
295 RooAbsMoment* moment(RooRealVar& obs, Int_t order, Bool_t central, Bool_t takeRoot) ;
296 RooAbsMoment* moment(RooRealVar& obs, const RooArgSet& normObs, Int_t order, Bool_t central, Bool_t takeRoot, Bool_t intNormObs) ;
297
298 RooAbsMoment* mean(RooRealVar& obs) { return moment(obs,1,kFALSE,kFALSE) ; }
299 RooAbsMoment* mean(RooRealVar& obs, const RooArgSet& nset) { return moment(obs,nset,1,kFALSE,kFALSE,kTRUE) ; }
300 RooAbsMoment* sigma(RooRealVar& obs) { return moment(obs,2,kTRUE,kTRUE) ; }
301 RooAbsMoment* sigma(RooRealVar& obs, const RooArgSet& nset) { return moment(obs,nset,2,kTRUE,kTRUE,kTRUE) ; }
302
304
305
306 virtual Bool_t setData(RooAbsData& /*data*/, Bool_t /*cloneData*/=kTRUE) { return kTRUE ; }
307
308 virtual void enableOffsetting(Bool_t) {} ;
309 virtual Bool_t isOffsetting() const { return kFALSE ; }
310 virtual Double_t offset() const { return 0 ; }
311
312 static void setHideOffset(Bool_t flag);
313 static Bool_t hideOffset() ;
314
315protected:
316 // Hook for objects with normalization-dependent parameters interperetation
317 virtual void selectNormalization(const RooArgSet* depSet=0, Bool_t force=kFALSE) ;
318 virtual void selectNormalizationRange(const char* rangeName=0, Bool_t force=kFALSE) ;
319
320 // Helper functions for plotting
321 Bool_t plotSanityChecks(RooPlot* frame) const ;
322 void makeProjectionSet(const RooAbsArg* plotVar, const RooArgSet* allVars,
323 RooArgSet& projectedVars, Bool_t silent) const ;
324
325 TString integralNameSuffix(const RooArgSet& iset, const RooArgSet* nset=0, const char* rangeName=0, Bool_t omitEmpty=kFALSE) const ;
326
327
328 Bool_t isSelectedComp() const ;
329
330
331 public:
332 const RooAbsReal* createPlotProjection(const RooArgSet& depVars, const RooArgSet& projVars) const ;
333 const RooAbsReal* createPlotProjection(const RooArgSet& depVars, const RooArgSet& projVars, RooArgSet*& cloneSet) const ;
334 const RooAbsReal *createPlotProjection(const RooArgSet &dependentVars, const RooArgSet *projectedVars,
335 RooArgSet *&cloneSet, const char* rangeName=0, const RooArgSet* condObs=0) const;
336 protected:
337
339
340 void plotOnCompSelect(RooArgSet* selNodes) const ;
341 RooPlot* plotOnWithErrorBand(RooPlot* frame,const RooFitResult& fr, Double_t Z, const RooArgSet* params, const RooLinkedList& argList, Bool_t method1) const ;
342
343 // Support interface for subclasses to advertise their analytic integration
344 // and generator capabilities in their analticalIntegral() and generateEvent()
345 // implementations.
346 Bool_t matchArgs(const RooArgSet& allDeps, RooArgSet& numDeps,
347 const RooArgProxy& a) const ;
348 Bool_t matchArgs(const RooArgSet& allDeps, RooArgSet& numDeps,
349 const RooArgProxy& a, const RooArgProxy& b) const ;
350 Bool_t matchArgs(const RooArgSet& allDeps, RooArgSet& numDeps,
351 const RooArgProxy& a, const RooArgProxy& b, const RooArgProxy& c) const ;
352 Bool_t matchArgs(const RooArgSet& allDeps, RooArgSet& numDeps,
353 const RooArgProxy& a, const RooArgProxy& b,
354 const RooArgProxy& c, const RooArgProxy& d) const ;
355
356 Bool_t matchArgs(const RooArgSet& allDeps, RooArgSet& numDeps,
357 const RooArgSet& set) const ;
358
359
360 RooAbsReal* createIntObj(const RooArgSet& iset, const RooArgSet* nset, const RooNumIntConfig* cfg, const char* rangeName) const ;
361 void findInnerMostIntegration(const RooArgSet& allObs, RooArgSet& innerObs, const char* rangeName) const ;
362
363
364 // Internal consistency checking (needed by RooDataSet)
365 virtual Bool_t isValid() const ;
366 virtual Bool_t isValidReal(Double_t value, Bool_t printError=kFALSE) const ;
367
368 // Function evaluation and error tracing
369 Double_t traceEval(const RooArgSet* set) const ;
370 virtual Bool_t traceEvalHook(Double_t /*value*/) const {
371 // Hook function to add functionality to evaluation tracing in derived classes
372 return kFALSE ;
373 }
374 /// Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
375 virtual Double_t evaluate() const = 0 ;
376
377 // Hooks for RooDataSet interface
378 friend class RooRealIntegral ;
379 friend class RooVectorDataStore ;
380 virtual void syncCache(const RooArgSet* set=0) { getVal(set) ; }
381 virtual void copyCache(const RooAbsArg* source, Bool_t valueOnly=kFALSE, Bool_t setValDirty=kTRUE) ;
382 virtual void attachToTree(TTree& t, Int_t bufSize=32000) ;
383 virtual void attachToVStore(RooVectorDataStore& vstore) ;
384 virtual void setTreeBranchStatus(TTree& t, Bool_t active) ;
385 virtual void fillTreeBranch(TTree& t) ;
386
387 friend class RooRealBinding ;
388 Double_t _plotMin ; // Minimum of plot range
389 Double_t _plotMax ; // Maximum of plot range
390 Int_t _plotBins ; // Number of plot bins
391 mutable Double_t _value ; // Cache for current value of object
392 TString _unit ; // Unit for objects value
393 TString _label ; // Plot label for objects value
394 Bool_t _forceNumInt ; // Force numerical integration if flag set
395
396 mutable Float_t _floatValue ; //! Transient cache for floating point values from tree branches
397 mutable Int_t _intValue ; //! Transient cache for integer values from tree branches
398 mutable Bool_t _boolValue ; //! Transient cache for bool values from tree branches
399 mutable UChar_t _byteValue ; //! Transient cache for byte values from tree branches
400 mutable Char_t _sbyteValue ; //! Transient cache for signed byte values from tree branches
401 mutable UInt_t _uintValue ; //! Transient cache for unsigned integer values from tree branches
402
403 friend class RooAbsPdf ;
404 friend class RooAbsAnaConvPdf ;
405 friend class RooRealProxy ;
406
407 RooNumIntConfig* _specIntegratorConfig ; // Numeric integrator configuration specific for this object
408
409 Bool_t _treeVar ; // !do not persist
410
411 static Bool_t _cacheCheck ; // If true, always validate contents of clean which outcome of evaluate()
412
413 friend class RooDataProjBinding ;
415
416 struct PlotOpt {
430 const char* normRangeName ;
437 const char* curveName ;
438 const char* addToCurveName ;
443 const char* curveNameSuffix ;
448 } ;
449
450 // Plot implementation functions
451 virtual RooPlot *plotOn(RooPlot* frame, PlotOpt o) const;
452
453public:
454 // PlotOn with command list
455 virtual RooPlot* plotOn(RooPlot* frame, RooLinkedList& cmdList) const ;
456
457 protected:
458 virtual RooPlot *plotAsymOn(RooPlot *frame, const RooAbsCategoryLValue& asymCat, PlotOpt o) const;
459
460
461private:
462
464 static std::map<const RooAbsArg*,std::pair<std::string,std::list<EvalError> > > _evalErrorList ;
466
467 Bool_t matchArgsByName(const RooArgSet &allArgs, RooArgSet &matchedArgs, const TList &nameList) const;
468
469protected:
470
471
472 friend class RooRealSumPdf ;
473 friend class RooRealSumFunc;
474 friend class RooAddPdf ;
475 friend class RooAddModel ;
476 void selectComp(Bool_t flag) {
477 // If flag is true, only selected component will be included in evaluates of RooAddPdf components
478 _selectComp = flag ;
479 }
480 static void globalSelectComp(Bool_t flag) ;
481 Bool_t _selectComp ; //! Component selection flag for RooAbsPdf::plotCompOn
482 static Bool_t _globalSelectComp ; // Global activation switch for component selection
483
484 mutable RooArgSet* _lastNSet ; //!
485 static Bool_t _hideOffset ; // Offset hiding flag
486
487 ClassDef(RooAbsReal,2) // Abstract real-valued variable
488};
489
490#endif
#define d(i)
Definition: RSha256.hxx:102
#define b(i)
Definition: RSha256.hxx:100
#define c(i)
Definition: RSha256.hxx:101
#define e(i)
Definition: RSha256.hxx:103
int Int_t
Definition: RtypesCore.h:41
char Text_t
Definition: RtypesCore.h:58
unsigned char UChar_t
Definition: RtypesCore.h:34
char Char_t
Definition: RtypesCore.h:29
unsigned int UInt_t
Definition: RtypesCore.h:42
const Bool_t kFALSE
Definition: RtypesCore.h:88
bool Bool_t
Definition: RtypesCore.h:59
double Double_t
Definition: RtypesCore.h:55
float Float_t
Definition: RtypesCore.h:53
const Bool_t kTRUE
Definition: RtypesCore.h:87
const char Option_t
Definition: RtypesCore.h:62
#define ClassDef(name, id)
Definition: Rtypes.h:324
float xmin
Definition: THbookFile.cxx:93
float xmax
Definition: THbookFile.cxx:93
RooAbsArg is the common abstract base class for objects that represent a value (of arbitrary type) an...
Definition: RooAbsArg.h:66
Bool_t _fast
Definition: RooAbsArg.h:576
friend class RooArgSet
Definition: RooAbsArg.h:471
Bool_t inhibitDirty() const
Delete watch flag.
Definition: RooAbsArg.cxx:84
static Bool_t _inhibitDirty
Definition: RooAbsArg.h:558
RooAbsCategoryLValue is the common abstract base class for objects that represent a discrete value th...
RooAbsData is the common abstract base class for binned and unbinned datasets.
Definition: RooAbsData.h:37
Abstract interface for evaluating a real-valued function of one real variable and performing numerica...
Definition: RooAbsFunc.h:23
RooAbsMoment represents the first, second, or third order derivative of any RooAbsReal as calculated ...
Definition: RooAbsMoment.h:27
RooAbsPdf is the abstract interface for all probability density functions The class provides hybrid a...
Definition: RooAbsPdf.h:41
RooAbsRealLValue is the common abstract base class for objects that represent a real value that may a...
void setServerValues(const char *tmp)
Definition: RooAbsReal.h:258
std::string _srvval
Definition: RooAbsReal.h:260
void setMessage(const char *tmp)
Definition: RooAbsReal.h:257
EvalError(const EvalError &other)
Definition: RooAbsReal.h:256
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:53
void plotOnCompSelect(RooArgSet *selNodes) const
Helper function for plotting of composite p.d.fs.
RooGenFunction * iGenFunction(RooRealVar &x, const RooArgSet &nset=RooArgSet())
virtual RooPlot * plotSliceOn(RooPlot *frame, const RooArgSet &sliceSet, Option_t *drawOptions="L", Double_t scaleFactor=1.0, ScaleType stype=Relative, const RooAbsData *projData=0) const
virtual Bool_t readFromStream(std::istream &is, Bool_t compact, Bool_t verbose=kFALSE)
Read object contents from stream (dummy for now)
Definition: RooAbsReal.cxx:394
TString _label
Definition: RooAbsReal.h:393
@ RelativeExpected
Definition: RooAbsReal.h:218
RooAbsReal * createIntegral(const RooArgSet &iset, const RooNumIntConfig &cfg, const char *rangeName=0) const
Definition: RooAbsReal.h:161
virtual Bool_t isIdentical(const RooAbsArg &other, Bool_t assumeSameType=kFALSE)
Definition: RooAbsReal.cxx:215
RooAbsMoment * mean(RooRealVar &obs)
Definition: RooAbsReal.h:298
TH1 * fillHistogram(TH1 *hist, const RooArgList &plotVars, Double_t scaleFactor=1, const RooArgSet *projectedVars=0, Bool_t scaling=kTRUE, const RooArgSet *condObs=0, Bool_t setError=kTRUE) const
Fill the ROOT histogram 'hist' with values sampled from this function at the bin centers.
virtual void selectNormalizationRange(const char *rangeName=0, Bool_t force=kFALSE)
Interface function to force use of a given normalization range to interpret function value.
TString getTitle(Bool_t appendUnit=kFALSE) const
Return this variable's title string.
Definition: RooAbsReal.cxx:230
virtual Bool_t isOffsetting() const
Definition: RooAbsReal.h:309
static Int_t numEvalErrorItems()
Definition: RooAbsReal.cxx:270
static void setHideOffset(Bool_t flag)
Definition: RooAbsReal.cxx:117
RooAbsReal()
coverity[UNINIT_CTOR] Default constructor
Definition: RooAbsReal.cxx:129
virtual Int_t getAnalyticalIntegralWN(RooArgSet &allVars, RooArgSet &analVars, const RooArgSet *normSet, const char *rangeName=0) const
Variant of getAnalyticalIntegral that is also passed the normalization set that should be applied to ...
Definition: RooAbsReal.cxx:319
Bool_t _forceNumInt
Definition: RooAbsReal.h:394
RooAbsReal * createScanRI(const RooArgSet &iset, const RooArgSet &nset, Int_t numScanBins, Int_t intOrder)
Utility function for createRunningIntegral that construct an object implementing the numeric scanning...
virtual Double_t defaultErrorLevel() const
Definition: RooAbsReal.h:190
UChar_t _byteValue
Transient cache for bool values from tree branches.
Definition: RooAbsReal.h:399
Bool_t isSelectedComp() const
If true, the current pdf is a selected component (for use in plotting)
virtual RooAbsReal * createChi2(RooDataHist &data, const RooLinkedList &cmdList)
Create a variable from a histogram and this function.
RooArgSet * _lastNSet
Definition: RooAbsReal.h:484
RooDerivative * derivative(RooRealVar &obs, Int_t order=1, Double_t eps=0.001)
Return function representing first, second or third order derivative of this function.
Float_t _floatValue
Definition: RooAbsReal.h:396
virtual Bool_t isValidReal(Double_t value, Bool_t printError=kFALSE) const
Interface function to check if given value is a valid value for this object.
Definition: RooAbsReal.cxx:449
virtual std::list< Double_t > * plotSamplingHint(RooAbsRealLValue &, Double_t, Double_t) const
Definition: RooAbsReal.h:280
static Bool_t _cacheCheck
Definition: RooAbsReal.h:411
virtual RooPlot * plotOn(RooPlot *frame, 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 RooCmdArg &arg9=RooCmdArg(), const RooCmdArg &arg10=RooCmdArg()) const
Plot (project) PDF on specified frame.
void setParameterizeIntegral(const RooArgSet &paramVars)
static Bool_t hideOffset()
Definition: RooAbsReal.cxx:118
virtual Double_t evaluate() const =0
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
virtual void setTreeBranchStatus(TTree &t, Bool_t active)
(De)Activate associated tree branch
virtual RooAbsReal * createProfile(const RooArgSet &paramsOfInterest)
Create a RooProfileLL object that eliminates all nuisance parameters in the present function.
Definition: RooAbsReal.cxx:462
RooAbsReal * createIntegral(const RooArgSet &iset, const RooArgSet &nset, const RooNumIntConfig &cfg, const char *rangeName=0) const
Definition: RooAbsReal.h:156
TString integralNameSuffix(const RooArgSet &iset, const RooArgSet *nset=0, const char *rangeName=0, Bool_t omitEmpty=kFALSE) const
Construct string with unique suffix name to give to integral object that encodes integrated observabl...
Definition: RooAbsReal.cxx:756
virtual Double_t getValV(const RooArgSet *set=0) const
Return value of object.
Definition: RooAbsReal.cxx:248
Double_t traceEval(const RooArgSet *set) const
Calculate current value of object, with error tracing wrapper.
Definition: RooAbsReal.cxx:287
Int_t _intValue
Transient cache for floating point values from tree branches.
Definition: RooAbsReal.h:397
Double_t getPropagatedError(const RooFitResult &fr, const RooArgSet &nset=RooArgSet())
Calculate error on self by propagated errors on parameters with correlations as given by fit result T...
virtual void copyCache(const RooAbsArg *source, Bool_t valueOnly=kFALSE, Bool_t setValDirty=kTRUE)
Copy the cached value of another RooAbsArg to our cache.
virtual void fixAddCoefRange(const char *rangeName=0, Bool_t force=kTRUE)
Fix the interpretation of the coefficient of any RooAddPdf component in the expression tree headed by...
TH1 * createHistogram(const char *varNameList, Int_t xbins=0, Int_t ybins=0, Int_t zbins=0) const
Create and fill a ROOT histogram TH1, TH2 or TH3 with the values of this function for the variables w...
static EvalErrorIter evalErrorIter()
Definition: RooAbsReal.cxx:278
Double_t findRoot(RooRealVar &x, Double_t xmin, Double_t xmax, Double_t yval)
Return value of x (in range xmin,xmax) at which function equals yval.
RooAbsReal * createIntRI(const RooArgSet &iset, const RooArgSet &nset=RooArgSet())
Utility function for createRunningIntegral that construct an object implementing the standard (analyt...
TF1 * asTF(const RooArgList &obs, const RooArgList &pars=RooArgList(), const RooArgSet &nset=RooArgSet()) const
Return a ROOT TF1,2,3 object bound to this RooAbsReal with given definition of observables and parame...
virtual Double_t analyticalIntegralWN(Int_t code, const RooArgSet *normSet, const char *rangeName=0) const
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral.
Definition: RooAbsReal.cxx:348
virtual void attachToVStore(RooVectorDataStore &vstore)
TString _unit
Definition: RooAbsReal.h:392
static RooNumIntConfig * defaultIntegratorConfig()
Returns the default numeric integration configuration for all RooAbsReals.
RooFitResult * chi2FitDriver(RooAbsReal &fcn, RooLinkedList &cmdList)
Internal driver function for chi2 fits.
friend class RooAbsOptGoodnessOfFit
Definition: RooAbsReal.h:414
Double_t _value
Definition: RooAbsReal.h:391
virtual std::list< Double_t > * binBoundaries(RooAbsRealLValue &, Double_t, Double_t) const
Definition: RooAbsReal.h:279
virtual void attachToTree(TTree &t, Int_t bufSize=32000)
Attach object to a branch of given TTree.
Bool_t matchArgs(const RooArgSet &allDeps, RooArgSet &numDeps, const RooArgProxy &a) const
Utility function for use in getAnalyticalIntegral().
RooNumIntConfig * _specIntegratorConfig
Definition: RooAbsReal.h:407
virtual RooPlot * plotAsymOn(RooPlot *frame, const RooAbsCategoryLValue &asymCat, PlotOpt o) const
static ErrorLoggingMode evalErrorLoggingMode()
Return current evaluation error logging mode.
virtual Bool_t forceAnalyticalInt(const RooAbsArg &) const
Definition: RooAbsReal.h:105
virtual Int_t minTrialSamples(const RooArgSet &) const
Definition: RooAbsReal.h:183
void setIntegratorConfig()
Remove the specialized numeric integration configuration associated with this object.
static void setCacheCheck(Bool_t flag)
Activate cache validation mode.
virtual void selectNormalization(const RooArgSet *depSet=0, Bool_t force=kFALSE)
Interface function to force use of a given set of observables to interpret function value.
void setUnit(const char *unit)
Definition: RooAbsReal.h:88
virtual void printMultiline(std::ostream &os, Int_t contents, Bool_t verbose=kFALSE, TString indent="") const
Structure printing.
Definition: RooAbsReal.cxx:423
virtual void syncCache(const RooArgSet *set=0)
Definition: RooAbsReal.h:380
RooAbsMoment * moment(RooRealVar &obs, Int_t order, Bool_t central, Bool_t takeRoot)
Return function representing moment of function of given order.
static ErrorLoggingMode _evalErrorMode
Definition: RooAbsReal.h:463
virtual void enableOffsetting(Bool_t)
Definition: RooAbsReal.h:308
static Int_t _evalErrorCount
Definition: RooAbsReal.h:465
virtual Bool_t isValid() const
Check if current value is valid.
Definition: RooAbsReal.cxx:438
static void globalSelectComp(Bool_t flag)
Global switch controlling the activation of the selectComp() functionality.
RooAbsArg * createFundamental(const char *newname=0) const
Create a RooRealVar fundamental object with our properties.
virtual Bool_t setData(RooAbsData &, Bool_t=kTRUE)
Definition: RooAbsReal.h:306
Double_t getVal(const RooArgSet *set=0) const
Evaluate object. Returns either cached value or triggers a recalculation.
Definition: RooAbsReal.h:64
std::map< constRooAbsArg *, std::pair< std::string, std::list< EvalError > > >::const_iterator EvalErrorIter
Definition: RooAbsReal.h:273
virtual Double_t maxVal(Int_t code) const
Return maximum value for set of observables identified by code assigned in getMaxVal.
static Bool_t _globalSelectComp
Component selection flag for RooAbsPdf::plotCompOn.
Definition: RooAbsReal.h:482
RooAbsReal * createIntegral(const RooArgSet &iset, const RooCmdArg &arg1, const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none(), const RooCmdArg &arg6=RooCmdArg::none(), const RooCmdArg &arg7=RooCmdArg::none(), const RooCmdArg &arg8=RooCmdArg::none()) const
Create an object that represents the integral of the function over one or more observables listed in ...
Definition: RooAbsReal.cxx:502
RooNumIntConfig * specialIntegratorConfig() const
Returns the specialized integrator configuration for this RooAbsReal.
RooAbsReal * createIntObj(const RooArgSet &iset, const RooArgSet *nset, const RooNumIntConfig *cfg, const char *rangeName) const
Utility function for createIntegral that creates the actual integreal object.
Definition: RooAbsReal.cxx:577
RooAbsReal * createIntegral(const RooArgSet &iset, const RooArgSet &nset, const char *rangeName=0) const
Definition: RooAbsReal.h:152
Bool_t getForceNumInt() const
Definition: RooAbsReal.h:115
static std::map< const RooAbsArg *, std::pair< std::string, std::list< EvalError > > > _evalErrorList
Definition: RooAbsReal.h:464
virtual void forceNumInt(Bool_t flag=kTRUE)
Definition: RooAbsReal.h:110
Bool_t plotSanityChecks(RooPlot *frame) const
Utility function for plotOn(), perform general sanity check on frame to ensure safe plotting operatio...
Double_t _plotMin
Definition: RooAbsReal.h:388
Char_t _sbyteValue
Transient cache for byte values from tree branches.
Definition: RooAbsReal.h:400
const char * getPlotLabel() const
Get the label associated with the variable.
Definition: RooAbsReal.cxx:374
virtual RooFitResult * chi2FitTo(RooDataHist &data, const RooCmdArg &arg1=RooCmdArg::none(), const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none(), const RooCmdArg &arg6=RooCmdArg::none(), const RooCmdArg &arg7=RooCmdArg::none(), const RooCmdArg &arg8=RooCmdArg::none())
Perform a fit to given histogram.
virtual void fillTreeBranch(TTree &t)
Fill the tree branch that associated with this object with its current value.
Bool_t operator==(Double_t value) const
Equality operator comparing to a Double_t.
Definition: RooAbsReal.cxx:195
RooAbsFunc * bindVars(const RooArgSet &vars, const RooArgSet *nset=0, Bool_t clipInvalid=kFALSE) const
Create an interface adaptor f(vars) that binds us to the specified variables (in arbitrary order).
static Int_t numEvalErrors()
Return the number of logged evaluation errors since the last clearing.
static void setEvalErrorLoggingMode(ErrorLoggingMode m)
Set evaluation error logging mode.
Bool_t matchArgsByName(const RooArgSet &allArgs, RooArgSet &matchedArgs, const TList &nameList) const
Check if allArgs contains matching elements for each name in nameList.
virtual Double_t analyticalIntegral(Int_t code, const char *rangeName=0) const
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral.
Definition: RooAbsReal.cxx:362
virtual Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=0) const
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
Definition: RooAbsReal.cxx:336
virtual void preferredObservableScanOrder(const RooArgSet &obs, RooArgSet &orderedObs) const
Interface method for function objects to indicate their prefferred order of observables for scanning ...
void findInnerMostIntegration(const RooArgSet &allObs, RooArgSet &innerObs, const char *rangeName) const
Utility function for createIntObj() that aids in the construct of recursive integrals over functions ...
Definition: RooAbsReal.cxx:698
Double_t getVal(const RooArgSet &set) const
Evaluate object. Returns either cached value or triggers a recalculation.
Definition: RooAbsReal.h:73
void selectComp(Bool_t flag)
Definition: RooAbsReal.h:476
RooAbsReal * createIntegral(const RooArgSet &iset, const char *rangeName) const
Definition: RooAbsReal.h:148
static Bool_t _hideOffset
Definition: RooAbsReal.h:485
const Text_t * getUnit() const
Definition: RooAbsReal.h:84
virtual void printValue(std::ostream &os) const
Print object value.
Definition: RooAbsReal.cxx:413
const RooNumIntConfig * getIntegratorConfig() const
Return the numeric integration configuration used for this object.
Bool_t _boolValue
Transient cache for integer values from tree branches.
Definition: RooAbsReal.h:398
virtual Bool_t isBinnedDistribution(const RooArgSet &) const
Definition: RooAbsReal.h:278
RooPlot * plotOnWithErrorBand(RooPlot *frame, const RooFitResult &fr, Double_t Z, const RooArgSet *params, const RooLinkedList &argList, Bool_t method1) const
Plot function or PDF on frame with support for visualization of the uncertainty encoded in the given ...
static void printEvalErrors(std::ostream &os=std::cout, Int_t maxPerNode=10000000)
Print all outstanding logged evaluation error on the given ostream.
virtual void fixAddCoefNormalization(const RooArgSet &addNormSet=RooArgSet(), Bool_t force=kTRUE)
Fix the interpretation of the coefficient of any RooAddPdf component in the expression tree headed by...
void logEvalError(const char *message, const char *serverValueString=0) const
Log evaluation error message.
static void clearEvalErrorLog()
Clear the stack of evaluation error messages.
RooAbsMoment * sigma(RooRealVar &obs, const RooArgSet &nset)
Definition: RooAbsReal.h:301
Bool_t _selectComp
Definition: RooAbsReal.h:481
Bool_t _treeVar
Definition: RooAbsReal.h:409
RooFunctor * functor(const RooArgList &obs, const RooArgList &pars=RooArgList(), const RooArgSet &nset=RooArgSet()) const
Return a RooFunctor object bound to this RooAbsReal with given definition of observables and paramete...
UInt_t _uintValue
Transient cache for signed byte values from tree branches.
Definition: RooAbsReal.h:401
virtual Bool_t traceEvalHook(Double_t) const
Definition: RooAbsReal.h:370
void makeProjectionSet(const RooAbsArg *plotVar, const RooArgSet *allVars, RooArgSet &projectedVars, Bool_t silent) const
Utility function for plotOn() that constructs the set of observables to project when plotting ourselv...
Int_t _plotBins
Definition: RooAbsReal.h:390
void setPlotLabel(const char *label)
Set the label associated with this variable.
Definition: RooAbsReal.cxx:384
virtual ~RooAbsReal()
Destructor.
Definition: RooAbsReal.cxx:185
virtual Int_t getMaxVal(const RooArgSet &vars) const
Advertise capability to determine maximum value of function for given set of observables.
RooAbsMoment * mean(RooRealVar &obs, const RooArgSet &nset)
Definition: RooAbsReal.h:299
virtual void writeToStream(std::ostream &os, Bool_t compact) const
Write object contents to stream (dummy for now)
Definition: RooAbsReal.cxx:404
const RooAbsReal * createPlotProjection(const RooArgSet &depVars, const RooArgSet &projVars) const
Utility function for plotOn() that creates a projection of a function or p.d.f to be plotted on a Roo...
Definition: RooAbsReal.cxx:835
RooDataHist * fillDataHist(RooDataHist *hist, const RooArgSet *nset, Double_t scaleFactor, Bool_t correctForBinVolume=kFALSE, Bool_t showProgress=kFALSE) const
Fill a RooDataHist with values sampled from this function at the bin centers.
Double_t _plotMax
Definition: RooAbsReal.h:389
virtual Double_t offset() const
Definition: RooAbsReal.h:310
RooAbsMoment * sigma(RooRealVar &obs)
Definition: RooAbsReal.h:300
RooAbsReal * createRunningIntegral(const RooArgSet &iset, const RooArgSet &nset=RooArgSet())
Calls createRunningIntegral(const RooArgSet&, const RooCmdArg&, const RooCmdArg&, const RooCmdArg&,...
RooAddPdf is an efficient implementation of a sum of PDFs of the form.
Definition: RooAddPdf.h:29
RooArgProxy is the abstact interface for RooAbsArg proxy classes.
Definition: RooArgProxy.h:24
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgSet.h:28
RooCategory represents a fundamental (non-derived) discrete value object.
Definition: RooCategory.h:24
RooCmdArg is a named container for two doubles, two integers two object points and three string point...
Definition: RooCmdArg.h:27
static const RooCmdArg & none()
Return reference to null argument.
Definition: RooCmdArg.cxx:50
A RooCurve is a one-dimensional graphical representation of a real-valued function.
Definition: RooCurve.h:32
RooDataSet is a container class to hold N-dimensional binned data.
Definition: RooDataHist.h:40
adaptor that projects a real function via summation of states provided in a dataset.
RooDataSet is a container class to hold unbinned data.
Definition: RooDataSet.h:31
RooDerivative represents the first, second, or third order derivative of any RooAbsReal as calculated...
Definition: RooDerivative.h:31
RooFitResult is a container class to hold the input and output of a PDF fit to a dataset.
Definition: RooFitResult.h:40
Lightweight interface adaptor that exports a RooAbsPdf as a functor.
Definition: RooFunctor.h:25
Lightweight interface adaptor that exports a RooAbsReal as a ROOT::Math::IGenFunction.
RooLinkedList is an collection class for internal use, storing a collection of RooAbsArg pointers in ...
Definition: RooLinkedList.h:35
Lightweight interface adaptor that exports a RooAbsReal as a ROOT::Math::IMultiGenFunction.
RooNumIntConfig holds the configuration parameters of the various numeric integrators used by RooReal...
A RooPlot is a plot frame and a container for graphics objects within that frame.
Definition: RooPlot.h:41
Lightweight interface adaptor that binds a RooAbsReal object to a subset of its servers and present i...
RooRealIntegral performs hybrid numerical/analytical integrals of RooAbsReal objects.
RooRealProxy is the concrete proxy for RooAbsReal objects A RooRealProxy is the general mechanism to ...
Definition: RooRealProxy.h:23
Class RooRealSumPdf implements a PDF constructed from a sum of functions:
Definition: RooRealSumPdf.h:24
RooRealVar represents a fundamental (non-derived) real valued object.
Definition: RooRealVar.h:36
RooVectorDataStore is the abstract base class for data collection that use a TTree as internal storag...
1-Dim function class
Definition: TF1.h:211
1-D histogram with a float per channel (see TH1 documentation)}
Definition: TH1.h:571
The TH1 histogram class.
Definition: TH1.h:56
2-D histogram with a float per channel (see TH1 documentation)}
Definition: TH2.h:250
3-D histogram with a float per channel (see TH1 documentation)}
Definition: TH3.h:267
A doubly linked list.
Definition: TList.h:44
Basic string class.
Definition: TString.h:131
const char * Data() const
Definition: TString.h:364
A TTree object has a header with a name and a title.
Definition: TTree.h:71
Double_t x[n]
Definition: legend1.C:17
RooCmdArg Extended(Bool_t flag=kTRUE)
@ Interleave
Definition: RooGlobalFunc.h:60
static constexpr double s
Bool_t postRangeFracScale
Definition: RooAbsReal.h:433
RooCurve::WingMode wmode
Definition: RooAbsReal.h:434
const char * normRangeName
Definition: RooAbsReal.h:430
RooFit::MPSplit interleave
Definition: RooAbsReal.h:442
const char * projectionRangeName
Definition: RooAbsReal.h:435
Double_t scaleFactor
Definition: RooAbsReal.h:422
const RooArgSet * projDataSet
Definition: RooAbsReal.h:429
Double_t addToWgtSelf
Definition: RooAbsReal.h:439
const char * curveNameSuffix
Definition: RooAbsReal.h:443
Double_t addToWgtOther
Definition: RooAbsReal.h:440
const char * addToCurveName
Definition: RooAbsReal.h:438
const RooArgSet * projSet
Definition: RooAbsReal.h:426
const char * curveName
Definition: RooAbsReal.h:437
const RooAbsData * projData
Definition: RooAbsReal.h:424
Option_t * drawOptions
Definition: RooAbsReal.h:420
auto * m
Definition: textangle.C:8
auto * a
Definition: textangle.C:12