ROOT  6.06/09
Reference Guide
RooCFunction1Binding.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 "RooCFunction1Binding.h"
28 #include "RooCintUtils.h"
29 
30 using namespace std ;
31 
32 #ifndef ROOFIT_R__NO_CLASS_TEMPLATE_SPECIALIZATION
33 #define ROOFIT_R__NO_CLASS_TEMPLATE_SPECIALIZATION
36 #endif
37 
38 
39 template<> RooCFunction1Map<double,double>* RooCFunction1Ref<double,double>::_fmap = 0 ;
40 template<> RooCFunction1Map<double,int>* RooCFunction1Ref<double,int>::_fmap = 0 ;
41 
42 template<>
44  {
45  // Return reference to function pointer-to-name mapping service
46  if (!_fmap) {
48  }
49  return *_fmap ;
50  }
51 
52 template<>
54  {
55  // Return reference to function pointer-to-name mapping service
56  if (!_fmap) {
57  _fmap = new RooCFunction1Map<double,int> ;
58  }
59  return *_fmap ;
60  }
61 
62 namespace RooFit {
63 
66  }
67 
70  }
71 
74  }
75 
78  }
79 
80 }
81 
82 
83 
RooAbsPdf * bindPdf(const char *name, CFUNCD1D func, RooAbsReal &x)
STL namespace.
static RooCFunction1Map< VO, VI > & fmap()
RooAbsReal * bindFunction(const char *name, CFUNCD1D func, RooAbsReal &x)
Double_t(* CFUNCD1I)(Int_t)
templateClassImp(RooCFunction1Binding) templateClassImp(RooCFunction1Ref) template<> RooCFunction1Map< double
Double_t x[n]
Definition: legend1.C:17
Double_t(* CFUNCD1D)(Double_t)
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
#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