ROOT  6.06/09
Reference Guide
RooTFoamBinding.cxx
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * @(#)root/roofitcore:$Id$
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-2005, 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 
17 //////////////////////////////////////////////////////////////////////////////
18 //
19 // BEGIN_HTML
20 // Lightweight interface adaptor that binds a RooAbsPdf to TFOAM
21 // END_HTML
22 //
23 
24 
25 #include "RooFit.h"
26 #include "Riostream.h"
27 
28 #include "RooTFoamBinding.h"
29 #include "RooRealBinding.h"
30 #include "RooAbsReal.h"
31 #include "RooAbsPdf.h"
32 #include "RooArgSet.h"
33 
34 #include <assert.h>
35 
36 
37 
38 using namespace std;
39 
41 ;
42 
43 
44 ////////////////////////////////////////////////////////////////////////////////
45 
46 RooTFoamBinding::RooTFoamBinding(const RooAbsReal& pdf, const RooArgSet& observables)
47 {
48  _nset.add(observables) ;
49  _binding = new RooRealBinding(pdf,observables,&_nset,kFALSE,0) ;
50 }
51 
52 
53 ////////////////////////////////////////////////////////////////////////////////
54 /// Destructor
55 
57 {
58  delete _binding ;
59 }
60 
61 
62 
63 ////////////////////////////////////////////////////////////////////////////////
64 
66 {
67  Double_t x[10] ;
68  for (int i=0 ; i<ndim ; i++) {
69  x[i] = xvec[i]*(_binding->getMaxLimit(i)-_binding->getMinLimit(i)) + _binding->getMinLimit(i) ;
70  //cout << "RTFB::Density xvec[" << i << "] = " << xvec[i] << " x[i] = " << x[i] << endl ;
71  }
72  Double_t ret = (*_binding)(x) ;
73  return ret<0?0:ret ;
74 }
int Int_t
Definition: RtypesCore.h:41
const Bool_t kFALSE
Definition: Rtypes.h:92
STL namespace.
Double_t x[n]
Definition: legend1.C:17
virtual Double_t Density(Int_t ndim, Double_t *)
virtual ~RooTFoamBinding()
Destructor.
ClassImp(RooTFoamBinding)
RooTFoamBinding(const RooAbsReal &pdf, const RooArgSet &observables)
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