Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooRealBinding.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooRealBinding.h,v 1.9 2007/05/11 09:11:30 verkerke Exp $
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#ifndef ROO_REAL_BINDING
17#define ROO_REAL_BINDING
18
19#include "RooAbsFunc.h"
20#include "RooSpan.h"
21#include <vector>
22#include <memory>
23
25class RooAbsReal;
26class RooArgSet;
27namespace RooBatchCompute{ struct RunContext; }
28
29class RooRealBinding : public RooAbsFunc {
30public:
31 RooRealBinding(const RooAbsReal& func, const RooArgSet &vars, const RooArgSet* nset=0, Bool_t clipInvalid=kFALSE, const TNamed* rangeName=0);
32 RooRealBinding(const RooRealBinding& other, const RooArgSet* nset=0) ;
33 virtual ~RooRealBinding();
34
35 virtual Double_t operator()(const Double_t xvector[]) const;
36 virtual RooSpan<const double> getValues(std::vector<RooSpan<const double>> coordinates) const;
37 virtual Double_t getMinLimit(UInt_t dimension) const;
38 virtual Double_t getMaxLimit(UInt_t dimension) const;
39
40 virtual void saveXVec() const ;
41 virtual void restoreXVec() const ;
42
43 virtual const char* getName() const ;
44
45 virtual std::list<Double_t>* binBoundaries(Int_t) const ;
46 virtual std::list<Double_t>* plotSamplingHint(RooAbsRealLValue& /*obs*/, Double_t /*xlo*/, Double_t /*xhi*/) const ;
47
48protected:
49
50 void loadValues(const Double_t xvector[]) const;
52 std::vector<RooAbsRealLValue*> _vars; // Non-owned pointers to variables
56 mutable Double_t* _xsave ;
57 const TNamed* _rangeName ; //!
58
59 mutable std::vector<RooAbsReal*> _compList ; //!
60 mutable std::vector<Double_t> _compSave ; //!
61 mutable Double_t _funcSave ; //!
62 mutable std::unique_ptr<RooBatchCompute::RunContext> _evalData; /// Memory for batch evaluations
63
64 ClassDef(RooRealBinding,0) // Function binding to RooAbsReal object
65};
66
67#endif
68
const Bool_t kFALSE
Definition RtypesCore.h:92
double Double_t
Definition RtypesCore.h:59
#define ClassDef(name, id)
Definition Rtypes.h:325
Abstract interface for evaluating a real-valued function of one real variable and performing numerica...
Definition RooAbsFunc.h:27
RooAbsRealLValue is the common abstract base class for objects that represent a real value that may a...
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:61
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:29
Lightweight interface adaptor that binds a RooAbsReal object to a subset of its servers and present i...
virtual ~RooRealBinding()
Destructor.
virtual void restoreXVec() const
Restore value of all variables to previously saved values by saveXVec()
void loadValues(const Double_t xvector[]) const
Load the vector of variable values into the RooRealVars associated as variables with the bound RooAbs...
virtual std::list< Double_t > * binBoundaries(Int_t) const
Double_t * _xsave
virtual void saveXVec() const
Save value of all variables.
virtual const char * getName() const
Return name of function.
std::vector< RooAbsRealLValue * > _vars
std::vector< RooAbsReal * > _compList
virtual Double_t getMinLimit(UInt_t dimension) const
Return lower limit on i-th variable.
virtual Double_t operator()(const Double_t xvector[]) const
Evaluate the bound RooAbsReal at the variable values provided in xvector.
std::vector< Double_t > _compSave
const RooArgSet * _nset
virtual RooSpan< const double > getValues(std::vector< RooSpan< const double > > coordinates) const
Evaluate the bound object at all locations indicated by the data in coordinates.
const RooAbsReal * _func
std::unique_ptr< RooBatchCompute::RunContext > _evalData
virtual std::list< Double_t > * plotSamplingHint(RooAbsRealLValue &, Double_t, Double_t) const
const TNamed * _rangeName
virtual Double_t getMaxLimit(UInt_t dimension) const
Return upper limit on i-th variable.
A simple container to hold a batch of data values.
Definition RooSpan.h:34
The TNamed class is the base class for all named ROOT classes.
Definition TNamed.h:29
Namespace for dispatching RooFit computations to various backends.