Logo ROOT  
Reference Guide
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,
31 double massThreshold = -std::numeric_limits<double>::max());
32
33 RooJohnson(const RooJohnson& other, const char* newName = nullptr);
34
35 virtual ~RooJohnson() = default;
36
37 TObject* clone(const char* newname) const override {
38 return new RooJohnson(*this,newname);
39 }
40
41 Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const override;
42 Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const override;
43
44 Int_t getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, Bool_t staticInitOK=kTRUE) const override;
45 void generateEvent(Int_t code) override;
46
47private:
49
53
56
57 double _massThreshold{-1.E300};
58
59 Double_t evaluate() const override;
60 RooSpan<double> evaluateBatch(std::size_t begin, std::size_t end) const override;
61
63};
64
65#endif
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
double Double_t
Definition: RtypesCore.h:55
const Bool_t kTRUE
Definition: RtypesCore.h:87
#define ClassDefOverride(name, id)
Definition: Rtypes.h:330
char name[80]
Definition: TGX11.cxx:109
TIterator end() or range-based loops.")
Definition: RooAbsArg.h:113
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:59
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgSet.h:28
Johnson's distribution.
Definition: RooJohnson.h:24
virtual ~RooJohnson()=default
Double_t evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
Definition: RooJohnson.cxx:100
Double_t analyticalIntegral(Int_t code, const char *rangeName=0) const override
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral.
Definition: RooJohnson.cxx:211
RooRealProxy _mass
Definition: RooJohnson.h:50
TObject * clone(const char *newname) const override
Definition: RooJohnson.h:37
RooRealProxy _delta
Definition: RooJohnson.h:55
RooRealProxy _gamma
Definition: RooJohnson.h:54
void generateEvent(Int_t code) override
Generate events based on code obtained by getGenerator().
Definition: RooJohnson.cxx:289
Int_t getGenerator(const RooArgSet &directVars, RooArgSet &generateVars, Bool_t staticInitOK=kTRUE) const override
Advertise which kind of direct event generation is supported.
Definition: RooJohnson.cxx:275
RooSpan< double > evaluateBatch(std::size_t begin, std::size_t end) const override
Compute in batches.
Definition: RooJohnson.cxx:160
RooRealProxy _mu
Definition: RooJohnson.h:51
RooRealProxy _lambda
Definition: RooJohnson.h:52
double _massThreshold
Definition: RooJohnson.h:57
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=0) const override
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
Definition: RooJohnson.cxx:198
RooRealVar represents a variable that can be changed from the outside.
Definition: RooRealVar.h:35
A simple container to hold a batch of data values.
Definition: RooSpan.h:32
Mother of all ROOT objects.
Definition: TObject.h:37
double gamma(double x)