Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooPoisson.cxx
Go to the documentation of this file.
1 /*****************************************************************************
2 * Project: RooFit *
3 * *
4 * Simple Poisson PDF
5 * author: Kyle Cranmer <cranmer@cern.ch>
6 * *
7 *****************************************************************************/
8
9/** \class RooPoisson
10 \ingroup Roofit
11
12Poisson pdf
13**/
14
15#include "RooPoisson.h"
16#include "RooRandom.h"
17#include "RooNaNPacker.h"
18#include "RooBatchCompute.h"
19#include "RooHelpers.h"
20
22
23#include <array>
24#include <limits>
25
26////////////////////////////////////////////////////////////////////////////////
27/// Constructor
28
29RooPoisson::RooPoisson(const char *name, const char *title, RooAbsReal::Ref _x, RooAbsReal::Ref _mean, bool noRounding)
30 : RooAbsPdf(name, title), x("x", "x", this, _x), mean("mean", "mean", this, _mean), _noRounding(noRounding)
31{
33 /*callingClass=*/this, /*pars=*/{&x.arg(), &mean.arg()}, /*min=*/0.,
34 /*max=*/std::numeric_limits<double>::infinity(),
35 /*limitsInAllowedRange=*/true);
36}
37
38////////////////////////////////////////////////////////////////////////////////
39/// Copy constructor
40
43 x("x",this,other.x),
44 mean("mean",this,other.mean),
45 _noRounding(other._noRounding),
46 _protectNegative(other._protectNegative)
47{
48}
49
50////////////////////////////////////////////////////////////////////////////////
51/// Implementation in terms of the TMath::Poisson() function.
52
54{
55 double k = _noRounding ? x : floor(x);
56 if(_protectNegative && mean<0) {
58 np.setPayload(-mean);
59 return np._payload;
60 }
62}
63
64////////////////////////////////////////////////////////////////////////////////
65/// Compute multiple values of the Poisson distribution.
67{
68 std::array<double, 2> extraArgs{static_cast<double>(_protectNegative), static_cast<double>(_noRounding)};
69 RooBatchCompute::compute(ctx.config(this), RooBatchCompute::Poisson, ctx.output(), {ctx.at(x), ctx.at(mean)},
70 extraArgs);
71}
72
73////////////////////////////////////////////////////////////////////////////////
74
75Int_t RooPoisson::getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* /*rangeName*/) const
76{
77 if (matchArgs(allVars,analVars,x)) return 1 ;
78 if (matchArgs(allVars, analVars, mean)) return 2;
79 return 0 ;
80}
81
82////////////////////////////////////////////////////////////////////////////////
83
84double RooPoisson::analyticalIntegral(Int_t code, const char* rangeName) const
85{
86 R__ASSERT(code == 1 || code == 2) ;
87
88 RooRealProxy const &integrand = code == 1 ? x : mean;
90 code, mean, _noRounding ? x : std::floor(x), integrand.min(rangeName), integrand.max(rangeName), _protectNegative);
91}
92
93////////////////////////////////////////////////////////////////////////////////
94/// Advertise internal generator in x
95
97{
98 if (matchArgs(directVars,generateVars,x)) return 1 ;
99 return 0 ;
100}
101
102////////////////////////////////////////////////////////////////////////////////
103/// Implement internal generator using TRandom::Poisson
104
106{
107 R__ASSERT(code==1) ;
108 double xgen ;
109 while(true) {
111 if (xgen<=x.max() && xgen>=x.min()) {
112 x = xgen ;
113 break;
114 }
115 }
116 return;
117}
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
#define R__ASSERT(e)
Checks condition e and reports a fatal error if it's false.
Definition TError.h:125
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t np
char name[80]
Definition TGX11.cxx:110
Abstract interface for all probability density functions.
Definition RooAbsPdf.h:32
A RooAbsReal::Ref can be constructed from a RooAbsReal& or a double that will be implicitly converted...
Definition RooAbsReal.h:72
bool matchArgs(const RooArgSet &allDeps, RooArgSet &analDeps, const RooArgProxy &a, const Proxies &... proxies) const
Definition RooAbsReal.h:428
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:24
std::span< double > output()
RooBatchCompute::Config config(RooAbsArg const *arg) const
Poisson pdf.
Definition RooPoisson.h:19
RooRealProxy x
Definition RooPoisson.h:52
bool _noRounding
Definition RooPoisson.h:54
double analyticalIntegral(Int_t code, const char *rangeName=nullptr) const override
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral.
bool _protectNegative
Definition RooPoisson.h:55
void generateEvent(Int_t code) override
Implement internal generator using TRandom::Poisson.
void doEval(RooFit::EvalContext &) const override
Compute multiple values of the Poisson distribution.
Int_t getGenerator(const RooArgSet &directVars, RooArgSet &generateVars, bool staticInitOK=true) const override
Advertise internal generator in x.
double evaluate() const override
Implementation in terms of the TMath::Poisson() function.
RooRealProxy mean
Definition RooPoisson.h:53
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=nullptr) const override
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
static TRandom * randomGenerator()
Return a pointer to a singleton random-number generator implementation.
Definition RooRandom.cxx:47
double max(const char *rname=nullptr) const
Query upper limit of range. This requires the payload to be RooAbsRealLValue or derived.
const T & arg() const
Return reference to object held in proxy.
double min(const char *rname=nullptr) const
Query lower limit of range. This requires the payload to be RooAbsRealLValue or derived.
Double_t x[n]
Definition legend1.C:17
void compute(Config cfg, Computer comp, std::span< double > output, VarSpan vars, ArgSpan extraArgs={})
double poisson(double x, double par)
Definition MathFuncs.h:236
double poissonIntegral(int code, double mu, double x, double integrandMin, double integrandMax, unsigned int protectNegative)
Definition MathFuncs.h:631
void checkRangeOfParameters(const RooAbsReal *callingClass, std::initializer_list< const RooAbsReal * > pars, double min=-std::numeric_limits< double >::max(), double max=std::numeric_limits< double >::max(), bool limitsInAllowedRange=false, std::string const &extraMessage="")
Check if the parameters have a range, and warn if the range extends below / above the set limits.
Little struct that can pack a float into the unused bits of the mantissa of a NaN double.