Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooAbsL.cxx
Go to the documentation of this file.
1/*
2 * Project: RooFit
3 * Authors:
4 * PB, Patrick Bos, Netherlands eScience Center, p.bos@esciencecenter.nl
5 *
6 * Copyright (c) 2021, CERN
7 *
8 * Redistribution and use in source and binary forms,
9 * with or without modification, are permitted according to the terms
10 * listed in LICENSE (http://roofit.sourceforge.net/license.txt)
11 */
12
15#include "RooAbsData.h"
16
17// for dynamic casts in init_clones:
18#include "RooAbsRealLValue.h"
19#include "RooRealVar.h"
20#include "RooDataHist.h"
21
22// other stuff in init_clones:
23#include "RooErrorHandler.h"
24#include "RooMsgService.h"
25
26// concrete classes in getParameters (testing, remove later)
27#include "RooRealSumPdf.h"
28#include "RooProdPdf.h"
29
30namespace RooFit {
31namespace TestStatistics {
32
33// static function
35{
36 switch (extended) {
38 return false;
39 }
41 return true;
42 }
45 }
46 default: {
47 throw std::logic_error("RooAbsL::isExtendedHelper got an unknown extended value!");
48 }
49 }
50}
51
52/// After handling cloning (or not) of the pdf and dataset, the public constructors call this private constructor to
53/// handle common tasks.
54RooAbsL::RooAbsL(std::shared_ptr<RooAbsPdf> pdf, std::shared_ptr<RooAbsData> data, std::size_t N_events,
55 std::size_t N_components, Extended extended)
56 : pdf_(std::move(pdf)), data_(std::move(data)), N_events_(N_events), N_components_(N_components)
57{
58 extended_ = isExtendedHelper(pdf_.get(), extended);
59 if (extended == Extended::Auto) {
60 if (extended_) {
61 oocoutI(nullptr, Minimization)
62 << "in RooAbsL ctor: p.d.f. provides expected number of events, including extended term in likelihood."
63 << std::endl;
64 }
65 }
66}
67
68/// Constructor that clones the pdf/data and owns those cloned copies.
69///
70/// This constructor is used for classes that need a pdf/data clone (RooBinnedL and RooUnbinnedL).
71///
72/// \param in Struct containing raw pointers to the pdf and dataset that are to be cloned.
73/// \param N_events The number of events in this likelihood's dataset.
74/// \param N_components The number of components in the likelihood.
75/// \param extended Set extended term calculation on, off or use Extended::Auto to determine automatically based on the
76/// pdf whether to activate or not.
77RooAbsL::RooAbsL(RooAbsL::ClonePdfData in, std::size_t N_events, std::size_t N_components, Extended extended)
78 : RooAbsL(in.ownedPdf ? std::move(in.ownedPdf)
79 : std::unique_ptr<RooAbsPdf>(static_cast<RooAbsPdf *>(in.pdf->cloneTree())),
80 std::shared_ptr<RooAbsData>(static_cast<RooAbsData *>(in.data->Clone())), N_events, N_components, extended)
81{
82 initClones(*in.pdf, *in.data);
83}
84
85/// Constructor that does not clone pdf/data and uses the shared_ptr aliasing constructor to make it non-owning.
86///
87/// This constructor is used for classes where a reference to the external pdf/dataset is good enough (RooSumL and
88/// RooSubsidiaryL).
89///
90/// \param inpdf Raw pointer to the pdf.
91/// \param indata Raw pointer to the dataset.
92/// \param N_events The number of events in this likelihood's dataset.
93/// \param N_components The number of components in the likelihood.
94/// \param extended Set extended term calculation on, off or use Extended::Auto to determine automatically based on the
95/// pdf whether to activate or not.
96RooAbsL::RooAbsL(RooAbsPdf *inpdf, RooAbsData *indata, std::size_t N_events, std::size_t N_components,
97 Extended extended)
98 : RooAbsL({std::shared_ptr<RooAbsPdf>(nullptr), inpdf}, {std::shared_ptr<RooAbsData>(nullptr), indata}, N_events,
99 N_components, extended)
100{
101}
102
104 : pdf_(other.pdf_),
105 data_(other.data_),
106 N_events_(other.N_events_),
107 N_components_(other.N_components_),
108 extended_(other.extended_),
109 sim_count_(other.sim_count_)
110{
111 // it can never be one, since we just copied the shared_ptr; if it is, something really weird is going on; also they
112 // must be equal (usually either zero or two)
113 assert((pdf_.use_count() != 1) && (data_.use_count() != 1) && (pdf_.use_count() == data_.use_count()));
114 if ((pdf_.use_count() > 1) && (data_.use_count() > 1)) {
115 pdf_.reset(static_cast<RooAbsPdf *>(other.pdf_->cloneTree()));
116 data_.reset(static_cast<RooAbsData *>(other.data_->Clone()));
117 initClones(*other.pdf_, *other.data_);
118 }
119}
120
122{
123 // ******************************************************************
124 // *** PART 1 *** Clone incoming pdf, attach to each other *
125 // ******************************************************************
126
127 // Attach FUNC to data set
128 auto _funcObsSet = pdf_->getObservables(indata);
129
130 if (pdf_->getAttribute("BinnedLikelihood")) {
131 pdf_->setAttribute("BinnedLikelihoodActive");
132 }
133
134 // Reattach FUNC to original parameters
135 std::unique_ptr<RooArgSet> origParams{inpdf.getParameters(indata)};
136 pdf_->recursiveRedirectServers(*origParams);
137
138 // Store normalization set
139 normSet_ = std::make_unique<RooArgSet>();
140 indata.get()->snapshot(*normSet_, false);
141
142 // Expand list of observables with any observables used in parameterized ranges
143 for (const auto realDep : *_funcObsSet) {
144 auto realDepRLV = dynamic_cast<RooAbsRealLValue *>(realDep);
145 if (realDepRLV && realDepRLV->isDerived()) {
146 RooArgSet tmp2;
147 realDepRLV->leafNodeServerList(&tmp2, nullptr, true);
148 _funcObsSet->add(tmp2, true);
149 }
150 }
151
152 // ******************************************************************
153 // *** PART 2 *** Clone and adjust incoming data, attach to PDF *
154 // ******************************************************************
155
156 // Check if the fit ranges of the dependents in the data and in the FUNC are consistent
157 const RooArgSet *dataDepSet = indata.get();
158 for (const auto arg : *_funcObsSet) {
159
160 // Check that both dataset and function argument are of type RooRealVar
161 auto realReal = dynamic_cast<RooRealVar *>(arg);
162 if (!realReal) {
163 continue;
164 }
165 auto datReal = dynamic_cast<RooRealVar *>(dataDepSet->find(realReal->GetName()));
166 if (!datReal) {
167 continue;
168 }
169
170 // Check that range of observables in pdf is equal or contained in range of observables in data
171
172 if (!realReal->getBinning().lowBoundFunc() && realReal->getMin() < (datReal->getMin() - 1e-6)) {
173 oocoutE(nullptr, InputArguments) << "RooAbsL: ERROR minimum of FUNC observable " << arg->GetName() << "("
174 << realReal->getMin() << ") is smaller than that of " << arg->GetName()
175 << " in the dataset (" << datReal->getMin() << ")" << std::endl;
177 return;
178 }
179
180 if (!realReal->getBinning().highBoundFunc() && realReal->getMax() > (datReal->getMax() + 1e-6)) {
181 oocoutE(nullptr, InputArguments)
182 << "RooAbsL: ERROR maximum of FUNC observable " << arg->GetName() << " is larger than that of "
183 << arg->GetName() << " in the dataset" << std::endl;
185 return;
186 }
187 }
188
189 // ******************************************************************
190 // *** PART 3 *** Make adjustments for fit ranges, if specified *
191 // ******************************************************************
192
193 // TODO
194
195 // Jonas R.: The following code is commented out, because the functionality
196 // to mask out-of-range entries with `RooDataHist::cacheValidEntries` has
197 // been removed from the RooDataHist. If you want to implement ranged fits
198 // properly, please create a RooDataHist for the requested range with
199 // `RooDataHist::reduce`.
200
201 //// If dataset is binned, activate caching of bins that are invalid because they're outside the
202 //// updated range definition (WVE need to add virtual interface here)
203 // RooDataHist *tmph = dynamic_cast<RooDataHist *>(data_.get());
204 // if (tmph) {
205 // tmph->cacheValidEntries();
206 //}
207
208 // This is deferred from part 2 - but must happen after part 3 - otherwise invalid bins cannot be properly marked in
209 // cacheValidEntries
210 data_->attachBuffers(*_funcObsSet);
211
212 // *********************************************************************
213 // *** PART 4 *** Adjust normalization range for projected observables *
214 // *********************************************************************
215
216 // TODO
217
218 // *********************************************************************
219 // *** PART 4 *** Finalization and activation of optimization *
220 // *********************************************************************
221
222 // optimization steps (copied from ROATS::optimizeCaching)
223
224 pdf_->getVal(normSet_.get());
225 // Set value caching mode for all nodes that depend on any of the observables to ADirty
226 pdf_->optimizeCacheMode(*_funcObsSet);
227 // Disable propagation of dirty state flags for observables
228 data_->setDirtyProp(false);
229
230 // Disable reading of observables that are not used
231 data_->optimizeReadingWithCaching(*pdf_, RooArgSet(), RooArgSet());
232}
233
234std::unique_ptr<RooArgSet> RooAbsL::getParameters()
235{
236 return std::unique_ptr<RooArgSet>{pdf_->getParameters(*data_)};
237}
238
240{
241 // to be further implemented, this is just a first test implementation
242 if (opcode == RooAbsArg::Activate) {
244 doAlsoTrackingOpt);
245 }
246}
247
248std::string RooAbsL::GetName() const
249{
250 std::string output("likelihood of pdf ");
251 output.append(pdf_->GetName());
252 return output;
253}
254
255std::string RooAbsL::GetTitle() const
256{
257 std::string output("likelihood of pdf ");
258 output.append(pdf_->GetTitle());
259 return output;
260}
261
262std::size_t RooAbsL::numDataEntries() const
263{
264 return static_cast<std::size_t>(data_->numEntries());
265}
266
267} // namespace TestStatistics
268} // namespace RooFit
#define e(i)
Definition RSha256.hxx:103
#define oocoutE(o, a)
#define oocoutI(o, a)
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data
RooFit::OwningPtr< 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...
virtual bool add(const RooAbsArg &var, bool silent=false)
Add the specified argument to list.
RooAbsArg * find(const char *name) const
Find object with given name in list.
Abstract base class for binned and unbinned datasets.
Definition RooAbsData.h:57
virtual const RooArgSet * get() const
Definition RooAbsData.h:101
Abstract interface for all probability density functions.
Definition RooAbsPdf.h:40
@ CanBeExtended
Definition RooAbsPdf.h:212
@ MustBeExtended
Definition RooAbsPdf.h:212
virtual ExtendMode extendMode() const
Returns ability of PDF to provide extended likelihood terms.
Definition RooAbsPdf.h:216
RooAbsRealLValue is the common abstract base class for objects that represent a real value that may a...
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
RooArgSet * snapshot(bool deepCopy=true) const
Use RooAbsCollection::snapshot(), but return as RooArgSet.
Definition RooArgSet.h:178
static void softAbort()
Soft abort function that interrupts macro execution but doesn't kill ROOT.
Convenience wrapper class used to distinguish between pdf/data owning and non-owning constructors.
Definition RooAbsL.h:39
std::shared_ptr< RooAbsData > data_
Definition RooAbsL.h:143
static bool isExtendedHelper(RooAbsPdf *pdf, Extended extended)
Definition RooAbsL.cxx:34
virtual std::string GetName() const
Definition RooAbsL.cxx:248
virtual std::string GetTitle() const
Definition RooAbsL.cxx:255
std::unique_ptr< RooArgSet > normSet_
Pointer to set with observables used for normalization.
Definition RooAbsL.h:144
void initClones(RooAbsPdf &inpdf, RooAbsData &indata)
Definition RooAbsL.cxx:121
virtual std::unique_ptr< RooArgSet > getParameters()
Definition RooAbsL.cxx:234
virtual void constOptimizeTestStatistic(RooAbsArg::ConstOpCode opcode, bool doAlsoTrackingOpt)
Interface function signaling a request to perform constant term optimization.
Definition RooAbsL.cxx:239
RooAbsL(std::shared_ptr< RooAbsPdf > pdf, std::shared_ptr< RooAbsData > data, std::size_t N_events, std::size_t N_components, Extended extended)
After handling cloning (or not) of the pdf and dataset, the public constructors call this private con...
Definition RooAbsL.cxx:54
virtual std::size_t numDataEntries() const
Number of dataset entries.
Definition RooAbsL.cxx:262
std::shared_ptr< RooAbsPdf > pdf_
Definition RooAbsL.h:142
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:37
const char * GetName() const override
Returns name of object.
Definition TNamed.h:47
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
Definition JSONIO.h:26
@ InputArguments
static void enableConstantTermsOptimization(RooAbsReal *function, RooArgSet *norm_set, RooAbsData *dataset, bool applyTrackingOpt)
static void output()