Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
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 <list>
21 
22 class RooAbsRealLValue;
23 class RooAbsReal;
24 class RooArgSet;
25 
26 class RooRealBinding : public RooAbsFunc {
27 public:
28  RooRealBinding(const RooAbsReal& func, const RooArgSet &vars, const RooArgSet* nset=0, Bool_t clipInvalid=kFALSE, const TNamed* rangeName=0);
29  RooRealBinding(const RooRealBinding& other, const RooArgSet* nset=0) ;
30  virtual ~RooRealBinding();
31 
32  virtual Double_t operator()(const Double_t xvector[]) const;
33  virtual Double_t getMinLimit(UInt_t dimension) const;
34  virtual Double_t getMaxLimit(UInt_t dimension) const;
35 
36  virtual void saveXVec() const ;
37  virtual void restoreXVec() const ;
38 
39  virtual const char* getName() const ;
40 
41  virtual std::list<Double_t>* binBoundaries(Int_t) const ;
42  virtual std::list<Double_t>* plotSamplingHint(RooAbsRealLValue& /*obs*/, Double_t /*xlo*/, Double_t /*xhi*/) const ;
43 
44 protected:
45 
46  void loadValues(const Double_t xvector[]) const;
47  const RooAbsReal *_func;
48  RooAbsRealLValue **_vars;
49  const RooArgSet *_nset;
50  mutable Bool_t _xvecValid;
51  Bool_t _clipInvalid ;
52  mutable Double_t* _xsave ;
53  const TNamed* _rangeName ; //!
54 
55  mutable std::list<RooAbsReal*> _compList ; //!
56  mutable std::list<Double_t> _compSave ; //!
57  mutable Double_t _funcSave ; //!
58 
59  ClassDef(RooRealBinding,0) // Function binding to RooAbsReal object
60 };
61 
62 #endif
63