Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooFFTConvPdf.h
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#ifndef ROOFFTCONVPDF
13#define ROOFFTCONVPDF
14
15#include "RooAbsCachedPdf.h"
16#include "RooRealProxy.h"
17#include "RooSetProxy.h"
18#include "RooAbsReal.h"
19#include "RooHistPdf.h"
20#include "TVirtualFFT.h"
21
22class RooRealVar;
23
24///PDF for the numerical (FFT) convolution of two PDFs.
26public:
27
29 // coverity[UNINIT_CTOR]
30 } ;
31 RooFFTConvPdf(const char *name, const char *title, RooRealVar& convVar, RooAbsPdf& pdf1, RooAbsPdf& pdf2, Int_t ipOrder=2);
32 RooFFTConvPdf(const char *name, const char *title, RooAbsReal& pdfConvVar, RooRealVar& convVar, RooAbsPdf& pdf1, RooAbsPdf& pdf2, Int_t ipOrder=2);
33 RooFFTConvPdf(const RooFFTConvPdf& other, const char* name=0) ;
34 virtual TObject* clone(const char* newname) const { return new RooFFTConvPdf(*this,newname); }
35 virtual ~RooFFTConvPdf() ;
36
37 void setShift(Double_t val1, Double_t val2) { _shift1 = val1 ; _shift2 = val2 ; }
39 const RooArgSet& cacheObservables() const { return _cacheObs ; }
40
42 // Return value of buffer fraction applied in FFT calculation array beyond either
43 // end of the observable domain to reduce cyclical effects
44 return _bufFrac ;
45 }
46
47 enum BufStrat { Extend=0, Mirror=1, Flat=2 } ;
49 // Return the strategy currently used to fill the buffer:
50 // 'Extend' means is that the input p.d.f convolution observable range is widened to include the buffer range
51 // 'Flat' means that the buffer is filled with the p.d.f. value at the boundary of the observable range
52 // 'Mirror' means that the buffer is filled with a mirror image of the p.d.f. around the convolution observable boundary
53 return _bufStrat ;
54 }
56 void setBufferFraction(Double_t frac) ;
57
58 void printMetaArgs(std::ostream& os) const ;
59
60 // Propagate maximum value estimate of pdf1 as convolution can only result in lower max values
61 virtual Int_t getMaxVal(const RooArgSet& vars) const { return _pdf1.arg().getMaxVal(vars) ; }
62 virtual Double_t maxVal(Int_t code) const { return _pdf1.arg().maxVal(code) ; }
63
64
65protected:
66
67 RooRealProxy _x ; // Convolution observable
68 RooRealProxy _xprime ; // Input function representing value of convolution observable
69 RooRealProxy _pdf1 ; // First input p.d.f
70 RooRealProxy _pdf2 ; // Second input p.d.f
71 RooSetProxy _params ; // Effective parameters of this p.d.f.
72
73 void calcParams() ;
74 Bool_t redirectServersHook(const RooAbsCollection& newServerList, Bool_t mustReplaceAll, Bool_t nameChange, Bool_t isRecursive) ;
75
76 std::vector<double> scanPdf(RooRealVar& obs, RooAbsPdf& pdf, const RooDataHist& hist, const RooArgSet& slicePos, Int_t& N, Int_t& N2, Int_t& zeroBin, Double_t shift) const ;
77
78 class FFTCacheElem : public PdfCacheElem {
79 public:
80 FFTCacheElem(const RooFFTConvPdf& self, const RooArgSet* nset) ;
81
83
84 std::unique_ptr<TVirtualFFT> fftr2c1;
85 std::unique_ptr<TVirtualFFT> fftr2c2;
86 std::unique_ptr<TVirtualFFT> fftc2r;
87
88 std::unique_ptr<RooAbsPdf> pdf1Clone;
89 std::unique_ptr<RooAbsPdf> pdf2Clone;
90
91 std::unique_ptr<RooAbsBinning> histBinning;
92 std::unique_ptr<RooAbsBinning> scanBinning;
93 };
94
95 friend class FFTCacheElem ;
96
97 virtual Double_t evaluate() const { RooArgSet dummy(_x.arg()) ; return getVal(&dummy) ; } ; // dummy
98 virtual const char* inputBaseName() const ;
99 virtual RooArgSet* actualObservables(const RooArgSet& nset) const ;
100 virtual RooArgSet* actualParameters(const RooArgSet& nset) const ;
101 virtual RooAbsArg& pdfObservable(RooAbsArg& histObservable) const ;
102 virtual void fillCacheObject(PdfCacheElem& cache) const ;
103 void fillCacheSlice(FFTCacheElem& cache, const RooArgSet& slicePosition) const ;
104
105 virtual PdfCacheElem* createCache(const RooArgSet* nset) const ;
106 virtual TString histNameSuffix() const ;
107
108 // mutable std:: map<const RooHistPdf*,CacheAuxInfo*> _cacheAuxInfo ; //! Auxilary Cache information (do not persist)
109 Double_t _bufFrac ; // Sampling buffer size as fraction of domain size
110 BufStrat _bufStrat ; // Strategy to fill the buffer
111
114
115 virtual RooAbsGenContext* genContext(const RooArgSet &vars, const RooDataSet *prototype=0,
116 const RooArgSet* auxProto=0, Bool_t verbose= kFALSE) const ;
117
118 friend class RooConvGenContext ;
119 RooSetProxy _cacheObs ; // Non-convolution observables that are also cached
120
121private:
122
123 void prepareFFTBinning(RooRealVar& convVar) const;
124
125 ClassDef(RooFFTConvPdf,1) // Convolution operator p.d.f based on numeric Fourier transforms
126};
127
128#endif
const Bool_t kFALSE
Definition RtypesCore.h:101
double Double_t
Definition RtypesCore.h:59
#define ClassDef(name, id)
Definition Rtypes.h:325
#define N
char name[80]
Definition TGX11.cxx:110
RooAbsArg is the common abstract base class for objects that represent a value and a "shape" in RooFi...
Definition RooAbsArg.h:69
RooAbsCachedPdf is the abstract base class for p.d.f.s that need or want to cache their evaluate() ou...
RooAbsCollection is an abstract container object that can hold multiple RooAbsArg objects.
RooAbsGenContext is the abstract base class for generator contexts of RooAbsPdf objects.
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:64
Double_t getVal(const RooArgSet *normalisationSet=nullptr) const
Evaluate object.
Definition RooAbsReal.h:94
virtual Double_t maxVal(Int_t code) const
Return maximum value for set of observables identified by code assigned in getMaxVal.
virtual Int_t getMaxVal(const RooArgSet &vars) const
Advertise capability to determine maximum value of function for given set of observables.
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:35
RooConvGenContext is an efficient implementation of the generator context specific for RooAbsAnaConvP...
The RooDataHist is a container class to hold N-dimensional binned data.
Definition RooDataHist.h:45
RooDataSet is a container class to hold unbinned data.
Definition RooDataSet.h:36
std::unique_ptr< TVirtualFFT > fftr2c2
virtual RooArgList containedArgs(Action)
Returns all RooAbsArg objects contained in the cache element.
std::unique_ptr< TVirtualFFT > fftc2r
std::unique_ptr< RooAbsPdf > pdf2Clone
std::unique_ptr< RooAbsBinning > histBinning
std::unique_ptr< RooAbsBinning > scanBinning
std::unique_ptr< RooAbsPdf > pdf1Clone
std::unique_ptr< TVirtualFFT > fftr2c1
PDF for the numerical (FFT) convolution of two PDFs.
Bool_t redirectServersHook(const RooAbsCollection &newServerList, Bool_t mustReplaceAll, Bool_t nameChange, Bool_t isRecursive)
calcParams() ;
void printMetaArgs(std::ostream &os) const
Customized printing of arguments of a RooNumConvPdf to more intuitively reflect the contents of the p...
virtual PdfCacheElem * createCache(const RooArgSet *nset) const
Return specialized cache subclass for FFT calculations.
virtual ~RooFFTConvPdf()
Destructor.
RooSetProxy _params
BufStrat _bufStrat
void calcParams()
(Re)calculate effective parameters of this p.d.f.
std::vector< double > scanPdf(RooRealVar &obs, RooAbsPdf &pdf, const RooDataHist &hist, const RooArgSet &slicePos, Int_t &N, Int_t &N2, Int_t &zeroBin, Double_t shift) const
Scan the values of 'pdf' in observable 'obs' using the bin values stored in 'hist' at slice position ...
virtual void fillCacheObject(PdfCacheElem &cache) const
Fill the contents of the cache the FFT convolution output.
BufStrat bufferStrategy() const
void setCacheObservables(const RooArgSet &obs)
void prepareFFTBinning(RooRealVar &convVar) const
Try to improve the binning and inform user if possible.
virtual TString histNameSuffix() const
Suffix for cache histogram (added in addition to suffix for cache name)
Double_t _bufFrac
void fillCacheSlice(FFTCacheElem &cache, const RooArgSet &slicePosition) const
Fill a slice of cachePdf with the output of the FFT convolution calculation.
RooRealProxy _xprime
virtual Double_t maxVal(Int_t code) const
Return maximum value for set of observables identified by code assigned in getMaxVal.
RooRealProxy _pdf1
RooRealProxy _x
virtual RooAbsGenContext * genContext(const RooArgSet &vars, const RooDataSet *prototype=0, const RooArgSet *auxProto=0, Bool_t verbose=kFALSE) const
Create appropriate generator context for this convolution.
const RooArgSet & cacheObservables() const
void setShift(Double_t val1, Double_t val2)
virtual const char * inputBaseName() const
Return base name component for cache components in this case 'PDF1_CONV_PDF2'.
void setBufferFraction(Double_t frac)
Change the size of the buffer on either side of the observable range to frac times the size of the ra...
virtual RooArgSet * actualObservables(const RooArgSet &nset) const
Return the observables to be cached given the normalization set nset.
RooRealProxy _pdf2
virtual RooAbsArg & pdfObservable(RooAbsArg &histObservable) const
Return p.d.f.
void setBufferStrategy(BufStrat bs)
Change strategy to fill the overflow buffer on either side of the convolution observable range.
virtual Int_t getMaxVal(const RooArgSet &vars) const
Advertise capability to determine maximum value of function for given set of observables.
virtual TObject * clone(const char *newname) const
virtual RooArgSet * actualParameters(const RooArgSet &nset) const
Return the parameters on which the cache depends given normalization set nset.
Double_t bufferFraction() const
virtual Double_t evaluate() const
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
RooSetProxy _cacheObs
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:39
RooSetProxy is the concrete proxy for RooArgSet objects.
Definition RooSetProxy.h:23
virtual Bool_t add(const RooAbsArg &var, Bool_t silent=kFALSE) override
Overloaded RooArgSet::add() method inserts 'var' into set and registers 'var' as server to owner with...
virtual void removeAll() override
Remove all argument inset using remove(const RooAbsArg&).
const T & arg() const
Return reference to object held in proxy.
Mother of all ROOT objects.
Definition TObject.h:41
Basic string class.
Definition TString.h:136