Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooAddPdf.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooAddPdf.h,v 1.46 2007/07/12 20:30: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_ADD_PDF
17#define ROO_ADD_PDF
18
19#include "RooAbsPdf.h"
20#include "RooListProxy.h"
21#include "RooSetProxy.h"
22#include "RooAICRegistry.h"
23#include "RooNormSetCache.h"
24#include "RooObjCacheManager.h"
25#include "RooNameReg.h"
26#include "RooTrace.h"
27
28#include <vector>
29#include <list>
30#include <utility>
31
32class AddCacheElem;
33
34class RooAddPdf : public RooAbsPdf {
35public:
36
38 RooAddPdf(const char *name, const char *title=nullptr);
39 RooAddPdf(const char *name, const char *title,
40 RooAbsPdf& pdf1, RooAbsPdf& pdf2, RooAbsReal& coef1) ;
41 RooAddPdf(const char *name, const char *title, const RooArgList& pdfList) ;
42 RooAddPdf(const char *name, const char *title, const RooArgList& pdfList, const RooArgList& coefList, bool recursiveFraction=false) ;
43
44 RooAddPdf(const RooAddPdf& other, const char* name=nullptr) ;
45 TObject* clone(const char* newname) const override { return new RooAddPdf(*this,newname) ; }
47
48 bool checkObservables(const RooArgSet* nset) const override;
49
50 /// Force RooRealIntegral to offer all observables for internal integration.
51 bool forceAnalyticalInt(const RooAbsArg& /*dep*/) const override {
52 return true ;
53 }
54 Int_t getAnalyticalIntegralWN(RooArgSet& allVars, RooArgSet& numVars, const RooArgSet* normSet, const char* rangeName=nullptr) const override;
55 double analyticalIntegralWN(Int_t code, const RooArgSet* normSet, const char* rangeName=nullptr) const override;
56 bool selfNormalized() const override {
57 // P.d.f is self normalized
58 return true ;
59 }
60
61 ExtendMode extendMode() const override {
62 // Return extended mode capabilities
64 }
65 /// Return expected number of events for extended likelihood calculation, which
66 /// is the sum of all coefficients.
67 double expectedEvents(const RooArgSet* nset) const override;
68
69 std::unique_ptr<RooAbsReal> createExpectedEventsFunc(const RooArgSet* nset) const override;
70
71 const RooArgList& pdfList() const {
72 // Return list of component p.d.fs
73 return _pdfList ;
74 }
75 const RooArgList& coefList() const {
76 // Return list of coefficients of component p.d.f.s
77 return _coefList ;
78 }
79
80 void fixCoefNormalization(const RooArgSet& refCoefNorm) ;
81 void fixCoefRange(const char* rangeName) ;
82
83 const RooArgSet& getCoefNormalization() const { return _refCoefNorm ; }
85
86 void resetErrorCounters(Int_t resetValue=10) override;
87
88 std::list<double>* plotSamplingHint(RooAbsRealLValue& obs, double xlo, double xhi) const override;
89 std::list<double>* binBoundaries(RooAbsRealLValue& /*obs*/, double /*xlo*/, double /*xhi*/) const override;
90 bool isBinnedDistribution(const RooArgSet& obs) const override;
91
92 void printMetaArgs(std::ostream& os) const override;
93
94 CacheMode canNodeBeCached() const override { return RooAbsArg::NotAdvised ; };
95 void setCacheAndTrackHints(RooArgSet&) override;
96
97 std::unique_ptr<RooAbsArg> compileForNormSet(RooArgSet const &normSet, RooFit::Detail::CompileContext & ctx) const override;
98
99protected:
100
101 void selectNormalization(const RooArgSet* depSet=nullptr, bool force=false) override;
102 void selectNormalizationRange(const char* rangeName=nullptr, bool force=false) override;
103
104 mutable RooSetProxy _refCoefNorm ; ///< Reference observable set for coefficient interpretation
105 mutable TNamed* _refCoefRangeName = nullptr ; ///< Reference range name for coefficient interpreation
106
107 mutable std::vector<double> _coefCache; ///<! Transient cache with transformed values of coefficients
108
109
110 mutable RooObjCacheManager _projCacheMgr ; //! Manager of cache with coefficient projections and transformations
111 AddCacheElem* getProjCache(const RooArgSet* nset, const RooArgSet* iset=nullptr) const ;
112 void updateCoefficients(AddCacheElem& cache, const RooArgSet* nset, bool syncCoefValues=true) const ;
113
114
115 friend class RooAddGenContext ;
116 friend class RooAddModel ;
117 RooAbsGenContext* genContext(const RooArgSet &vars, const RooDataSet *prototype=nullptr,
118 const RooArgSet* auxProto=nullptr, bool verbose= false) const override;
119
120
121 double evaluate() const override {
122 return getValV(nullptr);
123 }
124 double getValV(const RooArgSet* set=nullptr) const override ;
125 void computeBatch(cudaStream_t*, double* output, size_t nEvents, RooFit::Detail::DataMap const&) const override;
126 inline bool canComputeBatchWithCuda() const override { return true; }
127
128
129 mutable RooAICRegistry _codeReg; ///<! Registry of component analytical integration codes
130
131 RooListProxy _pdfList ; ///< List of component PDFs
132 RooListProxy _coefList ; ///< List of coefficients
133 mutable RooArgList* _snormList{nullptr}; ///<! List of supplemental normalization factors
134
135 bool _haveLastCoef = false; ///< Flag indicating if last PDFs coefficient was supplied in the ctor
136 bool _allExtendable = false; ///< Flag indicating if all PDF components are extendable
137 bool _recursive = false; ///< Flag indicating is fractions are treated recursively
138
139 mutable Int_t _coefErrCount ; ///<! Coefficient error counter
140
141 bool redirectServersHook(const RooAbsCollection&, bool, bool, bool) override;
142
143private:
144 std::pair<const RooArgSet*, AddCacheElem*> getNormAndCache(const RooArgSet* nset) const;
146 mutable std::unique_ptr<const RooArgSet> _copyOfLastNormSet = nullptr; ///<!
147
149
150 ClassDefOverride(RooAddPdf,5) // PDF representing a sum of PDFs
151};
152
153#endif
#define TRACE_DESTROY
Definition RooTrace.h:24
#define TRACE_CREATE
Definition RooTrace.h:23
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
char name[80]
Definition TGX11.cxx:110
RooAICRegistry is a utility class for operator p.d.f classes that keeps track of analytical integrati...
RooAbsArg is the common abstract base class for objects that represent a value and a "shape" in RooFi...
Definition RooAbsArg.h:74
RooAbsCollection is an abstract container object that can hold multiple RooAbsArg objects.
RooAbsGenContext is the abstract base class for generator contexts of RooAbsPdf objects.
@ MustBeExtended
Definition RooAbsPdf.h:272
@ CanNotBeExtended
Definition RooAbsPdf.h:272
RooAbsRealLValue is the common abstract base class for objects that represent a real value that may a...
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:62
RooAddGenContext is an efficient implementation of the generator context specific for RooAddPdf PDFs.
RooAddModel is an efficient implementation of a sum of PDFs of the form.
Definition RooAddModel.h:28
RooAddPdf is an efficient implementation of a sum of PDFs of the form.
Definition RooAddPdf.h:34
RooListProxy _coefList
List of coefficients.
Definition RooAddPdf.h:132
RooArgList * _snormList
! List of supplemental normalization factors
Definition RooAddPdf.h:133
bool _allExtendable
Flag indicating if all PDF components are extendable.
Definition RooAddPdf.h:136
RooAICRegistry _codeReg
! Registry of component analytical integration codes
Definition RooAddPdf.h:129
RooFit::UniqueId< RooArgSet >::Value_t _idOfLastUsedNormSet
!
Definition RooAddPdf.h:145
double analyticalIntegralWN(Int_t code, const RooArgSet *normSet, const char *rangeName=nullptr) const override
Return analytical integral defined by given scenario code.
const char * getCoefRange() const
Definition RooAddPdf.h:84
std::unique_ptr< const RooArgSet > _copyOfLastNormSet
!
Definition RooAddPdf.h:146
TObject * clone(const char *newname) const override
Definition RooAddPdf.h:45
void updateCoefficients(AddCacheElem &cache, const RooArgSet *nset, bool syncCoefValues=true) const
Update the coefficient values in the given cache element: calculate new remainder fraction,...
Int_t _coefErrCount
! Coefficient error counter
Definition RooAddPdf.h:139
bool canComputeBatchWithCuda() const override
Definition RooAddPdf.h:126
bool _haveLastCoef
Flag indicating if last PDFs coefficient was supplied in the ctor.
Definition RooAddPdf.h:135
void selectNormalization(const RooArgSet *depSet=nullptr, bool force=false) override
Interface function used by test statistics to freeze choice of observables for interpretation of frac...
void printMetaArgs(std::ostream &os) const override
Customized printing of arguments of a RooAddPdf to more intuitively reflect the contents of the produ...
void finalizeConstruction()
void setCacheAndTrackHints(RooArgSet &) override
Label OK'ed components of a RooAddPdf with cache-and-track.
const RooArgList & coefList() const
Definition RooAddPdf.h:75
bool _recursive
Flag indicating is fractions are treated recursively.
Definition RooAddPdf.h:137
RooObjCacheManager _projCacheMgr
Definition RooAddPdf.h:110
RooAbsGenContext * genContext(const RooArgSet &vars, const RooDataSet *prototype=nullptr, const RooArgSet *auxProto=nullptr, bool verbose=false) const override
Return specialized context to efficiently generate toy events from RooAddPdfs return RooAbsPdf::genCo...
bool checkObservables(const RooArgSet *nset) const override
Check if PDF is valid for given normalization set.
bool selfNormalized() const override
Shows if a PDF is self-normalized, which means that no attempt is made to add a normalization term.
Definition RooAddPdf.h:56
void fixCoefNormalization(const RooArgSet &refCoefNorm)
By default the interpretation of the fraction coefficients is performed in the contextual choice of o...
std::pair< const RooArgSet *, AddCacheElem * > getNormAndCache(const RooArgSet *nset) const
Look up projection cache and per-PDF norm sets.
RooSetProxy _refCoefNorm
Reference observable set for coefficient interpretation.
Definition RooAddPdf.h:104
void selectNormalizationRange(const char *rangeName=nullptr, bool force=false) override
Interface function used by test statistics to freeze choice of range for interpretation of fraction c...
Int_t getAnalyticalIntegralWN(RooArgSet &allVars, RooArgSet &numVars, const RooArgSet *normSet, const char *rangeName=nullptr) const override
Determine which part (if any) of given integral can be performed analytically.
void resetErrorCounters(Int_t resetValue=10) override
Reset error counter to given value, limiting the number of future error messages for this pdf to 'res...
ExtendMode extendMode() const override
Returns ability of PDF to provide extended likelihood terms.
Definition RooAddPdf.h:61
bool forceAnalyticalInt(const RooAbsArg &) const override
Force RooRealIntegral to offer all observables for internal integration.
Definition RooAddPdf.h:51
double expectedEvents(const RooArgSet *nset) const override
Return expected number of events for extended likelihood calculation, which is the sum of all coeffic...
double getValV(const RooArgSet *set=nullptr) const override
Calculate and return the current value.
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
Definition RooAddPdf.h:121
std::unique_ptr< RooAbsArg > compileForNormSet(RooArgSet const &normSet, RooFit::Detail::CompileContext &ctx) const override
void fixCoefRange(const char *rangeName)
By default, fraction coefficients are assumed to refer to the default fit range.
CacheMode canNodeBeCached() const override
Definition RooAddPdf.h:94
AddCacheElem * getProjCache(const RooArgSet *nset, const RooArgSet *iset=nullptr) const
Manager of cache with coefficient projections and transformations.
std::list< double > * plotSamplingHint(RooAbsRealLValue &obs, double xlo, double xhi) const override
Loop over components for plot sampling hints and merge them if there are multiple.
RooListProxy _pdfList
List of component PDFs.
Definition RooAddPdf.h:131
TNamed * _refCoefRangeName
Reference range name for coefficient interpreation.
Definition RooAddPdf.h:105
const RooArgList & pdfList() const
Definition RooAddPdf.h:71
void computeBatch(cudaStream_t *, double *output, size_t nEvents, RooFit::Detail::DataMap const &) const override
Compute addition of PDFs in batches.
std::unique_ptr< RooAbsReal > createExpectedEventsFunc(const RooArgSet *nset) const override
Returns an object that represents the expected number of events for a given normalization set,...
bool isBinnedDistribution(const RooArgSet &obs) const override
If all components that depend on obs are binned, so is their sum.
bool redirectServersHook(const RooAbsCollection &, bool, bool, bool) override
The cache manager.
~RooAddPdf() override
Definition RooAddPdf.h:46
std::vector< double > _coefCache
! Transient cache with transformed values of coefficients
Definition RooAddPdf.h:107
const RooArgSet & getCoefNormalization() const
Definition RooAddPdf.h:83
std::list< double > * binBoundaries(RooAbsRealLValue &, double, double) const override
Loop over components for plot sampling hints and merge them if there are multiple.
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition RooArgList.h:22
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
RooDataSet is a container class to hold unbinned data.
Definition RooDataSet.h:57
static const char * str(const TNamed *ptr)
Return C++ string corresponding to given TNamed pointer.
Definition RooNameReg.h:37
Class RooObjCacheManager is an implementation of class RooCacheManager<RooAbsCacheElement> and specia...
The TNamed class is the base class for all named ROOT classes.
Definition TNamed.h:29
Mother of all ROOT objects.
Definition TObject.h:41
A UniqueId can be added as a class member to enhance any class with a unique identifier for each inst...
Definition UniqueId.h:39
unsigned long Value_t
Definition UniqueId.h:41
static void output()