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_.reset((RooArgSet *)indata.get()->snapshot(false));
140
141 // Expand list of observables with any observables used in parameterized ranges
142 for (const auto realDep : *_funcObsSet) {
143 auto realDepRLV = dynamic_cast<RooAbsRealLValue *>(realDep);
144 if (realDepRLV && realDepRLV->isDerived()) {
145 RooArgSet tmp2;
146 realDepRLV->leafNodeServerList(&tmp2, 0, true);
147 _funcObsSet->add(tmp2, true);
148 }
149 }
150
151 // ******************************************************************
152 // *** PART 2 *** Clone and adjust incoming data, attach to PDF *
153 // ******************************************************************
154
155 // Check if the fit ranges of the dependents in the data and in the FUNC are consistent
156 const RooArgSet *dataDepSet = indata.get();
157 for (const auto arg : *_funcObsSet) {
158
159 // Check that both dataset and function argument are of type RooRealVar
160 auto realReal = dynamic_cast<RooRealVar *>(arg);
161 if (!realReal) {
162 continue;
163 }
164 auto datReal = dynamic_cast<RooRealVar *>(dataDepSet->find(realReal->GetName()));
165 if (!datReal) {
166 continue;
167 }
168
169 // Check that range of observables in pdf is equal or contained in range of observables in data
170
171 if (!realReal->getBinning().lowBoundFunc() && realReal->getMin() < (datReal->getMin() - 1e-6)) {
172 oocoutE(nullptr, InputArguments) << "RooAbsL: ERROR minimum of FUNC observable " << arg->GetName() << "("
173 << realReal->getMin() << ") is smaller than that of " << arg->GetName()
174 << " in the dataset (" << datReal->getMin() << ")" << std::endl;
176 return;
177 }
178
179 if (!realReal->getBinning().highBoundFunc() && realReal->getMax() > (datReal->getMax() + 1e-6)) {
180 oocoutE(nullptr, InputArguments)
181 << "RooAbsL: ERROR maximum of FUNC observable " << arg->GetName() << " is larger than that of "
182 << arg->GetName() << " in the dataset" << std::endl;
184 return;
185 }
186 }
187
188 // ******************************************************************
189 // *** PART 3 *** Make adjustments for fit ranges, if specified *
190 // ******************************************************************
191
192 // TODO
193
194 // Jonas R.: The following code is commented out, because the functionality
195 // to mask out-ot-range entries with `RooDataHist::cacheValidEntries` has
196 // been removed from the RooDataHist. If you want to implement ranged fits
197 // properly, please create a RooDataHist for the requested range with
198 // `RooDataHist::reduce`.
199
200 //// If dataset is binned, activate caching of bins that are invalid because they're outside the
201 //// updated range definition (WVE need to add virtual interface here)
202 // RooDataHist *tmph = dynamic_cast<RooDataHist *>(data_.get());
203 // if (tmph) {
204 // tmph->cacheValidEntries();
205 //}
206
207 // This is deferred from part 2 - but must happen after part 3 - otherwise invalid bins cannot be properly marked in
208 // cacheValidEntries
209 data_->attachBuffers(*_funcObsSet);
210
211 // *********************************************************************
212 // *** PART 4 *** Adjust normalization range for projected observables *
213 // *********************************************************************
214
215 // TODO
216
217 // *********************************************************************
218 // *** PART 4 *** Finalization and activation of optimization *
219 // *********************************************************************
220
221 // optimization steps (copied from ROATS::optimizeCaching)
222
223 pdf_->getVal(normSet_.get());
224 // Set value caching mode for all nodes that depend on any of the observables to ADirty
225 pdf_->optimizeCacheMode(*_funcObsSet);
226 // Disable propagation of dirty state flags for observables
227 data_->setDirtyProp(false);
228
229 // Disable reading of observables that are not used
230 data_->optimizeReadingWithCaching(*pdf_, RooArgSet(), RooArgSet());
231}
232
233std::unique_ptr<RooArgSet> RooAbsL::getParameters()
234{
235 return std::unique_ptr<RooArgSet>{pdf_->getParameters(*data_)};
236}
237
239{
240 // to be further implemented, this is just a first test implementation
241 if (opcode == RooAbsArg::Activate) {
243 doAlsoTrackingOpt);
244 }
245}
246
247std::string RooAbsL::GetName() const
248{
249 std::string output("likelihood of pdf ");
250 output.append(pdf_->GetName());
251 return output;
252}
253
254std::string RooAbsL::GetTitle() const
255{
256 std::string output("likelihood of pdf ");
257 output.append(pdf_->GetTitle());
258 return output;
259}
260
261std::size_t RooAbsL::numDataEntries() const
262{
263 return static_cast<std::size_t>(data_->numEntries());
264}
265
266} // namespace TestStatistics
267} // 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.
RooAbsData is the common abstract base class for binned and unbinned datasets.
Definition RooAbsData.h:59
virtual const RooArgSet * get() const
Definition RooAbsData.h:103
@ CanBeExtended
Definition RooAbsPdf.h:272
@ MustBeExtended
Definition RooAbsPdf.h:272
virtual ExtendMode extendMode() const
Returns ability of PDF to provide extended likelihood terms.
Definition RooAbsPdf.h:276
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:247
virtual std::string GetTitle() const
Definition RooAbsL.cxx:254
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:233
virtual void constOptimizeTestStatistic(RooAbsArg::ConstOpCode opcode, bool doAlsoTrackingOpt)
Interface function signaling a request to perform constant term optimization.
Definition RooAbsL.cxx:238
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:261
std::shared_ptr< RooAbsPdf > pdf_
Definition RooAbsL.h:142
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:40
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 Common.h:18
@ InputArguments
static void enableConstantTermsOptimization(RooAbsReal *function, RooArgSet *norm_set, RooAbsData *dataset, bool applyTrackingOpt)
static void output()