Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooGenFunction.h
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 #ifndef ROO_GEN_FUNCTION
17 #define ROO_GEN_FUNCTION
18 
19 #include "RooFunctor.h"
20 #include "Math/IFunction.h"
21 
22 class RooGenFunction : public ROOT::Math::IGenFunction {
23 
24 public:
25  RooGenFunction(const RooAbsReal& func, const RooArgList& observables, const RooArgList& parameters) ;
26  RooGenFunction(const RooAbsReal& func, const RooArgList& observables, const RooArgList& parameters, const RooArgSet& nset) ;
27  RooGenFunction(const RooGenFunction& other) ;
28  virtual ~RooGenFunction() ;
29 
30  virtual ROOT::Math::IBaseFunctionOneDim* Clone() const {
31  return new RooGenFunction(*this) ;
32  }
33 
34 /* Int_t numCall() const { return _ftor.numCall() ; } */
35 /* void resetNumCall() const { _ftor.resetNumCall() ; } */
36 
37 protected:
38 
39  double DoEval(double) const ;
40 
41  RooFunctor _ftor ;
42 
43  ClassDef(RooGenFunction,0) // Export RooAbsReal as functor
44 };
45 
46 #endif
47