Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
RooCachedPdf.cxx
Go to the documentation of this file.
1 /*****************************************************************************
2 * Project: RooFit *
3 * *
4 * Copyright (c) 2000-2005, Regents of the University of California *
5 * and Stanford University. All rights reserved. *
6 * *
7 * Redistribution and use in source and binary forms, *
8 * with or without modification, are permitted according to the terms *
9 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
10 *****************************************************************************/
11
12/**
13\file RooCachedPdf.cxx
14\class RooCachedPdf
15\ingroup Roofitcore
16
17Implementation of RooAbsCachedPdf that can cache
18any external RooAbsPdf input function provided in the constructor.
19**/
20
21#include "Riostream.h"
22
23#include "RooAbsPdf.h"
24#include "RooCachedPdf.h"
25#include "RooAbsReal.h"
26#include "RooMsgService.h"
27#include "RooDataHist.h"
28#include "RooHistPdf.h"
29
30using std::endl;
31
32
33
34////////////////////////////////////////////////////////////////////////////////
35/// Constructor taking name, title and function to be cached. To control
36/// granularity of the binning of the cache histogram set the desired properties
37/// in the binning named "cache" in the observables of the function. The dimensions
38/// of the cache are automatically matched to the number of observables used
39/// in each use context. Multiple cache in different observable may exists
40/// simultaneously if the cached p.d.f is used with multiple observable
41/// configurations simultaneously
42
43RooCachedPdf::RooCachedPdf(const char *name, const char *title, RooAbsPdf& _pdf) :
44 RooAbsCachedPdf(name,title),
45 pdf("pdf","pdf",this,_pdf),
46 _cacheObs("cacheObs","cacheObs",this,false,false)
47 {
48 }
49
50
51
52////////////////////////////////////////////////////////////////////////////////
53/// Constructor taking name, title and function to be cached and
54/// fixed choice of variable to cache. To control granularity of the
55/// binning of the cache histogram set the desired properties in the
56/// binning named "cache" in the observables of the function.
57/// If the fixed set of cache observables does not match the observables
58/// defined in the use context of the p.d.f the cache is still filled
59/// completely. Ee.g. when it is specified to cache x and p and only x
60/// is a observable in the given use context the cache histogram will
61/// store sampled values for all values of observable x and parameter p.
62/// In such a mode of operation the cache will also not be recalculated
63/// if the observable p changes
64
65RooCachedPdf::RooCachedPdf(const char *name, const char *title, RooAbsPdf& _pdf, const RooArgSet& cacheObs) :
66 RooAbsCachedPdf(name,title),
67 pdf("pdf","pdf",this,_pdf),
68 _cacheObs("cacheObs","cacheObs",this,false,false)
69 {
71 }
72
73
74
75////////////////////////////////////////////////////////////////////////////////
76/// Copy constructor
77
80 pdf("pdf",this,other.pdf),
81 _cacheObs("cacheObs",this,other._cacheObs)
82 {
83 }
84
85////////////////////////////////////////////////////////////////////////////////
86/// Update contents of cache histogram by resampling the input p.d.f. Note that
87/// the cache is filled with normalized p.d.f values so that the RooHistPdf
88/// that represents the cache contents can be explicitly declared as self normalized
89/// eliminating the need for superfluous numeric calculations of unit normalization.s
90
92{
93
94 if (cache.hist()->get()->size()>1) {
95 coutP(Eval) << "RooCachedPdf::fillCacheObject(" << GetName() << ") filling multi-dimensional cache" ;
96 }
97
98 // Update contents of histogram
99 (const_cast<RooAbsPdf &>(static_cast<RooAbsPdf const&>(pdf.arg()))).fillDataHist(cache.hist(),&cache.nset(),1.0,false,true) ;
100
101 if (cache.hist()->get()->size()>1) {
102 ccoutP(Eval) << std::endl ;
103 }
104
105 cache.pdf()->setUnitNorm(true) ;
106}
107
108
109
110////////////////////////////////////////////////////////////////////////////////
111/// Defer preferred scan order to cached pdf preference
112
114{
115 pdf.arg().preferredObservableScanOrder(obs,orderedObs) ;
116}
117
118
119
120////////////////////////////////////////////////////////////////////////////////
121/// If this pdf is operated with a fixed set of observables, return
122/// the subset of the fixed observables that are actual dependents
123/// of the external input p.d.f. If this p.d.f is operated without
124/// a fixed set of cache observables, return the actual observables
125/// of the external input p.d.f given the choice of observables defined
126/// in nset
127
129{
130 if (!_cacheObs.empty()) {
132 }
133
134 return pdf->getObservables(nset);
135}
136
137
138
139////////////////////////////////////////////////////////////////////////////////
140/// If this p.d.f is operated with a fixed set of observables, return
141/// all variables of the external input p.d.f that are not one of
142/// the cache observables. If this p.d.f is operated in automatic mode,
143/// return the parameters of the external input p.d.f
144
146{
147 return pdf.arg().getParameters(_cacheObs.empty() ? nset : _cacheObs) ;
148}
149
150
#define coutP(a)
#define ccoutP(a)
char name[80]
Definition TGX11.cxx:110
RooFit::OwningPtr< RooArgSet > getObservables(const RooArgSet &set, bool valueOnly=true) const
Given a set of possible observables, return the observables that this PDF depends on.
Abstract base class for p.d.f.s that need or want to cache their evaluate() output in a RooHistPdf de...
Abstract interface for all probability density functions.
Definition RooAbsPdf.h:40
RooDataHist * fillDataHist(RooDataHist *hist, const RooArgSet *nset, double scaleFactor, bool correctForBinVolume=false, bool showProgress=false) const
Fill a RooDataHist with values sampled from this function at the bin centers.
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:24
Implementation of RooAbsCachedPdf that can cache any external RooAbsPdf input function provided in th...
RooRealProxy pdf
Proxy to p.d.f being cached.
RooSetProxy _cacheObs
Observable to be cached.
RooFit::OwningPtr< RooArgSet > actualObservables(const RooArgSet &nset) const override
If this pdf is operated with a fixed set of observables, return the subset of the fixed observables t...
RooFit::OwningPtr< RooArgSet > actualParameters(const RooArgSet &nset) const override
If this p.d.f is operated with a fixed set of observables, return all variables of the external input...
void preferredObservableScanOrder(const RooArgSet &obs, RooArgSet &orderedObs) const override
Defer preferred scan order to cached pdf preference.
void fillCacheObject(PdfCacheElem &cachePdf) const override
Update contents of cache histogram by resampling the input p.d.f.
bool add(const RooAbsArg &var, bool valueServer, bool shapeServer, bool silent)
Overloaded RooCollection_t::add() method insert object into set and registers object as server to own...
const RooArgSet * get() const override
Get bin centre of current bin.
Definition RooDataHist.h:82
void setUnitNorm(bool flag)
Definition RooHistPdf.h:78
const T & arg() const
Return reference to object held in proxy.
const char * GetName() const override
Returns name of object.
Definition TNamed.h:49
T * OwningPtr
An alias for raw pointers for indicating that the return type of a RooFit function is an owning point...
Definition Config.h:35