Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooGaussian.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitModels *
4 * File: $Id: RooGaussian.h,v 1.16 2007/07/12 20:30:49 wouter Exp $
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#ifndef ROO_GAUSSIAN
17#define ROO_GAUSSIAN
18
19#include "RooAbsPdf.h"
20#include "RooRealProxy.h"
21
22class RooAbsReal;
23
24class RooGaussian : public RooAbsPdf {
25public:
27 RooGaussian(const char *name, const char *title,
28 RooAbsReal& _x, RooAbsReal& _mean, RooAbsReal& _sigma);
29 RooGaussian(const RooGaussian& other, const char* name=nullptr);
30 TObject* clone(const char* newname) const override {
31 return new RooGaussian(*this,newname);
32 }
33 inline ~RooGaussian() override { }
34
35 Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=nullptr) const override;
36 double analyticalIntegral(Int_t code, const char* rangeName=nullptr) const override;
37
38 Int_t getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, bool staticInitOK=true) const override;
39 void generateEvent(Int_t code) override;
40
41 /// Get the x variable.
42 RooAbsReal const& getX() const { return x.arg(); }
43
44 /// Get the mean parameter.
45 RooAbsReal const& getMean() const { return mean.arg(); }
46
47 /// Get the sigma parameter.
48 RooAbsReal const& getSigma() const { return sigma.arg(); }
49
50protected:
51
55
56 double evaluate() const override;
57 void computeBatch(cudaStream_t*, double* output, size_t size, RooFit::Detail::DataMap const&) const override;
58 inline bool canComputeBatchWithCuda() const override { return true; }
59
60private:
61
62 ClassDefOverride(RooGaussian,1) // Gaussian PDF
63};
64
65#endif
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
char name[80]
Definition TGX11.cxx:110
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:62
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
Plain Gaussian p.d.f.
Definition RooGaussian.h:24
TObject * clone(const char *newname) const override
Definition RooGaussian.h:30
~RooGaussian() override
Definition RooGaussian.h:33
RooRealProxy mean
Definition RooGaussian.h:53
double analyticalIntegral(Int_t code, const char *rangeName=nullptr) const override
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral.
RooAbsReal const & getX() const
Get the x variable.
Definition RooGaussian.h:42
void generateEvent(Int_t code) override
Interface for generation of an event using the algorithm corresponding to the specified code.
void computeBatch(cudaStream_t *, double *output, size_t size, RooFit::Detail::DataMap const &) const override
Compute multiple values of Gaussian distribution.
RooRealProxy sigma
Definition RooGaussian.h:54
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...
RooAbsReal const & getMean() const
Get the mean parameter.
Definition RooGaussian.h:45
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.
bool canComputeBatchWithCuda() const override
Definition RooGaussian.h:58
RooRealProxy x
Definition RooGaussian.h:52
RooAbsReal const & getSigma() const
Get the sigma parameter.
Definition RooGaussian.h:48
const T & arg() const
Return reference to object held in proxy.
Mother of all ROOT objects.
Definition TObject.h:41
static void output()