Logo ROOT  
Reference Guide
 
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 "RooAbsPdf.h"
22#include "RooCachedPdf.h"
23#include "RooAbsReal.h"
24#include "RooMsgService.h"
25#include "RooDataHist.h"
26#include "RooHistPdf.h"
27
28using std::endl;
29
30#include <ostream>
31
32////////////////////////////////////////////////////////////////////////////////
33/// Constructor taking name, title and function to be cached. To control
34/// granularity of the binning of the cache histogram set the desired properties
35/// in the binning named "cache" in the observables of the function. The dimensions
36/// of the cache are automatically matched to the number of observables used
37/// in each use context. Multiple cache in different observable may exists
38/// simultaneously if the cached p.d.f is used with multiple observable
39/// configurations simultaneously
40
41RooCachedPdf::RooCachedPdf(const char *name, const char *title, RooAbsPdf& _pdf) :
42 RooAbsCachedPdf(name,title),
43 pdf("pdf","pdf",this,_pdf),
44 _cacheObs("cacheObs","cacheObs",this,false,false)
45 {
46 }
47
48
49
50////////////////////////////////////////////////////////////////////////////////
51/// Constructor taking name, title and function to be cached and
52/// fixed choice of variable to cache. To control granularity of the
53/// binning of the cache histogram set the desired properties in the
54/// binning named "cache" in the observables of the function.
55/// If the fixed set of cache observables does not match the observables
56/// defined in the use context of the p.d.f the cache is still filled
57/// completely. Ee.g. when it is specified to cache x and p and only x
58/// is a observable in the given use context the cache histogram will
59/// store sampled values for all values of observable x and parameter p.
60/// In such a mode of operation the cache will also not be recalculated
61/// if the observable p changes
62
63RooCachedPdf::RooCachedPdf(const char *name, const char *title, RooAbsPdf& _pdf, const RooArgSet& cacheObs) :
64 RooAbsCachedPdf(name,title),
65 pdf("pdf","pdf",this,_pdf),
66 _cacheObs("cacheObs","cacheObs",this,false,false)
67 {
69 }
70
71
72
73////////////////////////////////////////////////////////////////////////////////
74/// Copy constructor
75
78 pdf("pdf",this,other.pdf),
79 _cacheObs("cacheObs",this,other._cacheObs)
80 {
81 }
82
83////////////////////////////////////////////////////////////////////////////////
84/// Update contents of cache histogram by resampling the input p.d.f. Note that
85/// the cache is filled with normalized p.d.f values so that the RooHistPdf
86/// that represents the cache contents can be explicitly declared as self normalized
87/// eliminating the need for superfluous numeric calculations of unit normalization.s
88
90{
91
92 if (cache.hist()->get()->size()>1) {
93 coutP(Eval) << "RooCachedPdf::fillCacheObject(" << GetName() << ") filling multi-dimensional cache" ;
94 }
95
96 // Update contents of histogram
97 (const_cast<RooAbsPdf &>(static_cast<RooAbsPdf const&>(pdf.arg()))).fillDataHist(cache.hist(),&cache.nset(),1.0,false,true) ;
98
99 if (cache.hist()->get()->size()>1) {
100 ccoutP(Eval) << std::endl ;
101 }
102
103 cache.pdf()->setUnitNorm(true) ;
104}
105
106
107
108////////////////////////////////////////////////////////////////////////////////
109/// Defer preferred scan order to cached pdf preference
110
112{
113 pdf.arg().preferredObservableScanOrder(obs,orderedObs) ;
114}
115
116
117
118////////////////////////////////////////////////////////////////////////////////
119/// If this pdf is operated with a fixed set of observables, return
120/// the subset of the fixed observables that are actual dependents
121/// of the external input p.d.f. If this p.d.f is operated without
122/// a fixed set of cache observables, return the actual observables
123/// of the external input p.d.f given the choice of observables defined
124/// in nset
125
127{
128 if (!_cacheObs.empty()) {
130 }
131
132 return pdf->getObservables(nset);
133}
134
135
136
137////////////////////////////////////////////////////////////////////////////////
138/// If this p.d.f is operated with a fixed set of observables, return
139/// all variables of the external input p.d.f that are not one of
140/// the cache observables. If this p.d.f is operated in automatic mode,
141/// return the parameters of the external input p.d.f
142
144{
145 return pdf.arg().getParameters(_cacheObs.empty() ? nset : _cacheObs) ;
146}
147
148
#define coutP(a)
#define ccoutP(a)
char name[80]
Definition TGX11.cxx:142
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:32
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:77
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