Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooExtendPdf.cxx
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * @(#)root/roofitcore:$Id$
5 * Authors: *
6 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8 * *
9 * Copyright (c) 2000-2005, Regents of the University of California *
10 * and Stanford University. All rights reserved. *
11 * *
12 * Redistribution and use in source and binary forms, *
13 * with or without modification, are permitted according to the terms *
14 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15 *****************************************************************************/
16
17/** \class RooExtendPdf
18RooExtendPdf is a wrapper around an existing PDF that adds a
19parameteric extended likelihood term to the PDF, optionally divided by a
20fractional term from a partial normalization of the PDF:
21\f[
22 n_\mathrm{Expected} = N \quad \text{or} \quad n_\mathrm{Expected} = N / \mathrm{frac}
23\f]
24where \f$ N \f$ is supplied as a RooAbsReal to RooExtendPdf.
25The fractional term is defined as
26\f[
27 \mathrm{frac} = \frac{\int_\mathrm{cutRegion[x]} \mathrm{pdf}(x,y) \; \mathrm{d}x \mathrm{d}y}{
28 \int_\mathrm{normRegion[x]} \mathrm{pdf}(x,y) \; \mathrm{d}x \mathrm{d}y}
29\f]
30
31where \f$ x \f$ is the set of dependents involved in the selection region and \f$ y \f$
32is the set of remaining dependents.
33
34\f$ \mathrm{cutRegion}[x] \f$ is a limited integration range that is contained in
35the nominal integration range \f$ \mathrm{normRegion}[x] \f$.
36*/
37
38#include "Riostream.h"
39
40#include "RooExtendPdf.h"
41#include "RooArgList.h"
42#include "RooRealVar.h"
43#include "RooFormulaVar.h"
44#include "RooNameReg.h"
45#include "RooConstVar.h"
46#include "RooProduct.h"
47#include "RooRatio.h"
48#include "RooMsgService.h"
49
50
51
52using std::endl;
53
54
55RooExtendPdf::RooExtendPdf(const char *name, const char *title, RooAbsPdf& pdf,
56 RooAbsReal& norm, const char* rangeName)
57 : RooExtendPdf{name, title, pdf, RooAbsReal::Ref{norm}, rangeName} {}
58
59/// Constructor. The ExtendPdf behaves identical to the supplied input pdf,
60/// but adds an extended likelihood term. expectedEvents() will return
61/// `norm` if `rangeName` remains empty. If `rangeName` is not empty,
62/// `norm` will refer to this range, and expectedEvents will return the
63/// total number of events over the full range of the observables.
64/// \param[in] name Name of the pdf
65/// \param[in] title Title of the pdf (for plotting)
66/// \param[in] pdf The pdf to be extended
67/// \param[in] norm Expected number of events
68/// \param[in] rangeName If given, the number of events denoted by `norm` is interpreted as
69/// the number of events in this range only
70RooExtendPdf::RooExtendPdf(const char *name, const char *title, RooAbsPdf& pdf,
71 RooAbsReal::Ref norm, const char* rangeName) :
72 RooAbsPdf(name,title),
73 _pdf("pdf", "PDF", this, pdf),
74 _n("n","Normalization",this,norm),
75 _rangeName(RooNameReg::ptr(rangeName))
76{
77
78 // Copy various setting from pdf
79 setUnit(_pdf->getUnit()) ;
81}
82
83
84
87 _pdf("pdf",this,other._pdf),
88 _n("n",this,other._n),
89 _rangeName(other._rangeName)
90{
91 // Copy constructor
92}
93
94
95/// Return the number of expected events over the full range of all variables.
96/// `norm`, the variable set as normalisation constant in the constructor,
97/// will yield the number of events in the range set in the constructor. That is, the function returns
98/// \f[
99/// N = \mathrm{norm} \; \cdot \; \frac{\int_{(x_F,y_F)} \mathrm{pdf}(x,y) }{\int_{(x_C,y_F)} \mathrm{pdf}(x,y)}
100/// \f]
101/// Where \f$ x \f$ is the set of dependents with a restricted range (defined by `rangeName` in the constructor),
102/// and \f$ y \f$ are the other dependents. \f$ x_C \f$ is the integration
103/// of \f$ x \f$ over the restricted range, and \f$ x_F \f$ is the integration of
104/// \f$ x \f$ over the full range. `norm` is the number of events given as parameter to the constructor.
105///
106/// If the nested PDF can be extended, \f$ N \f$ is further scaled by its expected number of events.
108{
109 const RooAbsPdf& pdf = *_pdf;
110
111 if (_rangeName && (!nset || nset->empty())) {
112 coutW(InputArguments) << "RooExtendPdf::expectedEvents(" << GetName() << ") WARNING: RooExtendPdf needs non-null normalization set to calculate fraction in range "
113 << _rangeName << ". Results may be nonsensical" << std::endl ;
114 }
115
116 double nExp = _n ;
117
118 // Optionally multiply with fractional normalization
119 if (_rangeName) {
120
121 double fracInt = pdf.getNormObj(nset,nset,_rangeName)->getVal();
122
123
124 if ( fracInt == 0. || _n == 0.) {
125 coutW(Eval) << "RooExtendPdf(" << GetName() << ") WARNING: nExpected = " << _n << " / "
126 << fracInt << " for nset = " << (nset?*nset:RooArgSet()) << std::endl ;
127 }
128
129 nExp /= fracInt ;
130 }
131
132 // Multiply with original Nexpected, if defined
133 if (pdf.canBeExtended()) nExp *= pdf.expectedEvents(nset) ;
134
135 return nExp ;
136}
137
138
139std::unique_ptr<RooAbsReal> RooExtendPdf::createExpectedEventsFunc(const RooArgSet *nset) const
140{
141 const RooAbsPdf& pdf = *_pdf;
142
144 prodList.add(*_n);
145
146 // Optionally multiply with fractional normalization
147 std::unique_ptr<RooAbsReal> rangeFactor;
148 if (_rangeName) {
149 std::unique_ptr<RooAbsReal> fracInteg{pdf.createIntegral(*nset, *nset, RooNameReg::str(_rangeName))};
150 // Create one over integral term
151 auto rangeFactorName = std::string("one_over_") + fracInteg->GetName();
152 rangeFactor = std::make_unique<RooRatio>(rangeFactorName.c_str(), rangeFactorName.c_str(), RooFit::RooConst(1.0), *fracInteg);
153 rangeFactor->addOwnedComponents(std::move(fracInteg));
154 prodList.add(*rangeFactor);
155 }
156
157 // Multiply with original Nexpected, if defined
158 std::unique_ptr<RooAbsReal> pdfExpectedEvents;
159 if (pdf.canBeExtended()) {
162 }
163
164 auto name = std::string(GetName()) + "_expectedEvents";
165 auto out = std::make_unique<RooProduct>(name.c_str(), name.c_str(), prodList);
166 if(rangeFactor) {
167 out->addOwnedComponents(std::move(rangeFactor));
168 }
170 out->addOwnedComponents(std::move(pdfExpectedEvents));
171 }
172 return out;
173}
#define coutW(a)
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
char name[80]
Definition TGX11.cxx:110
Abstract interface for all probability density functions.
Definition RooAbsPdf.h:40
virtual double expectedEvents(const RooArgSet *nset) const
Return expected number of events to be used in calculation of extended likelihood.
bool canBeExtended() const
If true, PDF can provide extended likelihood term.
Definition RooAbsPdf.h:218
virtual std::unique_ptr< RooAbsReal > createExpectedEventsFunc(const RooArgSet *nset) const
Returns an object that represents the expected number of events for a given normalization set,...
virtual const RooAbsReal * getNormObj(const RooArgSet *set, const RooArgSet *iset, const TNamed *rangeName=nullptr) const
Return pointer to RooAbsReal object that implements calculation of integral over observables iset in ...
A RooAbsReal::Ref can be constructed from a RooAbsReal& or a double that will be implicitly converted...
Definition RooAbsReal.h:68
Abstract base class for objects that represent a real value and implements functionality common to al...
Definition RooAbsReal.h:59
void setUnit(const char *unit)
Definition RooAbsReal.h:149
const char * getPlotLabel() const
Get the label associated with the variable.
const Text_t * getUnit() const
Definition RooAbsReal.h:145
void setPlotLabel(const char *label)
Set the label associated with this variable.
RooFit::OwningPtr< RooAbsReal > createIntegral(const RooArgSet &iset, const RooCmdArg &arg1, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={}) const
Create an object that represents the integral of the function over one or more observables listed in ...
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:24
RooExtendPdf is a wrapper around an existing PDF that adds a parameteric extended likelihood term to ...
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,...
RooAbsPdf const & pdf() const
RooTemplateProxy< RooAbsPdf > _pdf
Input p.d.f.
double expectedEvents(const RooArgSet *nset) const override
Return the number of expected events over the full range of all variables.
const TNamed * _rangeName
Name of subset range.
RooExtendPdf()=default
RooTemplateProxy< RooAbsReal > _n
Number of expected events.
Registry for const char* names.
Definition RooNameReg.h:26
static const char * str(const TNamed *ptr)
Return C++ string corresponding to given TNamed pointer.
Definition RooNameReg.h:39
const char * GetName() const override
Returns name of object.
Definition TNamed.h:49
RooConstVar & RooConst(double val)