Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooWrapperPdf.h
Go to the documentation of this file.
1 // Author: Stephan Hageboeck, CERN
2 /*****************************************************************************
3  * Project: RooFit *
4  * Package: RooFitCore *
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-2018, 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_WRAPPER_PDF
17 #define ROO_WRAPPER_PDF
18 
19 #include "RooAbsReal.h"
20 #include "RooRealProxy.h"
21 #include "RooAbsPdf.h"
22 
23 class RooWrapperPdf final : public RooAbsPdf {
24 public:
25 
26  RooWrapperPdf() { };
27  /// Construct a new RooWrapperPdf.
28  /// \param[in] name A name to identify this object.
29  /// \param[in] title Title (for e.g. plotting)
30  /// \param[in] inputFunction Any RooAbsReal that should be converted into a PDF. Although it's possible
31  /// to pass a PDF, it only makes sense for non-PDF functions.
32  RooWrapperPdf(const char *name, const char *title, RooAbsReal& inputFunction) :
33  RooAbsPdf(name, title),
34  _func("inputFunction", "Function to be converted into a PDF", this, inputFunction) { }
35  virtual ~RooWrapperPdf() {};
36 
37  RooWrapperPdf(const RooWrapperPdf& other, const char* name = 0) :
38  RooAbsPdf(other, name),
39  _func("inputFunction", this, other._func) { }
40 
41  virtual TObject* clone(const char* newname) const override {
42  return new RooWrapperPdf(*this, newname);
43  }
44 
45  // Analytical Integration handling
46  Bool_t forceAnalyticalInt(const RooAbsArg& dep) const override {
47  return _func.arg().forceAnalyticalInt(dep);
48  }
49  Int_t getAnalyticalIntegralWN(RooArgSet& allVars, RooArgSet& analVars, const RooArgSet* normSet,
50  const char* rangeName=0) const override {
51  return _func.arg().getAnalyticalIntegralWN(allVars, analVars, normSet, rangeName);
52  }
53  Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& numVars,
54  const char* rangeName=0) const override {
55  return _func.arg().getAnalyticalIntegral(allVars, numVars, rangeName);
56  }
57  double analyticalIntegralWN(Int_t code, const RooArgSet* normSet, const char* rangeName) const override {
58  return _func.arg().analyticalIntegralWN(code, normSet, rangeName);
59  }
60  double analyticalIntegral(Int_t code, const char* rangeName=0) const override {
61  return _func.arg().analyticalIntegral(code, rangeName);
62  }
63 
64 
65  // Internal toy generation. Since our _func is not a PDF (if it is, it doesn't make sense to use this wrapper),
66  // we cannot do anything.
67  /// Get specialised generator. Since the underlying function is not a PDF, this will always return zero.
68 // Int_t getGenerator(const RooArgSet& /*directVars*/, RooArgSet& /*generateVars*/,
69 // bool /*staticInitOK = true*/) const override { return 0; }
70 // void initGenerator(Int_t /*code*/) override { }
71 // void generateEvent(Int_t /*code*/) override { }
72 // Bool_t isDirectGenSafe(const RooAbsArg& /*arg*/) const override { return false; }
73 
74 
75  // Hints for optimized brute-force sampling
76  Int_t getMaxVal(const RooArgSet& vars) const override {
77  return _func.arg().getMaxVal(vars);
78  }
79  Double_t maxVal(Int_t code) const override {
80  return _func.arg().maxVal(code);
81  }
82  Int_t minTrialSamples(const RooArgSet& arGenObs) const override {
83  return _func.arg().minTrialSamples(arGenObs);
84  }
85 
86  // Plotting and binning hints
87  Bool_t isBinnedDistribution(const RooArgSet& obs) const override {
88  return _func.arg().isBinnedDistribution(obs);
89  }
90  std::list<Double_t>* binBoundaries(RooAbsRealLValue& obs, Double_t xlo, Double_t xhi) const override {
91  return _func.arg().binBoundaries(obs, xlo, xhi);
92  }
93  std::list<Double_t>* plotSamplingHint(RooAbsRealLValue& obs, Double_t xlo, Double_t xhi) const override {
94  return _func.arg().plotSamplingHint(obs, xlo, xhi);
95  }
96 
97 
98 
99 private:
100  RooRealProxy _func;
101 
102  double evaluate() const override {
103  return _func;
104  }
105 
106  ClassDefOverride(RooWrapperPdf,1)
107 };
108 
109 #endif