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 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> evaluateSpan(RooBatchCompute::RunContext& evalData, const RooArgSet* normSet) const override;
61
63};
64
65#endif
double Double_t
Definition RtypesCore.h:59
const Bool_t kTRUE
Definition RtypesCore.h:91
#define ClassDefOverride(name, id)
Definition Rtypes.h:329
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:61
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:29
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.
Double_t analyticalIntegral(Int_t code, const char *rangeName=0) const override
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral.
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().
Int_t getGenerator(const RooArgSet &directVars, RooArgSet &generateVars, Bool_t staticInitOK=kTRUE) const override
Advertise which kind of direct event generation is supported.
RooRealProxy _mu
Definition RooJohnson.h:51
RooRealProxy _lambda
Definition RooJohnson.h:52
double _massThreshold
Definition RooJohnson.h:57
RooSpan< double > evaluateSpan(RooBatchCompute::RunContext &evalData, const RooArgSet *normSet) const override
Compute multiple values of the Johnson distribution.
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=0) const override
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:39
A simple container to hold a batch of data values.
Definition RooSpan.h:34
Mother of all ROOT objects.
Definition TObject.h:37
This struct enables passing computation data around between elements of a computation graph.
Definition RunContext.h:31