Loading [MathJax]/extensions/tex2jax.js
ROOT  6.06/09
Reference Guide
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
RooFunctorBinding.cxx
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id$
5  * Authors: *
6  * WV, Wouter Verkerke, NIKHEF, verkerke@nikhef.nl *
7  * *
8  * Copyright (c) 2000-2008, NIKHEF, Regents of the University of California *
9  * and Stanford University. All rights reserved. *
10  * *
11  *****************************************************************************/
12 
13 //////////////////////////////////////////////////////////////////////////////
14 //
15 // BEGIN_HTML
16 // RooCFunction1Binding is a templated implementation of class RooAbsReal that binds
17 // generic C(++) functions to a RooAbsReal argument thus allowing generic C++
18 // functions to be used as RooFit functions. Instances of function binding
19 // classes are fully functional RooFit function objects with one exception:
20 // if the bound function is _not_ a standard TMath or MathMore function the
21 // class cannot be persisted in a RooWorkspace without registering the function
22 // pointer first using RooCFunction1Binding<T1,T2>::register().
23 // END_HTML
24 //
25 
26 #include "Riostream.h"
27 #include "RooFunctorBinding.h"
28 
29 using namespace std ;
30 
33  ;
34 
35 
36 RooFunctorBinding::RooFunctorBinding(const char *name, const char *title, const ROOT::Math::IBaseFunctionMultiDim& ftor, const RooArgList& v) :
37  RooAbsReal(name,title),
38  func(&ftor),
39  vars("vars","vars",this)
40 {
41  // Check that function dimension and number of variables match
42  if (ftor.NDim()!=UInt_t(v.getSize())) {
43  coutE(InputArguments) << "RooFunctorBinding::ctor(" << GetName() << ") ERROR number of provided variables (" << v.getSize()
44  << ") does not match dimensionality of function (" << ftor.NDim() << ")" << endl ;
45  throw string("RooFunctor::ctor ERROR") ;
46  }
47  x = new Double_t[func->NDim()] ;
48  vars.add(v) ;
49 }
50 
51 
53  RooAbsReal(other,name),
54  func(other.func),
55  vars("vars",this,other.vars)
56 {
57  // Copy constructor
58  x = new Double_t[func->NDim()] ;
59 }
60 
61 
62 
63 void RooFunctorBinding::printArgs(ostream& os) const {
64  // Print object arguments and name/address of function pointer
65  os << "[ function=" << func << " " ;
66  for (Int_t i=0 ; i<numProxies() ; i++) {
67  RooAbsProxy* p = getProxy(i) ;
68  if (!TString(p->name()).BeginsWith("!")) {
69  p->print(os) ;
70  os << " " ;
71  }
72  }
73  os << "]" ;
74 }
75 
77  // Return value of embedded function using value of referenced variable x
78  for (int i=0 ; i<vars.getSize() ; i++) {
79  x[i] = ((RooAbsReal*)vars.at(i))->getVal() ;
80  }
81  return (*func)(x) ;
82  }
83 
84 
85 
87  RooAbsPdf(name,title),
88  func(&ftor),
89  vars("vars","vars",this)
90 {
91  // Check that function dimension and number of variables match
92  if (ftor.NDim()!=UInt_t(v.getSize())) {
93  coutE(InputArguments) << "RooFunctorPdfBinding::ctor(" << GetName() << ") ERROR number of provided variables (" << v.getSize()
94  << ") does not match dimensionality of function (" << ftor.NDim() << ")" << endl ;
95  throw string("RooFunctor::ctor ERROR") ;
96  }
97  x = new Double_t[func->NDim()] ;
98  vars.add(v) ;
99 }
100 
101 
103  RooAbsPdf(other,name),
104  func(other.func),
105  vars("vars",this,other.vars)
106 {
107  // Copy constructor
108  x = new Double_t[func->NDim()] ;
109 }
110 
111 
112 
113 void RooFunctorPdfBinding::printArgs(ostream& os) const {
114  // Print object arguments and name/address of function pointer
115  os << "[ function=" << func << " " ;
116  for (Int_t i=0 ; i<numProxies() ; i++) {
117  RooAbsProxy* p = getProxy(i) ;
118  if (!TString(p->name()).BeginsWith("!")) {
119  p->print(os) ;
120  os << " " ;
121  }
122  }
123  os << "]" ;
124 }
125 
127  // Return value of embedded function using value of referenced variable x
128  for (int i=0 ; i<vars.getSize() ; i++) {
129  x[i] = ((RooAbsReal*)vars.at(i))->getVal() ;
130  }
131  return (*func)(x) ;
132  }
133 
134 
135 
136 
137 namespace RooFit {
138 
140  return new RooFunctorBinding(name,name,ftor,vars) ;
141  }
142 
143  RooAbsPdf* bindPdf(const char* name, const ROOT::Math::IBaseFunctionMultiDim& ftor, const RooArgList& vars) {
144  return new RooFunctorPdfBinding(name,name,ftor,vars) ;
145  }
146 
147 }
148 
149 
150 
virtual void print(std::ostream &os, Bool_t addContents=kFALSE) const
Print proxy name.
Definition: RooAbsProxy.cxx:74
#define coutE(a)
Definition: RooMsgService.h:35
Namespace for new ROOT classes and functions.
Definition: ROOT.py:1
RooAbsPdf * bindPdf(const char *name, CFUNCD1D func, RooAbsReal &x)
Basic string class.
Definition: TString.h:137
int Int_t
Definition: RtypesCore.h:41
ClassImp(RooFunctorBinding) ClassImp(RooFunctorPdfBinding)
STL namespace.
RooAbsProxy * getProxy(Int_t index) const
Return the nth proxy from the proxy list.
Definition: RooAbsArg.cxx:1253
RooAbsReal * bindFunction(const char *name, CFUNCD1D func, RooAbsReal &x)
Double_t x[n]
Definition: legend1.C:17
bool BeginsWith(const std::string &theString, const std::string &theSubstring)
Double_t getVal(const RooArgSet *set=0) const
Definition: RooAbsReal.h:64
void printArgs(std::ostream &os) const
Print object arguments, ie its proxies.
virtual Bool_t add(const RooAbsArg &var, Bool_t silent=kFALSE)
Reimplementation of standard RooArgList::add()
const ROOT::Math::IBaseFunctionMultiDim * func
Double_t evaluate() const
Int_t numProxies() const
Return the number of registered proxies.
Definition: RooAbsArg.cxx:1266
SVector< double, 2 > v
Definition: Dict.h:5
const ROOT::Math::IBaseFunctionMultiDim * func
virtual unsigned int NDim() const =0
Retrieve the dimension of the function.
unsigned int UInt_t
Definition: RtypesCore.h:42
void printArgs(std::ostream &os) const
Print object arguments, ie its proxies.
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:51
virtual const char * name() const
Definition: RooAbsProxy.h:42
Double_t evaluate() const
RooAbsArg * at(Int_t idx) const
Definition: RooArgList.h:84
double Double_t
Definition: RtypesCore.h:55
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:53
double func(double *x, double *p)
Definition: stressTF1.cxx:213
Namespace for new Math classes and functions.
#define name(a, b)
Definition: linkTestLib0.cpp:5
RooAbsPdf is the abstract interface for all probability density functions The class provides hybrid a...
Definition: RooAbsPdf.h:41
Int_t getSize() const
Documentation for the abstract class IBaseFunctionMultiDim.
Definition: IFunction.h:63