13#ifndef ROOCFUNCTION1BINDING
14#define ROOCFUNCTION1BINDING
42template<
class VO,
class VI>
47 void add(
const char*
name, VO (*ptr)(VI),
const char* arg1name=
"x") {
81 std::map<std::string,VO (*)(VI)>
_ptrmap ;
88template<
class VO,
class VI>
104 const char* result =
fmap().lookupName(
_ptr) ;
105 if (result && strlen(result)) {
113 temp._funcptr =
_ptr;
114 return Form(
"(%p)",temp._ptr) ;
119 return fmap().lookupArgName(
_ptr,iarg) ;
141template<
class VO,
class VI>
144template<
class VO,
class VI>
156 typedef ::RooCFunction1Ref<VO,VI> thisClass;
169 if (tmpName==
"UNKNOWN" && R__v>0) {
171 coutW(ObjectHandling) <<
"WARNING: Objected embeds function pointer to unknown function, object will not be functional" << std::endl ;
180 coutW(ObjectHandling) <<
"ERROR: Objected embeds pointer to function named " << tmpName
181 <<
" but no such function is registered, object will not be functional" << std::endl ;
195 if (tmpName.
Length()==0) {
201 temp._funcptr =
_ptr;
202 coutW(ObjectHandling) <<
"WARNING: Cannot persist unknown function pointer " <<
Form(
"%p",temp._ptr)
203 <<
" written object will not be functional when read back" << std::endl ;
217template<
class VO,
class VI>
229 os <<
"[ function=" <<
func.name() <<
" " ;
256template<
class VO,
class VI>
260 x(
func.argName(0),
func.argName(0),this,_x)
269template<
class VO,
class VI>
280template<
class VO,
class VI>
292 os <<
"[ function=" <<
func.name() <<
" " ;
319template<
class VO,
class VI>
323 x(
func.argName(0),
func.argName(0),this,_x)
332template<
class VO,
class VI>
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
RooTemplateProxy< RooAbsReal > RooRealProxy
Compatibility typedef replacing the old RooRealProxy class.
int Int_t
Signed integer 4 bytes (int).
short Version_t
Class version identifier (short).
unsigned int UInt_t
Unsigned integer 4 bytes (unsigned int).
#define ClassDefOverride(name, id)
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.
RooAbsPdf()
Default constructor.
Abstract interface for proxy classes.
virtual void print(std::ostream &os, bool addContents=false) const
Print proxy name.
virtual const char * name() const
Abstract base class for objects that represent a real value and implements functionality common to al...
RooAbsReal()
coverity[UNINIT_CTOR] Default constructor
RooCFunction1Binding is a templated implementation of class RooAbsReal that binds generic C(++) funct...
RooCFunction1Ref< VO, VI > func
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
TObject * clone(const char *newname=nullptr) const override
void printArgs(std::ostream &os) const override
Print object arguments, ie its proxies.
VO(*)(VI) lookupPtr(const char *name)
const char * lookupArgName(VO(*ptr)(VI), UInt_t iarg)
void add(const char *name, VO(*ptr)(VI), const char *arg1name="x")
std::map< VO(*)(VI), std::vector< std::string > > _argnamemap
std::map< VO(*)(VI), std::string > _namemap
std::map< std::string, VO(*)(VI)> _ptrmap
const char * lookupName(VO(*ptr)(VI))
RooCFunction1Ref< VO, VI > func
RooCFunction1PdfBinding()
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
TObject * clone(const char *newname=nullptr) const override
void printArgs(std::ostream &os) const override
Print object arguments, ie its proxies.
func_t _ptr
! Pointer to embedded function
static VO dummyFunction(VI)
void Streamer(TBuffer &) override
Stream an object of class TObject.
VO operator()(VI x) const
static RooCFunction1Map< VO, VI > * _fmap
const char * name() const
const char * argName(Int_t iarg)
static RooCFunction1Map< VO, VI > & fmap()
RooCFunction1Ref(VO(*ptr)(VI)=nullptr)
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.
TObject()
TObject constructor.
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(* CFUNCD1D)(double)
double(* CFUNCD1I)(Int_t)
RooAbsPdf * bindPdf(const char *name, CFUNCD1D func, RooAbsReal &x)
RooAbsReal * bindFunction(const char *name, CFUNCD1D func, RooAbsReal &x)