00001 /***************************************************************************** 00002 * Project: RooFit * 00003 * Package: RooFitCore * 00004 * @(#)root/roofitcore:$Id: RooAbsFunc.cxx 24247 2008-06-12 14:54:32Z wouter $ 00005 * Authors: * 00006 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu * 00007 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu * 00008 * * 00009 * Copyright (c) 2000-2005, Regents of the University of California * 00010 * and Stanford University. All rights reserved. * 00011 * * 00012 * Redistribution and use in source and binary forms, * 00013 * with or without modification, are permitted according to the terms * 00014 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) * 00015 *****************************************************************************/ 00016 00017 ////////////////////////////////////////////////////////////////////////////// 00018 // 00019 // BEGIN_HTML 00020 // Abstract interface for evaluating a real-valued function of one real variable 00021 // and performing numerical algorithms on it. The purpose of this interface is 00022 // to decouple RooAbsArg-specific implementations from numerical algorithms that 00023 // only need a simple function evaluation interface. The domain of the function 00024 // is assumed to be an n-dimensional box with edge coordinates specified by the 00025 // the getMinLimit() and getMaxLimit() methods. 00026 // END_HTML 00027 // 00028 00029 00030 #include "RooFit.h" 00031 00032 #include "RooAbsFunc.h" 00033 #include "RooAbsFunc.h" 00034 00035 ClassImp(RooAbsFunc) 00036 ; 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050