Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooJohnson.h
Go to the documentation of this file.
1// Author: Stephan Hageboeck, CERN, May 2019
2/*****************************************************************************
3 * Project: RooFit *
4 * Authors: *
5 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
6 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
7 * *
8 * Copyright (c) 2000-2005, Regents of the University of California *
9 * and Stanford University. All rights reserved. *
10 * *
11 * Redistribution and use in source and binary forms, *
12 * with or without modification, are permitted according to the terms *
13 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
14 *****************************************************************************/
15#ifndef ROO_JOHNSON
16#define ROO_JOHNSON
17
18#include "RooAbsPdf.h"
19#include "RooRealProxy.h"
20#include "RooConstVar.h"
21
22class RooRealVar;
23
24class RooJohnson final : public RooAbsPdf {
25public:
26 RooJohnson() {} // NOLINT: not allowed to use = default because of TObject::kIsOnHeap detection, see ROOT-10300
27
28 RooJohnson(const char *name, const char *title,
29 RooAbsReal& mass, RooAbsReal& mu, RooAbsReal& lambda,
30 RooAbsReal& gamma, RooAbsReal& delta,
31 double massThreshold = -std::numeric_limits<double>::max());
32
33 RooJohnson(const RooJohnson& other, const char* newName = nullptr);
34
35 TObject* clone(const char* newname) const override {
36 return new RooJohnson(*this,newname);
37 }
38
39 Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=nullptr) const override;
40 double analyticalIntegral(Int_t code, const char* rangeName=nullptr) const override;
41
42 Int_t getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, bool staticInitOK=true) const override;
43 void generateEvent(Int_t code) override;
44
45private:
47
51
54
55 double _massThreshold{-1.E300};
56
57 double evaluate() const override;
58 void doEval(RooFit::EvalContext &) const override;
59 inline bool canComputeBatchWithCuda() const override { return true; }
60
62};
63
64#endif
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
char name[80]
Definition TGX11.cxx:110
Abstract interface for all probability density functions.
Definition RooAbsPdf.h:40
Abstract base class for objects that represent a real value and implements functionality common to al...
Definition RooAbsReal.h:59
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
Johnson's distribution.
Definition RooJohnson.h:24
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
double analyticalIntegral(Int_t code, const char *rangeName=nullptr) const override
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral.
RooRealProxy _mass
Definition RooJohnson.h:48
TObject * clone(const char *newname) const override
Definition RooJohnson.h:35
RooRealProxy _delta
Definition RooJohnson.h:53
RooRealProxy _gamma
Definition RooJohnson.h:52
void generateEvent(Int_t code) override
Generate events based on code obtained by getGenerator().
RooRealProxy _mu
Definition RooJohnson.h:49
RooRealProxy _lambda
Definition RooJohnson.h:50
double _massThreshold
Definition RooJohnson.h:55
void doEval(RooFit::EvalContext &) const override
Compute multiple values of the Johnson distribution.
bool canComputeBatchWithCuda() const override
Definition RooJohnson.h:59
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=nullptr) const override
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
Int_t getGenerator(const RooArgSet &directVars, RooArgSet &generateVars, bool staticInitOK=true) const override
Advertise which kind of direct event generation is supported.
Variable that can be changed from the outside.
Definition RooRealVar.h:37
Mother of all ROOT objects.
Definition TObject.h:41