Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooGaussian.cxx
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitModels *
4 * @(#)root/roofit:$Id$
5 * Authors: *
6 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8 * *
9 * Copyright (c) 2000-2005, Regents of the University of California *
10 * and Stanford University. All rights reserved. *
11 * *
12 * Redistribution and use in source and binary forms, *
13 * with or without modification, are permitted according to the terms *
14 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15 *****************************************************************************/
16
17/** \class RooGaussian
18 \ingroup Roofit
19
20Plain Gaussian p.d.f
21**/
22
23#include "RooGaussian.h"
24#include "RooBatchCompute.h"
25#include "RooHelpers.h"
26#include "RooRandom.h"
27
30
31#include <vector>
32
34
35////////////////////////////////////////////////////////////////////////////////
36
37RooGaussian::RooGaussian(const char *name, const char *title,
39 RooAbsReal::Ref _sigma) :
40 RooAbsPdf(name,title),
41 x("x","Observable",this,_x),
42 mean("mean","Mean",this,_mean),
43 sigma("sigma","Width",this,_sigma)
44{
45 RooHelpers::checkRangeOfParameters(this, {&static_cast<RooAbsReal&>(_sigma)}, 0);
46}
47
48////////////////////////////////////////////////////////////////////////////////
49
50RooGaussian::RooGaussian(const RooGaussian& other, const char* name) :
51 RooAbsPdf(other,name), x("x",this,other.x), mean("mean",this,other.mean),
52 sigma("sigma",this,other.sigma)
53{
54}
55
56////////////////////////////////////////////////////////////////////////////////
57
59{
61}
62
63
64////////////////////////////////////////////////////////////////////////////////
65/// Compute multiple values of Gaussian distribution.
67{
69 {ctx.at(x), ctx.at(mean), ctx.at(sigma)});
70}
71
72////////////////////////////////////////////////////////////////////////////////
73
74Int_t RooGaussian::getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* /*rangeName*/) const
75{
76 if (matchArgs(allVars,analVars,x)) return 1 ;
77 if (matchArgs(allVars,analVars,mean)) return 2 ;
78 return 0 ;
79}
80
81////////////////////////////////////////////////////////////////////////////////
82
83double RooGaussian::analyticalIntegral(Int_t code, const char* rangeName) const
84{
86
87 auto& constant = code == 1 ? mean : x;
88 auto& integrand = code == 1 ? x : mean;
89
90 return gaussianIntegral(integrand.min(rangeName), integrand.max(rangeName), constant, sigma);
91}
92
93////////////////////////////////////////////////////////////////////////////////
94
95Int_t RooGaussian::getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, bool /*staticInitOK*/) const
96{
97 if (matchArgs(directVars,generateVars,x)) return 1 ;
98 if (matchArgs(directVars,generateVars,mean)) return 2 ;
99 return 0 ;
100}
101
102////////////////////////////////////////////////////////////////////////////////
103
105{
106 assert(code==1 || code==2) ;
107 double xgen ;
108 if(code==1){
109 while(true) {
111 if (xgen<x.max() && xgen>x.min()) {
112 x = xgen ;
113 break;
114 }
115 }
116 } else if(code==2){
117 while(true) {
119 if (xgen<mean.max() && xgen>mean.min()) {
120 mean = xgen ;
121 break;
122 }
123 }
124 } else {
125 std::cout << "error in RooGaussian generateEvent"<< std::endl;
126 }
127
128 return;
129}
130
131////////////////////////////////////////////////////////////////////////////////
132
134{
135 // Build a call to the stateless gaussian defined later.
136 ctx.addResult(this, ctx.buildCall("RooFit::Detail::EvaluateFuncs::gaussianEvaluate", x, mean, sigma));
137}
138
139////////////////////////////////////////////////////////////////////////////////
140
141std::string RooGaussian::buildCallToAnalyticIntegral(Int_t code, const char *rangeName,
143{
144 auto& constant = code == 1 ? mean : x;
145 auto& integrand = code == 1 ? x : mean;
146
147 return ctx.buildCall("RooFit::Detail::AnalyticalIntegrals::gaussianIntegral",
148 integrand.min(rangeName), integrand.max(rangeName), constant, sigma);
149}
#define ClassImp(name)
Definition Rtypes.h:377
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
Abstract base class for objects that represent a real value and implements functionality common to al...
Definition RooAbsReal.h:59
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:55
A class to maintain the context for squashing of RooFit models into code.
std::string buildCall(std::string const &funcname, Args_t const &...args)
Build the code to call the function with name funcname, passing some arguments.
void addResult(RooAbsArg const *key, std::string const &value)
A function to save an expression that includes/depends on the result of the input node.
std::span< double > output()
RooBatchCompute::Config config(RooAbsArg const *arg) const
Plain Gaussian p.d.f.
Definition RooGaussian.h:24
std::string buildCallToAnalyticIntegral(Int_t code, const char *rangeName, RooFit::Detail::CodeSquashContext &ctx) const override
This function defines the analytical integral translation for the class.
RooRealProxy mean
Definition RooGaussian.h:60
double analyticalIntegral(Int_t code, const char *rangeName=nullptr) const override
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral.
void generateEvent(Int_t code) override
Interface for generation of an event using the algorithm corresponding to the specified code.
void translate(RooFit::Detail::CodeSquashContext &ctx) const override
This function defines a translation for each RooAbsReal based object that can be used to express the ...
RooRealProxy sigma
Definition RooGaussian.h:61
Int_t getGenerator(const RooArgSet &directVars, RooArgSet &generateVars, bool staticInitOK=true) const override
Load generatedVars with the subset of directVars that we can generate events for, and return a code t...
void doEval(RooFit::EvalContext &) const override
Compute multiple values of Gaussian distribution.
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=nullptr) const override
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
RooRealProxy x
Definition RooGaussian.h:59
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 Double_t Gaus(Double_t mean=0, Double_t sigma=1)
Samples a random number from the standard Normal (Gaussian) Distribution with the given mean and sigm...
Definition TRandom.cxx:275
const Double_t sigma
Double_t x[n]
Definition legend1.C:17
void compute(Config cfg, Computer comp, std::span< double > output, VarSpan vars, ArgSpan extraArgs={})
double gaussianEvaluate(double x, double mean, double sigma)
Function to evaluate an un-normalized RooGaussian.
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.