13#ifndef ROOCFUNCTION2BINDING
14#define ROOCFUNCTION2BINDING
50template<
class VO,
class VI1,
class VI2>
55 void add(
const char*
name, VO (*ptr)(VI1,VI2),
const char* arg1name=
"x",
const char* arg2name=
"y") {
90 std::map<std::string,VO (*)(VI1,VI2)>
_ptrmap ;
91 std::map<VO (*)(VI1,VI2),std::string>
_namemap ;
92 std::map<VO (*)(VI1,VI2),std::vector<std::string> >
_argnamemap ;
97template<
class VO,
class VI1,
class VI2>
122 temp._funcptr =
_ptr;
123 return Form(
"(%p)",temp._ptr) ;
128 return fmap().lookupArgName(
_ptr,iarg) ;
156template<
class VO,
class VI1,
class VI2>
160template<
class VO,
class VI1,
class VI2>
172 typedef ::RooCFunction2Ref<VO,VI1,VI2> thisClass;
185 if (tmpName==
"UNKNOWN" && R__v>0) {
187 coutW(ObjectHandling) <<
"WARNING: Objected embeds function pointer to unknown function, object will not be functional" << std::endl ;
188 _ptr = dummyFunction ;
193 _ptr = fmap().lookupPtr(tmpName.
Data()) ;
196 coutW(ObjectHandling) <<
"ERROR: Objected embeds pointer to function named " << tmpName
197 <<
" but no such function is registered, object will not be functional" << std::endl ;
210 TString tmpName = fmap().lookupName(_ptr) ;
211 if (tmpName.
Length()==0) {
212 coutW(ObjectHandling) <<
"WARNING: Cannot persist unknown function pointer " <<
Form(
"0x%zx", (
size_t)_ptr)
213 <<
" written object will not be functional when read back" << std::endl ;
227template<
class VO,
class VI1,
class VI2>
239 os <<
"[ function=" <<
func.name() <<
" " ;
266template<
class VO,
class VI1,
class VI2>
271 x(func.argName(0),func.argName(0),this,_x),
272 y(func.argName(1),func.argName(1),this,_y)
281template<
class VO,
class VI1,
class VI2>
294template<
class VO,
class VI1,
class VI2>
306 os <<
"[ function=" <<
func.name() <<
" " ;
333template<
class VO,
class VI1,
class VI2>
338 x(func.argName(0),func.argName(0),this,_x),
339 y(func.argName(1),func.argName(1),this,_y)
348template<
class VO,
class VI1,
class VI2>
RooAbsReal * _func
Pointer to original input function.
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
#define ClassDefOverride(name, id)
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
char * Form(const char *fmt,...)
Formats a string in a circular formatting buffer.
Int_t numProxies() const
Return the number of registered proxies.
RooAbsProxy * getProxy(Int_t index) const
Return the nth proxy from the proxy list.
Abstract interface for all probability density functions.
Abstract interface for proxy classes.
Abstract base class for objects that represent a real value and implements functionality common to al...
RooCFunction2Binding is a templated implementation of class RooAbsReal that binds generic C(++) funct...
RooCFunction2Ref< VO, VI1, VI2 > func
void printArgs(std::ostream &os) const override
Print object arguments, ie its proxies.
TObject * clone(const char *newname) const override
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
std::map< VO(*)(VI1, VI2), std::vector< std::string > > _argnamemap
std::map< std::string, VO(*)(VI1, VI2)> _ptrmap
std::map< VO(*)(VI1, VI2), std::string > _namemap
void add(const char *name, VO(*ptr)(VI1, VI2), const char *arg1name="x", const char *arg2name="y")
VO(*)(VI1, VI2) lookupPtr(const char *name)
const char * lookupArgName(VO(*ptr)(VI1, VI2), UInt_t iarg)
const char * lookupName(VO(*ptr)(VI1, VI2))
TObject * clone(const char *newname) const override
void printArgs(std::ostream &os) const override
Print object arguments, ie its proxies.
RooCFunction2PdfBinding()
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
RooCFunction2Ref< VO, VI1, VI2 > func
const char * argName(Int_t iarg)
VO operator()(VI1 x, VI2 y) const
RooCFunction2Ref(VO(*ptr)(VI1, VI2)=nullptr)
static RooCFunction2Map< VO, VI1, VI2 > & fmap()
static VO dummyFunction(VI1, VI2)
void Streamer(TBuffer &) override
Stream an object of class TObject.
const char * name() const
static RooCFunction2Map< VO, VI1, VI2 > * _fmap
Pointer to embedded function.
Buffer base class used for serializing objects.
virtual Version_t ReadVersion(UInt_t *start=nullptr, UInt_t *bcnt=nullptr, const TClass *cl=nullptr)=0
virtual void SetByteCount(UInt_t cntpos, Bool_t packInVersion=kFALSE)=0
virtual Int_t CheckByteCount(UInt_t startpos, UInt_t bcnt, const TClass *clss)=0
virtual UInt_t WriteVersion(const TClass *cl, Bool_t useBcnt=kFALSE)=0
Mother of all ROOT objects.
const char * Data() const
Bool_t BeginsWith(const char *s, ECaseCompare cmp=kExact) const
virtual void Streamer(TBuffer &)
Stream a string object.
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
double(* CFUNCD2ID)(Int_t, double)
double(* CFUNCD2DD)(double, double)
double(* CFUNCD2DI)(double, Int_t)
RooAbsPdf * bindPdf(const char *name, CFUNCD1D func, RooAbsReal &x)
RooAbsReal * bindFunction(const char *name, CFUNCD1D func, RooAbsReal &x)
double(* CFUNCD2UD)(UInt_t, double)
double(* CFUNCD2II)(Int_t, Int_t)