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 "RooMath.h"
18#include "RooNaNPacker.h"
19#include "RooBatchCompute.h"
20
22
23#include <array>
24
26
27////////////////////////////////////////////////////////////////////////////////
28/// Constructor
29
30RooPoisson::RooPoisson(const char *name, const char *title,
32 RooAbsReal::Ref _mean,
33 bool noRounding) :
34 RooAbsPdf(name,title),
35 x("x","x",this,_x),
36 mean("mean","mean",this,_mean),
37 _noRounding(noRounding)
38{
39}
40
41////////////////////////////////////////////////////////////////////////////////
42/// Copy constructor
43
44 RooPoisson::RooPoisson(const RooPoisson& other, const char* name) :
45 RooAbsPdf(other,name),
46 x("x",this,other.x),
47 mean("mean",this,other.mean),
48 _noRounding(other._noRounding),
49 _protectNegative(other._protectNegative)
50{
51}
52
53////////////////////////////////////////////////////////////////////////////////
54/// Implementation in terms of the TMath::Poisson() function.
55
57{
58 double k = _noRounding ? x : floor(x);
59 if(_protectNegative && mean<0) {
61 np.setPayload(-mean);
62 return np._payload;
63 }
65}
66
67////////////////////////////////////////////////////////////////////////////////
68/// Compute multiple values of the Poisson distribution.
70{
71 std::array<double, 2> extraArgs{static_cast<double>(_protectNegative), static_cast<double>(_noRounding)};
72 RooBatchCompute::compute(ctx.config(this), RooBatchCompute::Poisson, ctx.output(), {ctx.at(x), ctx.at(mean)},
73 extraArgs);
74}
75
76////////////////////////////////////////////////////////////////////////////////
77
78Int_t RooPoisson::getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* /*rangeName*/) const
79{
80 if (matchArgs(allVars,analVars,x)) return 1 ;
81 if (matchArgs(allVars, analVars, mean)) return 2;
82 return 0 ;
83}
84
85////////////////////////////////////////////////////////////////////////////////
86
87double RooPoisson::analyticalIntegral(Int_t code, const char* rangeName) const
88{
89 R__ASSERT(code == 1 || code == 2) ;
90
91 RooRealProxy const &integrand = code == 1 ? x : mean;
93 code, mean, _noRounding ? x : std::floor(x), integrand.min(rangeName), integrand.max(rangeName), _protectNegative);
94}
95
96////////////////////////////////////////////////////////////////////////////////
97/// Advertise internal generator in x
98
99Int_t RooPoisson::getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, bool /*staticInitOK*/) const
100{
101 if (matchArgs(directVars,generateVars,x)) return 1 ;
102 return 0 ;
103}
104
105////////////////////////////////////////////////////////////////////////////////
106/// Implement internal generator using TRandom::Poisson
107
109{
110 R__ASSERT(code==1) ;
111 double xgen ;
112 while(true) {
114 if (xgen<=x.max() && xgen>=x.min()) {
115 x = xgen ;
116 break;
117 }
118 }
119 return;
120}
#define ClassImp(name)
Definition Rtypes.h:382
#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:40
A RooAbsReal::Ref can be constructed from a RooAbsReal& or a double that will be implicitly converted...
Definition RooAbsReal.h:68
bool matchArgs(const RooArgSet &allDeps, RooArgSet &numDeps, const RooArgProxy &a) const
Utility function for use in getAnalyticalIntegral().
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:48
double max(const char *rname=nullptr) const
Query upper limit of range. This requires the payload to be RooAbsRealLValue or derived.
double min(const char *rname=nullptr) const
Query lower limit of range. This requires the payload to be RooAbsRealLValue or derived.
virtual ULong64_t Poisson(Double_t mean)
Generates a random integer N according to a Poisson law.
Definition TRandom.cxx:404
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:198
double poissonIntegral(int code, double mu, double x, double integrandMin, double integrandMax, unsigned int protectNegative)
Definition MathFuncs.h:585
Little struct that can pack a float into the unused bits of the mantissa of a NaN double.